Result

A calculation result of a product system.

Properties

@type

Inherited from Entity.@type

@id

Inherited from RefEntity.@id

name

Inherited from RefEntity.name

description

Inherited from RefEntity.description

category

Inherited from RootEntity.category

lastChange

Inherited from RootEntity.lastChange

tags

Inherited from RootEntity.tags

version

Inherited from RootEntity.version

flowResults

An array of FlowResult objects.

impactMethod

A reference to the ImpactMethod that was used to calculate the result.

impactResults

An array of ImpactResult objects.1

productSystem

A reference to the ProductSystem from which this result was calculated.

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 Result:
  id: str
  category: str
  description: str
  flow_results: List[FlowResult]
  impact_method: Ref
  impact_results: List[ImpactResult]
  last_change: str
  name: str
  product_system: Ref
  tags: List[str]
  version: str