Uncertainty

Defines the parameter values of an uncertainty distribution. Depending on the uncertainty distribution type different parameters could be used.

Properties

@type

Inherited from Entity.@type

distributionType

The uncertainty distribution type

geomMean

The geometric mean value (used for log-normal distributions).

geomSd

The geometric standard deviation (used for log-normal distributions).

maximum

The maximum value (used for uniform and triangle distributions).

mean

The arithmetic mean (used for normal distributions).

minimum

The minimum value (used for uniform and triangle distributions).

mode

The most likely value (used for triangle distributions).

sd

The arithmetic standard deviation (used for normal distributions).

Python class stub

The snippet below shows the names of the properties of the corresponding Python class of the olca-schema package. Note that this is not the full class definition but just shows the names of the class and its properties.


@dataclass
class Uncertainty:
  distribution_type: UncertaintyType
  geom_mean: float
  geom_sd: float
  maximum: float
  mean: float
  minimum: float
  mode: float
  sd: float

JSON example

{
  "@type": "Uncertainty",
  "distributionType": "NORMAL_DISTRIBUTION",
  "mean": 10.4,
  "sd": 1
}