modeling
            Range
    
              Bases: BaseModel
RangeValue data model to represent intervals.
Attributes:
| Name | Type | Description | 
|---|---|---|
| min | float | Lower bound of the interval. | 
| max | float | Upper bound of the interval. | 
            Impact
    
              Bases: BaseModel
Base impact data model.
Attributes:
| Name | Type | Description | 
|---|---|---|
| type | str | Impact type. | 
| name | str | Impact name. | 
| value | ValueOrRange | Impact value. | 
| unit | str | Impact unit. | 
            Energy
    
              Bases: Impact
Energy consumption.
Info
Final energy consumption "measured from the plug".
Attributes:
| Name | Type | Description | 
|---|---|---|
| type | str | energy | 
| name | str | Energy | 
| value | str | Energy value | 
| unit | str | Kilowatt-hour (kWh) | 
            GWP
    
              Bases: Impact
Global Warming Potential (GWP) impact.
Info
Also, commonly known as GHG/carbon emissions.
Attributes:
| Name | Type | Description | 
|---|---|---|
| type | str | GWP | 
| name | str | Global Warming Potential | 
| value | str | GWP value | 
| unit | str | Kilogram Carbon Dioxide Equivalent (kgCO2eq) | 
            ADPe
    
              Bases: Impact
Abiotic Depletion Potential for Elements (ADPe) impact.
Info
Impact on the depletion of non-living resources such as minerals or metals.
Attributes:
| Name | Type | Description | 
|---|---|---|
| type | str | ADPe | 
| name | str | Abiotic Depletion Potential (elements) | 
| value | str | ADPe value | 
| unit | str | Kilogram Antimony Equivalent (kgSbeq) | 
            PE
    
              Bases: Impact
Primary Energy (PE) impact.
Info
Total energy consumed from primary sources.
Attributes:
| Name | Type | Description | 
|---|---|---|
| type | str | PE | 
| name | str | Primary Energy | 
| value | str | PE value | 
| unit | str | Megajoule (MJ) | 
            Phase
    
              Bases: BaseModel
Base impact phase data model.
Attributes:
| Name | Type | Description | 
|---|---|---|
| type | str | Phase type. | 
| name | str | Phase name. | 
            Usage
    
              Bases: Phase
Usage impacts data model.
Info
Represents the phase of energy consumption during model execution.
Attributes:
| Name | Type | Description | 
|---|---|---|
| type | str | usage | 
| name | str | Usage | 
| energy | Energy | Energy consumption | 
| gwp | GWP | Global Warming Potential (GWP) usage impact | 
| adpe | ADPe | Abiotic Depletion Potential for Elements (ADPe) usage impact | 
| pe | PE | Primary Energy (PE) usage impact | 
            Embodied
    
              Bases: Phase
Embodied impacts data model.
Info
Encompasses resource extraction, manufacturing, and transportation phases associated with the model's lifecycle.
Attributes:
| Name | Type | Description | 
|---|---|---|
| type | str | embodied | 
| name | str | Embodied | 
| gwp | GWP | Global Warming Potential (GWP) embodied impact | 
| adpe | ADPe | Abiotic Depletion Potential for Elements (ADPe) embodied impact | 
| pe | PE | Primary Energy (PE) embodied impact | 
            Impacts
    
              Bases: BaseModel
Impacts data model.
Attributes:
| Name | Type | Description | 
|---|---|---|
| energy | Energy | Total energy consumption | 
| gwp | GWP | Total Global Warming Potential (GWP) impact | 
| adpe | ADPe | Total Abiotic Depletion Potential for Elements (ADPe) impact | 
| pe | PE | Total Primary Energy (PE) impact | 
| usage | Usage | Impacts for the usage phase | 
| embodied | Embodied | Impacts for the embodied phase |