aeromaps.models.impacts.emissions.carbon_offset¶
carbon_offset
=============================== Module to compute effects of carbon offsets.
LevelCarbonOffset ¶
LevelCarbonOffset(name='level_carbon_offset', *args, **kwargs)
Bases: AeroMAPSModel
Class to compute carbon offset required to level emissions to offsetting targets compared to 2019 emissions.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
Name of the model instance ('level_carbon_offset' by default). |
'level_carbon_offset'
|
Source code in aeromaps/models/impacts/emissions/carbon_offset.py
29 30 | |
compute ¶
compute(co2_emissions, carbon_offset_baseline_level_vs_2019_reference_periods, carbon_offset_baseline_level_vs_2019_reference_periods_values, carbon_offset_baseline_share_total_emissions_reference_periods, carbon_offset_baseline_share_total_emissions_reference_periods_values)
Execute the computation of carbon offset required to level emissions.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
co2_emissions
|
Series
|
CO2 emissions trajectory [MtCO2]. |
required |
carbon_offset_baseline_level_vs_2019_reference_periods
|
list
|
Reference periods for the level of CO2 emissions relative to 2019 from which higher emissions are offset [years]. |
required |
carbon_offset_baseline_level_vs_2019_reference_periods_values
|
list
|
Level of CO2 emissions relative to 2019 from which higher emissions are offset for the reference periods [%]. |
required |
carbon_offset_baseline_share_total_emissions_reference_periods
|
list
|
Reference periods for the share of total CO2 emissions on which offset is applied [years]. |
required |
carbon_offset_baseline_share_total_emissions_reference_periods_values
|
list
|
Share of total CO2 emissions on which offset is applied for the reference periods [%]. |
required |
Returns:
| Type | Description |
|---|---|
carbon_offset_baseline_level_vs_2019
|
Level of CO2 emissions relative to 2019 from which higher emissions are offset [%]. |
level_carbon_offset
|
Annual carbon offset due to offsetting for a given level of emissions [MtCO2]. |
Source code in aeromaps/models/impacts/emissions/carbon_offset.py
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 | |
ResidualCarbonOffset ¶
ResidualCarbonOffset(name='residual_carbon_offset', *args, **kwargs)
Bases: AeroMAPSModel
Class to compute carbon offset to match a share of residual emissions.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
Name of the model instance ('residual_carbon_offset' by default). |
'residual_carbon_offset'
|
Source code in aeromaps/models/impacts/emissions/carbon_offset.py
130 131 | |
compute ¶
compute(co2_emissions, level_carbon_offset, residual_carbon_offset_share_reference_years, residual_carbon_offset_share_reference_years_values)
Execute the computation of carbon offset to match a share of residual emissions.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
co2_emissions
|
Series
|
CO2 emissions trajectory [MtCO2]. |
required |
level_carbon_offset
|
Series
|
Annual carbon offset due to offsetting for a given level of emissions [MtCO2]. |
required |
residual_carbon_offset_share_reference_years
|
list
|
Reference years for the share of remaining CO2 emissions offset [years]. |
required |
residual_carbon_offset_share_reference_years_values
|
list
|
Share of residual emissions to be offset for the reference years [%]. |
required |
Returns:
| Type | Description |
|---|---|
residual_carbon_offset_share
|
Share of residual emissions to be offset [%]. |
residual_carbon_offset
|
Annual carbon offset due to offsetting of a given share of the remaining emissions [MtCO2]. |
Source code in aeromaps/models/impacts/emissions/carbon_offset.py
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 | |
CarbonOffset ¶
CarbonOffset(name='carbon_offset', *args, **kwargs)
Bases: AeroMAPSModel
Class to compute total carbon offset.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
Name of the model instance ('carbon_offset' by default). |
'carbon_offset'
|
Source code in aeromaps/models/impacts/emissions/carbon_offset.py
195 196 | |
compute ¶
compute(level_carbon_offset, residual_carbon_offset)
Execute the computation of total carbon offset.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
level_carbon_offset
|
Series
|
Annual carbon offset due to offsetting for a given level of emissions [MtCO2]. |
required |
residual_carbon_offset
|
Series
|
Annual carbon offset due to offsetting of a given share of the remaining emissions [MtCO2]. |
required |
Returns:
| Type | Description |
|---|---|
carbon_offset
|
Total annual carbon offset [MtCO2]. |
Source code in aeromaps/models/impacts/emissions/carbon_offset.py
198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 | |
CumulativeCarbonOffset ¶
CumulativeCarbonOffset(name='cumulative_carbon_offset', *args, **kwargs)
Bases: AeroMAPSModel
Class to compute cumulative carbon offset.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
Name of the model instance ('cumulative_carbon_offset' by default). |
'cumulative_carbon_offset'
|
Source code in aeromaps/models/impacts/emissions/carbon_offset.py
236 237 | |
compute ¶
compute(carbon_offset)
Execute the computation of cumulative carbon offset.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
carbon_offset
|
Series
|
Total annual carbon offset [MtCO2]. |
required |
Returns:
| Type | Description |
|---|---|
cumulative_carbon_offset
|
Cumulative carbon offset from air transport [GtCO2]. |
Source code in aeromaps/models/impacts/emissions/carbon_offset.py
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 | |