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, corsia_reference_year, carbon_offset_baseline_level_vs_corsia_reference_year_reference_periods, carbon_offset_baseline_level_vs_corsia_reference_year_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 |
corsia_reference_year
|
int
|
Fixed regulatory baseline year for CORSIA offsetting (default 2019). The offsetting baseline is measured against this year's emissions, independent of prospection_start_year. |
required |
carbon_offset_baseline_level_vs_corsia_reference_year_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_corsia_reference_year_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_corsia_reference_year
|
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 118 119 120 121 122 123 | |
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
136 137 | |
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
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 183 184 185 186 187 188 | |
ManualCarbonOffset ¶
ManualCarbonOffset(name='manual_carbon_offset', *args, **kwargs)
Bases: AeroMAPSModel
Class to compute an manually specified annual carbon offset trajectory.
The output is linearly interpolated across the reference years and added to
the level + residual offsets by :class:CarbonOffset.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
Name of the model instance ('manual_carbon_offset' by default). |
'manual_carbon_offset'
|
Source code in aeromaps/models/impacts/emissions/carbon_offset.py
204 205 | |
compute ¶
compute(manual_carbon_offset_reference_years, manual_carbon_offset_reference_years_values)
Execute the computation of the manual carbon offset trajectory.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
manual_carbon_offset_reference_years
|
list
|
Reference years for the manual annual offset trajectory [years]. |
required |
manual_carbon_offset_reference_years_values
|
list
|
Manually specified annual offset values at the reference years [MtCO2]. |
required |
Returns:
| Type | Description |
|---|---|
manual_carbon_offset
|
Annual manually specified carbon offset [MtCO2]. |
Source code in aeromaps/models/impacts/emissions/carbon_offset.py
207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 | |
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
253 254 | |
compute ¶
compute(level_carbon_offset, residual_carbon_offset, manual_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 |
manual_carbon_offset
|
Series
|
Annual carbon offset provided exogenously via reference years/values [MtCO2]. |
required |
Returns:
| Type | Description |
|---|---|
carbon_offset
|
Total annual carbon offset [MtCO2]. |
Source code in aeromaps/models/impacts/emissions/carbon_offset.py
256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 | |
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
301 302 | |
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
304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 | |