Baseline: SSP5-4.5 (fossil kerosene only)

Baseline: SSP5-4.5 (fossil kerosene only)#

from noads.application.examples import single_policy_scenario_optimization

Baseline optimization under SSP5-4.5#

Fossil kerosene only. SSP5-4.5 represents a fossil-fueled development pathway with high demand growth — the loosest carbon budget but the largest traffic volumes.

results_per_tech = []
for technology_index in range(3):
    result = single_policy_scenario_optimization(
        global_scenario_name="SSP5-45",
        carbon_budget_percent=3.0,
        technology_index=technology_index,
        drop_in_only=True,
        fossil_kerosene_only=True,
        low_demand_formulation=False,
        preferential_energy=False,
        load_optimum=True,
        plot_optimum=technology_index == 1,
        save_optimum=False,
        save_figs=False,
        save_history_view=False,
    )
    results_per_tech.append(result)

Gallery generated by Sphinx-Gallery