Breakthrough aircraft: preferential energy allocation

Breakthrough aircraft: preferential energy allocation#

from noads.application.examples import single_policy_scenario_optimization

Breakthrough aircraft with preferential energy#

All propulsion architectures unlocked, with a preferential share (~8.6%) of global biomass and electricity allocated to aviation under SSP2-2.6.

results_per_tech = []
for technology_index in range(3):
    result = single_policy_scenario_optimization(
        global_scenario_name="SSP2-26",
        technology_index=technology_index,
        drop_in_only=False,
        low_demand_formulation=False,
        preferential_energy=True,
        load_optimum=True,
        plot_optimum=technology_index == 1,
        save_optimum=False,
        save_figs=False,
    )
    results_per_tech.append(result)

Gallery generated by Sphinx-Gallery