Note
Go to the end to download the full example code.
Breakthrough reference: SSP2-2.6 baseline (fossil kerosene only)#
from noads.application.examples import single_policy_scenario_optimization
Baseline reference for breakthrough comparison#
Fossil kerosene only under SSP2-2.6. Used as the reference when comparing breakthrough aircraft scenarios.
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=True,
fossil_kerosene_only=True,
load_optimum=True,
plot_optimum=technology_index == 1,
save_optimum=False,
save_figs=False,
)
results_per_tech.append(result)