aeromaps.models.air_transport.aircraft_fleet_and_operations.fleet.aircraft_efficiency¶
aicraft_efficiency¶
This module contains models to compute aircraft efficiency, either using simple models or outputs from generic fleet model.
PassengerAircraftEfficiencySimpleShares ¶
PassengerAircraftEfficiencySimpleShares(name='passenger_aircraft_efficiency_simple_shares', *args, **kwargs)
Bases: AeroMAPSModel
Class to compute energy consumption per ASK (without operations) using simple annual improvement rates.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
Name of the model instance ('passenger_aircraft_efficiency_simple_shares' by default). |
'passenger_aircraft_efficiency_simple_shares'
|
Documentation
Inputs
- energy_consumption_init: Historic total energy consumption [MJ].
- ask_init: Historic total ASK [ASK].
- fleet_renewal_duration: Fleet renewal duration [years].
- covid_energy_intensity_per_ask_increase_2020: 2020 intensity increase [%].
-
Source code in aeromaps/models/air_transport/aircraft_fleet_and_operations/fleet/aircraft_efficiency.py
55 56 57 | |
compute ¶
compute(input_data)
Compute per-market energy per ASK and propulsion shares.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
input_data
|
dict
|
Inputs for passenger market efficiency and propulsion shares. |
required |
Returns:
| Type | Description |
|---|---|
dict
|
Output series for energy per ASK and ASK shares by energy type. |
Source code in aeromaps/models/air_transport/aircraft_fleet_and_operations/fleet/aircraft_efficiency.py
107 108 109 110 111 112 113 114 115 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 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 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 238 | |
PassengerAircraftEfficiencySimpleASK ¶
PassengerAircraftEfficiencySimpleASK(name='passenger_aircraft_efficiency_simple_ask', *args, **kwargs)
Bases: AeroMAPSModel
Class to compute ASK for each aircraft type when using simple efficiency models.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
Name of the model instance ('passenger_aircraft_efficiency_simple_ask' by default). |
'passenger_aircraft_efficiency_simple_ask'
|
Documentation
Inputs
- ask_
Source code in aeromaps/models/air_transport/aircraft_fleet_and_operations/fleet/aircraft_efficiency.py
283 284 285 | |
compute ¶
compute(input_data)
Split per-market ASK into energy types and aggregate totals.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
input_data
|
dict
|
Inputs containing per-market ASK and propulsion shares. |
required |
Returns:
| Type | Description |
|---|---|
dict
|
ASK series and shares by energy type for each market and total. |
Source code in aeromaps/models/air_transport/aircraft_fleet_and_operations/fleet/aircraft_efficiency.py
311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 | |
PassengerAircraftEfficiencyComplex ¶
PassengerAircraftEfficiencyComplex(name='passenger_aircraft_efficiency_complex', *args, **kwargs)
Bases: AeroMAPSModel
Class to compute energy consumption per ASK (without operations) using complex models.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
Name of the model instance ('passenger_aircraft_efficiency_complex' by default). |
'passenger_aircraft_efficiency_complex'
|
Documentation
Inputs
- dummy_fleet_model_output: Fleet-model trigger placeholder.
- energy_consumption_init: Historic total energy consumption [MJ].
- ask: Global passenger ASK [ASK].
- covid_energy_intensity_per_ask_increase_2020: 2020 intensity increase [%].
-
Attributes:
| Name | Type | Description |
|---|---|---|
fleet_model |
FleetModel(AeroMAPSModel)
|
FleetModel instance to be used for complex efficiency computations. |
Source code in aeromaps/models/air_transport/aircraft_fleet_and_operations/fleet/aircraft_efficiency.py
410 411 412 413 | |
compute ¶
compute(input_data)
Compute energy per ASK and propulsion shares using fleet outputs.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
input_data
|
dict
|
Inputs containing global ASK, market shares, and fleet signals. |
required |
Returns:
| Type | Description |
|---|---|
dict
|
Output series for energy per ASK and ASK shares by energy type. |
Source code in aeromaps/models/air_transport/aircraft_fleet_and_operations/fleet/aircraft_efficiency.py
443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 | |
FreightAircraftEfficiency ¶
FreightAircraftEfficiency(name='freight_aircraft_efficiency', *args, **kwargs)
Bases: AeroMAPSModel
Compute energy per RTK (without operations) and RTK volumes for freight aircraft.
Freight aircraft do not have a dedicated fleet model. Their efficiency evolution and propulsion-mix adoption are instead derived from the passenger markets, which do have fleet / top-down efficiency models. The derivation follows three steps.
Step 1 — Drop-in fuel efficiency (energy_per_rtk_without_operations_
Historical years (historic_start_year … prospection_start_year − 1): Calibrated directly from total energy consumption and actual RTK::
energy_per_rtk_dropin[year] = energy_consumption_init[year]
/ rtk[year]
* freight_energy_share_last_historical_year / 100
Projection years (prospection_start_year … end_year):
Each passenger market m provides a year-on-year efficiency-improvement
rate via its drop-in energy-per-ASK series. The freight model keeps a
separate per-market proxy energy_per_rtk_dropin_proxy[m] that starts
at the 2019 freight value and is updated each year by the same ratio
as that passenger market::
ratio_m[k] = energy_per_ask_dropin[m, k] / energy_per_ask_dropin[m, k-1]
energy_per_rtk_dropin_proxy[m, k] = energy_per_rtk_dropin_proxy[m, k-1] * ratio_m[k]
The freight efficiency for year k is then a weighted average of these
proxies, weighted by each market's dropin ASK volume::
energy_per_rtk_dropin[k] =
Σ_m ( energy_per_rtk_dropin_proxy[m, k] * ask_dropin[m, k] )
/ Σ_m ( ask_dropin[m, k] )
Rationale: freight drop-in aircraft renew at a similar pace to passenger
aircraft. By anchoring to each passenger market's rate we capture
differences in renewal speed between short/medium/long-range fleets.
The ASK-dropin weighted average accounts for the relative size of each
market fleet.
COVID correction: the 2020 value is reset to::
energy_per_rtk_dropin[2019] * (1 + covid_energy_intensity_per_ask_increase_2020 / 100)
Step 2 — Propulsion mix (rtk_
Freight aircraft are assumed to adopt alternative propulsion in proportion to the passenger fleet. The RTK share for each energy type is the ASK-weighted average of the corresponding passenger share across all passenger markets::
rtk_hydrogen_share = Σ_m ( ask_m / ask_total * ask_hydrogen_share[m] )
rtk_electric_share = Σ_m ( ask_m / ask_total * ask_electric_share[m] )
rtk_dropin_share = 100 − rtk_hydrogen_share − rtk_electric_share
The same shares apply to all freight markets (belly and dedicated carry the same mix assumption).
Step 3 — Hydrogen and electric energy per RTK
For alternative propulsion types the model derives an average efficiency relative to drop-in by replicating the passenger ratio at the fleet level.
Define the relative efficiency of propulsion type p vs drop-in for market m::
rel_p[m] = energy_per_ask_p[m] / energy_per_ask_dropin[m]
The fleet-wide weighted-sum for propulsion p is::
p_weighted_sum = Σ_m ( rel_p[m] * ask_p_share[m] * ask_m / ask_total )
Then::
energy_per_rtk_p = energy_per_rtk_dropin
* p_weighted_sum / rtk_p_share (when rtk_p_share > 0)
energy_per_rtk_p = energy_per_rtk_dropin (when rtk_p_share = 0,
i.e. no aircraft of
that type in service)
The zero-share fallback keeps the value well-defined for downstream models even in years before any alternative-propulsion freight aircraft enters service.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
Name of the model instance ('freight_aircraft_efficiency' by default). |
'freight_aircraft_efficiency'
|
Documentation
Inputs
- energy_consumption_init: Historic total energy consumption [MJ].
- ask: Global total passenger ASK [ASK].
- covid_energy_intensity_per_ask_increase_2020: 2020 intensity increase [%].
- rtk_
Source code in aeromaps/models/air_transport/aircraft_fleet_and_operations/fleet/aircraft_efficiency.py
694 695 696 | |
compute ¶
compute(input_data)
Derive freight energy per RTK and propulsion mix from passenger proxies.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
input_data
|
dict
|
Inputs containing passenger market ASK/efficiency and freight RTK. |
required |
Returns:
| Type | Description |
|---|---|
dict
|
Output series for freight energy per RTK and RTK splits by energy type. |
Source code in aeromaps/models/air_transport/aircraft_fleet_and_operations/fleet/aircraft_efficiency.py
745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 | |
FreightAircraftEfficiencySimple ¶
FreightAircraftEfficiencySimple(name='freight_aircraft_efficiency', *args, **kwargs)
Bases: AeroMAPSModel
Simple top-down freight efficiency model — drop-in fuel only, per market.
Alternative to :class:FreightAircraftEfficiency. Should be specified in
the models list in place of FreightAircaftEfficiency, and related inputs should be provided in markets.yaml.
Each freight market follows its own drop-in efficiency gain curve (independent of the passenger fleet). Alternative propulsion (hydrogen, electric) is not modelled: shares are pinned to 0 and the energy-per-RTK series for those carriers is set equal to the drop-in series so downstream models remain well-defined.
Outputs follow the same templated names as :class:FreightAircraftEfficiency
so downstream consumers (DropInFuelConsumption, CO2Emissions,
FleetAbatementCost …) are mode-agnostic.
Algorithm
For each freight market <fmid>:
Historical years: same calibration as the passenger-proxy model::
energy_per_rtk_dropin[year] = energy_consumption_init[year]
/ rtk_<fmid>[year]
* <fmid>_energy_share_last_historical_year / 100
Projection years: per-market drop-in gain curve::
energy_per_rtk_dropin[k] = energy_per_rtk_dropin[k-1] * (1 - gain[k]/100)
where gain is interpolated from
<fmid>_energy_per_rtk_dropin_fuel_gain_reference_years[_values].
COVID correction: 2020 value is reset to::
energy_per_rtk_dropin[2019] * (1 + covid_energy_intensity_per_rtk_increase_2020 / 100)
Hydrogen / electric: energy_per_rtk equals the drop-in series; shares are 0; per-market RTK volumes are 0.
Documentation
Inputs
- energy_consumption_init: Historic total energy consumption [MJ].
- covid_energy_intensity_per_rtk_increase_2020: 2020 intensity increase [%].
- rtk: Global freight RTK [RTK].
- rtk_
Source code in aeromaps/models/air_transport/aircraft_fleet_and_operations/fleet/aircraft_efficiency.py
1094 1095 1096 | |