ImportedDesignOfExperiment¶
- class persalys.ImportedDesignOfExperiment(*args)¶
Create a design of experiments, using an imported design.
- Available constructors:
ImportedDesignOfExperiment(name, physicalModel, fileName, columns)
- Parameters
- namestr
Name
- physicalModel
PhysicalModel
Physical model
- fileNamestr
Name of a data file to load
- columnssequence of int
Indices of columns in files to consider
Examples
>>> import openturns as ot >>> import persalys >>> ot.RandomGenerator.SetSeed(0)
Create the model:
>>> X0 = persalys.Input('X0') >>> X1 = persalys.Input('X1') >>> Y0 = persalys.Output('Y0') >>> model = persalys.SymbolicPhysicalModel('aModelPhys', [X0, X1], [Y0], ['sin(X0)+8*X1'])
Create the design of experiments:
>>> filename = 'normal.csv' >>> ot.Normal(3).getSample(10).exportToCSVFile(filename) >>> aDesign = persalys.ImportedDesignOfExperiment('aDesign', model, filename, [0, 2])
Methods
Block size accessor.
Accessor to the object's name.
Error message accessor.
Failed input sample accessor.
File name accessor.
Columns of the input variables accessor.
Get the variables to analyse.
getName
()Accessor to the object's name.
Not evaluated input sample accessor.
Input sample accessor.
Columns of the output variables accessor.
Physical model accessor.
Physical model accessor.
Sample from the file accessor.
getSeed
()Seed accessor.
Warning message accessor.
hasName
()Test if the object is named.
Whether the analysis has been run.
Whether the analysis involves reliability.
Whether the analysis is running.
run
()Launch the analysis.
setBlockSize
(size)Block size accessor.
setColumns
(*args)Columns and names of variables accessor.
setFileName
(fileName)File name accessor.
setInterestVariables
(variablesNames)Set the variables to analyse.
setName
(name)Accessor to the object's name.
setSeed
(seed)Seed accessor.
StopRequested
canBeLaunched
getElapsedTime
getErrorDescription
getParentObserver
getResult
- __init__(*args)¶
- getBlockSize()¶
Block size accessor.
- Returns
- blockSizepositive int
Number of terms analysed together. It is set by default to 1.
- getClassName()¶
Accessor to the object’s name.
- Returns
- class_namestr
The object class name (object.__class__.__name__).
- getErrorMessage()¶
Error message accessor.
- Returns
- messagestr
Error message if the analysis failed
- getFailedInputSample()¶
Failed input sample accessor.
- Returns
- sample
openturns.Sample
Sample with the failed input values
- sample
- getFileName()¶
File name accessor.
- Returns
- fileNamestr
Name of the file containing data
- getInputColumns()¶
Columns of the input variables accessor.
- Returns
- columns
openturns.Indices
Columns of the input variables
- columns
- getInterestVariables()¶
Get the variables to analyse.
- Returns
- variablesNamessequence of str
Names of the variables to analyse
- getName()¶
Accessor to the object’s name.
- Returns
- namestr
The name of the object.
- getNotEvaluatedInputSample()¶
Not evaluated input sample accessor.
- Returns
- sample
openturns.Sample
Points of the design of experiments which were not evaluated
- sample
- getOriginalInputSample()¶
Input sample accessor.
- Returns
- sample
openturns.Sample
Input sample.
- sample
- getOutputColumns()¶
Columns of the output variables accessor.
- Returns
- columns
openturns.Indices
Columns of the output variables
- columns
- getPhysicalModel()¶
Physical model accessor.
- Returns
- model
PhysicalModel
Physical model
- model
- getPythonScript()¶
Physical model accessor.
- Returns
- scriptstr
Python script to replay the analysis
- getSampleFromFile()¶
Sample from the file accessor.
- Returns
- sample
openturns.Sample
Sample from the file
- sample
- getSeed()¶
Seed accessor.
- Returns
- seedint
Seed value
- getWarningMessage()¶
Warning message accessor.
- Returns
- messagestr
Warning message which can appear during the analysis computation
- hasName()¶
Test if the object is named.
- Returns
- hasNamebool
True if the name is not empty.
- hasValidResult()¶
Whether the analysis has been run.
- Returns
- hasValidResultbool
Whether the analysis has already been run
- isReliabilityAnalysis()¶
Whether the analysis involves reliability.
- Returns
- isReliabilityAnalysisbool
Whether the analysis involves a reliability analysis
- isRunning()¶
Whether the analysis is running.
- Returns
- isRunningbool
Whether the analysis is running
- run()¶
Launch the analysis.
- setBlockSize(size)¶
Block size accessor.
- Parameters
- blockSizepositive int
Number of terms analysed together. It is set by default to 1.
- setColumns(*args)¶
Columns and names of variables accessor.
- Parameters
- inputColumnssequence of int
Columns of input variables
- inNamessequence of str
Names of input variables
- outputColumnssequence of int, optional
Columns of output variables
- outNamessequence of str
Names of output variables
- setFileName(fileName)¶
File name accessor.
- Parameters
- fileNamestr
Name of the file containing data
- setInterestVariables(variablesNames)¶
Set the variables to analyse.
- Parameters
- variablesNamessequence of str
Names of the variables to analyse
- setName(name)¶
Accessor to the object’s name.
- Parameters
- namestr
The name of the object.
- setSeed(seed)¶
Seed accessor.
- Parameters
- seedint
Seed value