MixedParameter#
- class ansys.optislang.core.project_parametric.MixedParameter(name: str = '', reference_value: float = 0, id: str | None = None, const: bool = False, deterministic_resolution: ParameterResolution | str = ParameterResolution.CONTINUOUS, range: Sequence[float, float] | Sequence[Sequence[float]] = (-1, 1), stochastic_resolution: ParameterResolution | str = ParameterResolution.MARGINALDISTRIBUTION, distribution_type: DistributionType | str = DistributionType.NORMAL, distribution_parameters: Sequence[float] | None = None, statistical_moments: Sequence[float] | None = None, cov: float | None = None)#
Stores mixed parameter data.
Methods
MixedParameter.from_dict
(par_dict)Create an instance of the
Parameter
class from optiSLang output.Convert an instance of the
MixedParameter
class to a dictionary.Attributes
Whether the value for the parameter is a constant.
COV of the distribution.
Type of the deterministic resolution.
Parameters of the distribution.
Type of the distribution.
ID of the parameter.
Name of the parameter.
Range of the mixed parameter.
Reference value of the parameter.
Type of the reference value.
Statistical moments of the distribution.
Type of the stochastic resolution.
Type of the parameter.