ParameterRedefSet

An instance of this class is just a set of parameter redefinitions attached to a product system. It can have a name and a description. One of the parameter sets can be defined as the baseline of the product system. In the calculation the baseline set is then taken by default.

Properties

@type

Inherited from Entity.@type

description

A description of the parameter set.

isBaseline

Indicates if this set of parameter redefinitions is the baseline for a product system.

name

The name of the parameter set.

parameters

The parameter redefinitions of this redefinition set.

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 ParameterRedefSet:
  description: str
  is_baseline: bool
  name: str
  parameters: List[ParameterRedef]