ImportedDesignOfExperiment¶
- class persalys.ImportedDesignOfExperiment(*args)¶
Create a design of experiments, using an imported design.
- Available constructors:
ImportedDesignOfExperiment(name, physicalModel) ImportedDesignOfExperiment(name, physicalModel, fileName, inputColumns, outputColumns, type)
- Parameters:
- namestr
Name
- physicalModel
PhysicalModel Physical model
- fileNamestr
Name of a data file to load
- inputColumnssequence of int
Columns of the input variables
- outputColumnssequence of int
Columns of the output variables (optional)
- typeint
Type of the imported design of experiments (optional, default is GENERIC)
Methods
checkAndSetEvaluations(evaluatedDoE)Checks that the input values of the given DOE correspond to the current DOE and copy the evaluations of the given DOE to the current DOE
Block size accessor.
Accessor to the object's name.
Design of experiments accessor.
Error message accessor.
Failed input sample accessor.
Get the imported dataset.
Get the variables to analyse.
getName()Accessor to the object's name.
Not evaluated input sample accessor.
Input sample accessor.
Physical model accessor.
Physical model accessor.
Get the data analysis result.
getSeed()Seed accessor.
getType()Get the type of the imported design of experiments.
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)Set the columns of the variables.
setEvaluations(arg2)Add evaluations for the design of experiments
setFileName(fileName)Set the name of the data file to load.
setInterestVariables(variablesNames)Set the variables to analyse.
setName(name)Accessor to the object's name.
setSeed(seed)Seed accessor.
setType(type)Set the type of the imported design of experiments.
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])
- __init__(*args)¶
- checkAndSetEvaluations(evaluatedDoE)¶
Checks that the input values of the given DOE correspond to the current DOE and copy the evaluations of the given DOE to the current DOE
- Parameters:
- evaluatedDoE:py:
DesignOfExperiment Design of experiments containing evaluations to copy
- evaluatedDoE:py:
- 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__).
- getErrorDescription()¶
Design of experiments accessor.
- Returns:
- errorDesc
Description Descriptioncontaining messages from failed points.
- errorDesc
- 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
- getImportedDataset()¶
Get the imported dataset.
- Returns:
- importedDataset
ImportedDataset The imported dataset
- importedDataset
- 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
- getPhysicalModel()¶
Physical model accessor.
- Returns:
- model
PhysicalModel Physical model
- model
- getPythonScript()¶
Physical model accessor.
- Returns:
- scriptstr
Python script to replay the analysis
- getResult()¶
Get the data analysis result.
- Returns:
- result
DataAnalysisResult Data analysis result associated to the design of experiments
- result
- getSeed()¶
Seed accessor.
- Returns:
- seedint
Seed value
- getType()¶
Get the type of the imported design of experiments.
- Returns:
- typeint
Type of the imported design of experiments
- 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)¶
Set the columns of the variables.
- Parameters:
- inputColumnssequence of int
Columns of the input variables
- outputColumnssequence of int (optional)
Columns of the output variables
- setEvaluations(arg2)¶
Add evaluations for the design of experiments
- Parameters:
- outputSample:py:
openturns.Sample sample containing values for the output variables
- outputSample:py:
- setFileName(fileName)¶
Set the name of the data file to load.
- Parameters:
- fileNamestr
Name of a data file to load
- 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
- setType(type)¶
Set the type of the imported design of experiments. By default, the type is Monte-Carlo.
- Parameters:
- typeint
Type of the imported design of experiments