aeromaps.models.air_transport.aircraft_fleet_and_operations.non_co2.non_co2¶
non_co2¶
Module for computing non-CO2 climate effects related to aircraft operations, including contrail-related adjustments and fuel-effect corrections used in ERF calculations.
OperationsContrailsSimple ¶
OperationsContrailsSimple(name='operations_contrails_simple', *args, **kwargs)
Bases: AeroMAPSModel
Simple operational model computing contrails gains for ERF calculation and overconsumption associated with contrail avoidance.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
Name of the model instance ('operations_contrails_simple' by default). |
'operations_contrails_simple'
|
Source code in aeromaps/models/air_transport/aircraft_fleet_and_operations/non_co2/non_co2.py
30 31 | |
compute ¶
compute(operations_contrails_final_gain, operations_contrails_final_overconsumption, operations_contrails_start_year, operations_contrails_duration)
Execute computation for contrails gains for ERF calculation and overconsumption associated with contrail avoidance.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
operations_contrails_final_gain
|
float
|
Final impact of contrail operational improvements in terms of percentage reduction in contrails climate impacts [%]. |
required |
operations_contrails_final_overconsumption
|
float
|
Final impact of contrail operational improvements in terms of percentage increase in fuel consumption [%]. |
required |
operations_contrails_start_year
|
Number
|
Start year for implementing contrail operational improvements to reduce contrail climate impacts [yr]. |
required |
operations_contrails_duration
|
float
|
Duration for implementing 98% of contrail operational improvements to reduce contrail climate impacts [yr]. |
required |
Returns:
| Type | Description |
|---|---|
operations_contrails_gain
|
Impact of contrail operational improvements in terms of percentage reduction in contrails climate impacts [%]. |
operations_contrails_overconsumption
|
Impact of contrail operational improvements in terms of percentage increase in fuel consumption [%]. |
Source code in aeromaps/models/air_transport/aircraft_fleet_and_operations/non_co2/non_co2.py
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 | |
FuelEffectCorrectionContrails ¶
FuelEffectCorrectionContrails(name='fuel_effect_correction_contrails', *args, **kwargs)
Bases: AeroMAPSModel
Compute fuel-effect on contrails for ERF calculation.
This custom model aggregates pathway-specific particle emission indices and distance shares to compute a correction applied to contrail forcing to reflect fuel/pathway effects.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
Name of the model instance ('fuel_effect_correction_contrails' by default). |
'fuel_effect_correction_contrails'
|
Attributes:
| Name | Type | Description |
|---|---|---|
pathways_manager |
EnergyCarrierManager instance managing the energy carriers pathways considered in the scenario. |
|
input_names |
Dictionary defining the expected input names for the model. |
|
output_names |
Dictionary defining the output names for the model. |
Source code in aeromaps/models/air_transport/aircraft_fleet_and_operations/non_co2/non_co2.py
112 113 114 | |
custom_setup ¶
custom_setup()
Setup input and output names for the model grammar, based on .yaml configuration of energy carriers.
Source code in aeromaps/models/air_transport/aircraft_fleet_and_operations/non_co2/non_co2.py
116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 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 | |
compute ¶
compute(input_data)
Execute the computation of fuel-effect correction for contrails ERF computation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
input_data
|
Mapping of input series and scalars required by the model. Expected keys include pathway-specific massic shares of each aircraft consumption; particle emission indices, total aircraft distances travelled by aircraft type and overall total aircraft distance, and contrails_relative_effect_hydrogen_wrt_kerosene when hydrogen pathways are present. |
required |
Returns:
| Type | Description |
|---|---|
output_data
|
Dictionary with key 'fuel_effect_correction_contrails' containing a pd.Series multiplicative correction (dimensionless) for contrail forcing over the scenario. |
Source code in aeromaps/models/air_transport/aircraft_fleet_and_operations/non_co2/non_co2.py
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 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 224 225 226 227 228 229 230 231 232 233 234 235 236 237 | |
WithoutFuelEffectCorrectionContrails ¶
WithoutFuelEffectCorrectionContrails(name='without_fuel_effect_correction_contrails', *args, **kwargs)
Bases: AeroMAPSModel
Model returning a unitary correction (no fuel effect) for contrails.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
Name of the model instance ('without_fuel_effect_correction_contrails' by default). |
'without_fuel_effect_correction_contrails'
|
Source code in aeromaps/models/air_transport/aircraft_fleet_and_operations/non_co2/non_co2.py
249 250 | |
compute ¶
compute(total_aircraft_distance)
Return a multiplicative correction equal to 1 for all years.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
total_aircraft_distance
|
Series
|
Total distance travelled by aircraft (based on RPK traffic) [km]. FIXME: this input is not used in the computation. |
required |
Returns:
| Type | Description |
|---|---|
fuel_effect_correction_contrails
|
Multiplicative multiplicative correction (dimensionless) for contrail forcing over the scenario, equal to 1 for all years. |
Source code in aeromaps/models/air_transport/aircraft_fleet_and_operations/non_co2/non_co2.py
252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 | |