Example for using fleet modeling in AeroMAPS#

This notebook aims at using the classes dedicated to the fleet modelling that are used in AeroMAPS.

Load and process#

import pandas as pd

pd.set_option("display.max_rows", 500)
pd.set_option("display.max_columns", 500)
pd.set_option("display.width", 1000)

The fleet is divided into three main categories of aircraft, associated to an initial subcategory based on representative aircraft:

  • Short range (Conventional narrow-body)

  • Medium range (Conventional narrow-body)

  • Long range (Conventional wide-body)

Lets now assemble these categories into a fleet object. By default, two new aircraft have been added to the initial subcategories, and two subcategories have also been added for Short Range (turboprop aircraft and hydrogen aircraft). Illustrative values are considered.

fleet = process.fleet
fleet_model = process.fleet_model

Set up the fleet#

A dedicated user interface can be used for modifying the fleet using the following command. The can then directly change the future composition of the fleet by simply adding subcategories and aircraft. For subcategories, the final distribution between the different subcategories among a category has to be indicated. For aircraft, the user can choose an Entry-Into-Service year as well as the type of fuel used (DROP_IN_FUEL or HYDROGEN). The gains in terms of fuel consumption, NOx emission index and soot emission index, in comparison to the recent reference aircraft in the initial subcategory, also have to be specified. Negative values can be considered, meaning an increase in fuel consumption for instance.

fleet.ui

You can change fleet renewal rates for each category. The default value is 25 years.

fleet.categories["Medium Range"].parameters.life = 20

Compute and results for the fleet model#

Once the fleet has been chosen, the user can compute.

fleet_model.compute()

The user can then display the results.

fleet_model.df

More simply, the user can plot fleet renewal and its impact on energy consumption per ASK for each category.

fleet_model.plot()

Compute and results for the global model#

The user can finally run the global model for studying a prospective scenario for air transport based on a hand-made fleet.

process.compute()
process.plot("air_transport_co2_emissions")