aeromaps.models.impacts.emissions.co2_emissions¶
co2_emissions¶
This module contains models for calculating CO2 emissions and related factors.
KayaFactors ¶
KayaFactors(name='kaya_factors', *args, **kwargs)
Bases: AeroMAPSModel
Class to compute Kaya factors for CO2 emissions calculation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
Name of the model instance ('kaya_factors' by default). |
'kaya_factors'
|
Source code in aeromaps/models/impacts/emissions/co2_emissions.py
24 25 | |
compute ¶
compute(ask, rtk, energy_consumption_passenger_dropin_fuel_without_operations, energy_consumption_passenger_hydrogen_without_operations, energy_consumption_passenger_electric_without_operations, energy_consumption_passenger_dropin_fuel, energy_consumption_passenger_hydrogen, energy_consumption_passenger_electric, energy_consumption_freight_dropin_fuel_without_operations, energy_consumption_freight_hydrogen_without_operations, energy_consumption_freight_electric_without_operations, energy_consumption_freight_dropin_fuel, energy_consumption_freight_hydrogen, energy_consumption_freight_electric, energy_consumption_dropin_fuel, energy_consumption_hydrogen, energy_consumption_electric, energy_consumption, dropin_fuel_mean_co2_emission_factor, hydrogen_mean_co2_emission_factor, electric_mean_co2_emission_factor)
Execute the computation of Kaya factors for CO2 emissions calculation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
ask
|
Series
|
Available seat kilometers (ASK) [ASK]. |
required |
rtk
|
Series
|
Revenue ton kilometers (RTK) [RTK]. |
required |
energy_consumption_passenger_dropin_fuel_without_operations
|
Series
|
Energy consumption for passenger transport using drop-in fuels without operational improvements [MJ]. |
required |
energy_consumption_passenger_hydrogen_without_operations
|
Series
|
Energy consumption for passenger transport using hydrogen without operational improvements [MJ]. |
required |
energy_consumption_passenger_electric_without_operations
|
Series
|
Energy consumption for passenger transport using electricity without operational improvements [MJ]. |
required |
energy_consumption_passenger_dropin_fuel
|
Series
|
Energy consumption for passenger transport using drop-in fuels [MJ]. |
required |
energy_consumption_passenger_hydrogen
|
Series
|
Energy consumption for passenger transport using hydrogen [MJ]. |
required |
energy_consumption_passenger_electric
|
Series
|
Energy consumption for passenger transport using electricity [MJ]. |
required |
energy_consumption_freight_dropin_fuel_without_operations
|
Series
|
Energy consumption for freight transport using drop-in fuels without operational improvements [MJ]. |
required |
energy_consumption_freight_hydrogen_without_operations
|
Series
|
Energy consumption for freight transport using hydrogen without operational improvements [MJ]. |
required |
energy_consumption_freight_electric_without_operations
|
Series
|
Energy consumption for freight transport using electricity without operational improvements [MJ]. |
required |
energy_consumption_freight_dropin_fuel
|
Series
|
Energy consumption for freight transport using drop-in fuels [MJ]. |
required |
energy_consumption_freight_hydrogen
|
Series
|
Energy consumption for freight transport using hydrogen [MJ]. |
required |
energy_consumption_freight_electric
|
Series
|
Energy consumption for freight transport using electricity [MJ]. |
required |
energy_consumption_dropin_fuel
|
Series
|
Total energy consumption using drop-in fuels [MJ]. |
required |
energy_consumption_hydrogen
|
Series
|
Total energy consumption using hydrogen [MJ]. |
required |
energy_consumption_electric
|
Series
|
Total energy consumption using electricity [MJ]. |
required |
energy_consumption
|
Series
|
Total energy consumption [MJ]. |
required |
dropin_fuel_mean_co2_emission_factor
|
Series
|
Mean CO2 emission factor for drop-in fuels [gCO2/MJ]. |
required |
hydrogen_mean_co2_emission_factor
|
Series
|
Mean CO2 emission factor for hydrogen [gCO2/MJ]. |
required |
electric_mean_co2_emission_factor
|
Series
|
Mean CO2 emission factor for electricity [gCO2/MJ]. |
required |
Returns:
| Type | Description |
|---|---|
energy_per_ask_mean_without_operations
|
Energy consumption per ASK without operational improvements [MJ/ASK]. |
energy_per_ask_mean
|
Energy consumption per ASK [MJ/ASK]. |
energy_per_rtk_mean_without_operations
|
Energy consumption per RTK without operational improvements [MJ/RTK]. |
energy_per_rtk_mean
|
Energy consumption per RTK [MJ/RTK]. |
co2_per_energy_mean
|
CO2 emissions per unit of energy consumed [gCO2/MJ]. |
Source code in aeromaps/models/impacts/emissions/co2_emissions.py
27 28 29 30 31 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 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 | |
CO2Emissions ¶
CO2Emissions(name='co2_emissions', *args, **kwargs)
Bases: AeroMAPSModel
Class to compute CO2 emissions.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
Name of the model instance ('co2_emissions' by default). |
'co2_emissions'
|
Documentation
Inputs
- load_factor: Load factor [%].
- rpk_
Source code in aeromaps/models/impacts/emissions/co2_emissions.py
196 197 198 199 | |
custom_setup ¶
custom_setup()
Dynamically build input_names and output_names based on the markets manager. Specific function for custom AeroMAPSModel instances.
Source code in aeromaps/models/impacts/emissions/co2_emissions.py
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 | |
compute ¶
compute(input_data)
CO2 emissions per market and aggregates.
Source code in aeromaps/models/impacts/emissions/co2_emissions.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 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 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 331 332 333 334 335 | |
CumulativeCO2Emissions ¶
CumulativeCO2Emissions(name='cumulative_co2_emissions', *args, **kwargs)
Bases: AeroMAPSModel
Class to compute cumulative CO2 emissions.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
Name of the model instance ('cumulative_co2_emissions' by default). |
'cumulative_co2_emissions'
|
Source code in aeromaps/models/impacts/emissions/co2_emissions.py
348 349 | |
compute ¶
compute(co2_emissions, carbon_budget_reference_year)
Execute the computation of cumulative CO2 emissions.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
co2_emissions
|
Series
|
Annual CO2 emissions [MtCO2]. |
required |
carbon_budget_reference_year
|
int
|
Fixed reference year from which the budget-comparable cumulative is summed (default 2019), matching the aviation carbon budget framing. |
required |
Returns:
| Type | Description |
|---|---|
cumulative_co2_emissions
|
Cumulative CO2 emissions over the prospective window (prospection_start_year -> end_year) [GtCO2]. |
cumulative_co2_emissions_from_carbon_budget_reference_year
|
Cumulative CO2 emissions summed from carbon_budget_reference_year -> end_year [GtCO2]. Includes observed historic emissions from the reference year onward, so it is directly comparable to the aviation carbon budget regardless of prospection_start_year. |
Source code in aeromaps/models/impacts/emissions/co2_emissions.py
351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 | |
DetailedCo2Emissions ¶
DetailedCo2Emissions(name='detailed_co2_emissions', *args, **kwargs)
Bases: AeroMAPSModel
Class to compute detailed CO2 emissions breakdown.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
Name of the model instance ('detailed_co2_emissions' by default). |
'detailed_co2_emissions'
|
Source code in aeromaps/models/impacts/emissions/co2_emissions.py
408 409 | |
compute ¶
compute(rpk_reference, rtk_reference, rpk, rtk, load_factor, energy_per_ask_mean, energy_per_rtk_mean, energy_per_ask_mean_without_operations, energy_per_rtk_mean_without_operations, co2_per_energy_mean)
Execute the computation of detailed CO2 emissions breakdown.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
rpk_reference
|
Series
|
Number of Revenue Passenger Kilometer (RPK) for all passenger air transport with a baseline air traffic growth [RPK]. |
required |
rtk_reference
|
Series
|
Number of Revenue Tonne Kilometer (RTK) for freight air transport with a baseline air traffic growth [RTK]. |
required |
rpk
|
Series
|
Revenue passenger kilometers (RPK) [RPK]. |
required |
rtk
|
Series
|
Revenue ton kilometers (RTK) [RTK]. |
required |
load_factor
|
Series
|
Load factor [%]. |
required |
energy_per_ask_mean
|
Series
|
Mean energy consumption per ASK for passenger market [MJ/ASK]. |
required |
energy_per_rtk_mean
|
Series
|
Mean energy consumption per RTK for freight market [MJ/RTK]. |
required |
energy_per_ask_mean_without_operations
|
Series
|
Mean energy consumption per ASK for passenger market without considering operation improvements [MJ/ASK]. |
required |
energy_per_rtk_mean_without_operations
|
Series
|
Mean energy consumption per RTK for freight market without considering operation improvements [MJ/RTK]. |
required |
co2_per_energy_mean
|
Series
|
Mean emission factor of aircraft energy [gCO2/MJ]. |
required |
Returns:
| Type | Description |
|---|---|
co2_emissions_last_historical_year_technology_baseline3
|
CO2 emissions from all commercial air transport based on last-historical-year technological level with a baseline air traffic growth [MtCO2]. |
co2_emissions_last_historical_year_technology
|
CO2 emissions from all commercial air transport based on last-historical-year technological level [MtCO2]. |
co2_emissions_including_aircraft_efficiency
|
CO2 emissions from all commercial air transport including aircraft efficiency improvements [MtCO2]. |
co2_emissions_including_operations
|
CO2 emissions from all commercial air transport including aircraft efficiency and operation improvements [MtCO2]. |
co2_emissions_including_load_factor
|
CO2 emissions from all commercial air transport including aircraft efficiency, operation and load factor improvements [MtCO2]. |
co2_emissions_including_energy
|
CO2 emissions from all commercial air transport including aircraft efficiency, operation and load factor improvements and energy decarbonization [MtCO2]. |
Source code in aeromaps/models/impacts/emissions/co2_emissions.py
411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 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 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 | |
DetailedCumulativeCO2Emissions ¶
DetailedCumulativeCO2Emissions(name='detailed_cumulative_co2_emissions', *args, **kwargs)
Bases: AeroMAPSModel
Class to compute detailed cumulative CO2 emissions breakdown.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
Name of the model instance ('detailed_cumulative_co2_emissions' by default). |
'detailed_cumulative_co2_emissions'
|
Source code in aeromaps/models/impacts/emissions/co2_emissions.py
642 643 | |
compute ¶
compute(co2_emissions_last_historical_year_technology_baseline3, co2_emissions_last_historical_year_technology, co2_emissions_including_aircraft_efficiency, co2_emissions_including_operations, co2_emissions_including_load_factor, co2_emissions_including_energy)
Execute the computation of detailed cumulative CO2 emissions breakdown.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
co2_emissions_last_historical_year_technology_baseline3
|
Series
|
CO2 emissions from all commercial air transport based on last-historical-year technological level with a baseline air traffic growth [MtCO2]. |
required |
co2_emissions_last_historical_year_technology
|
Series
|
CO2 emissions from all commercial air transport based on last-historical-year technological level [MtCO2]. |
required |
co2_emissions_including_aircraft_efficiency
|
Series
|
CO2 emissions from all commercial air transport including aircraft efficiency improvements [MtCO2]. |
required |
co2_emissions_including_operations
|
Series
|
CO2 emissions from all commercial air transport including aircraft efficiency and operations improvements [MtCO2]. |
required |
co2_emissions_including_load_factor
|
Series
|
CO2 emissions from all commercial air transport including aircraft efficiency, operation and load factor improvements [MtCO2]. |
required |
co2_emissions_including_energy
|
Series
|
CO2 emissions from all commercial air transport including aircraft efficiency, operation and load factor improvements and energy decarbonization [MtCO2]. |
required |
Returns:
| Type | Description |
|---|---|
cumulative_co2_emissions_last_historical_year_technology_baseline3
|
Cumulative CO2 emissions from all commercial air transport based on last-historical-year technological level with a baseline air traffic growth [GtCO2]. |
cumulative_co2_emissions_last_historical_year_technology
|
Cumulative CO2 emissions from all commercial air transport based on last-historical-year technological level [GtCO2]. |
cumulative_co2_emissions_including_aircraft_efficiency
|
Cumulative CO2 emissions from all commercial air transport including aircraft efficiency improvements [GtCO2]. |
cumulative_co2_emissions_including_operations
|
Cumulative CO2 emissions from all commercial air transport including aircraft efficiency and operations improvements [GtCO2]. |
cumulative_co2_emissions_including_load_factor
|
Cumulative CO2 emissions from all commercial air transport including aircraft efficiency, operation and load factor improvements [GtCO2]. |
cumulative_co2_emissions_including_energy
|
Cumulative CO2 emissions from all commercial air transport including aircraft efficiency, operation and load factor improvements and energy decarbonization [GtCO2]. |
Source code in aeromaps/models/impacts/emissions/co2_emissions.py
645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 | |
SimpleCO2Emissions ¶
SimpleCO2Emissions(name='simple_co2_emissions', *args, **kwargs)
Bases: AeroMAPSModel
Class to compute simple CO2 emissions.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
Name of the model instance ('simple_co2_emissions' by default). |
'simple_co2_emissions'
|
Source code in aeromaps/models/impacts/emissions/co2_emissions.py
763 764 765 | |
compute ¶
compute(energy_consumption_init, dropin_fuel_mean_co2_emission_factor, hydrogen_mean_co2_emission_factor, electric_mean_co2_emission_factor, energy_consumption_dropin_fuel, energy_consumption_hydrogen, energy_consumption_electricity)
Simple CO2 emissions calculation
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
energy_consumption_init
|
Series
|
Historical energy consumption of aviation over 2000-2019 [MJ]. |
required |
dropin_fuel_mean_co2_emission_factor
|
Series
|
Mean CO2 emission factor for drop-in fuels [gCO2/MJ]. |
required |
hydrogen_mean_co2_emission_factor
|
Series
|
Mean CO2 emission factor for hydrogen [gCO2/MJ]. |
required |
electric_mean_co2_emission_factor
|
Series
|
Mean CO2 emission factor for electric aviation [gCO2/MJ]. |
required |
energy_consumption_dropin_fuel
|
Series
|
Energy consumption in the form of drop-in fuels from all commercial air transport [MJ]. |
required |
energy_consumption_hydrogen
|
Series
|
Energy consumption in the form of hydrogen from all commercial air transport [MJ]. |
required |
energy_consumption_electricity
|
Series
|
Energy consumption in the form of electricity from all commercial air transport [MJ]. |
required |
Returns:
| Type | Description |
|---|---|
co2_emissions
|
CO2 emissions from all commercial air transport [MtCO2]. |
Source code in aeromaps/models/impacts/emissions/co2_emissions.py
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 | |