lib_openturns module¶
OpenTURNS DOE algorithms.
- class gemseo.algos.doe.lib_openturns.OpenTURNS[source]
Bases:
DOELibrary
Library of OpenTURNS DOE algorithms.
Constructor Abstract class.
- OT_AXIAL = 'OT_AXIAL'
- OT_COMPOSITE = 'OT_COMPOSITE'
- OT_FACTORIAL = 'OT_FACTORIAL'
- OT_FAURE = 'OT_FAURE'
- OT_FULLFACT = 'OT_FULLFACT'
- OT_HALTON = 'OT_HALTON'
- OT_HASEL = 'OT_HASELGROVE'
- OT_LHS = 'OT_LHS'
- OT_LHSC = 'OT_LHSC'
- OT_LHSO = 'OT_OPT_LHS'
- OT_MC = 'OT_MONTE_CARLO'
- OT_RANDOM = 'OT_RANDOM'
- OT_REVERSE_HALTON = 'OT_REVERSE_HALTON'
- OT_SOBOL = 'OT_SOBOL'
- OT_SOBOL_INDICES = 'OT_SOBOL_INDICES'
- descriptions: dict[str, AlgorithmDescription]
The description of the algorithms contained in the library.
- eval_jac: bool
Whether to evaluate the Jacobian.
- internal_algo_name: str | None
The internal name of the algorithm used currently.
It typically corresponds to the name of the algorithm in the wrapped library if any.
- opt_grammar: JSONGrammar | None
The grammar defining the options of the current algorithm.
- problem: Any | None
The problem to be solved.
- samples: ndarray
The input samples with the design space variable types stored as dtype metadata.
- seed: int
The seed to be used for reproducibility reasons.
This seed is initialized at 0 and each call to
execute()
increments it before using it.
- unit_samples: ndarray
The input samples transformed in \([0,1]\).