diff --git a/config.yaml b/config.yaml index 6001617d..88d65c53 100644 --- a/config.yaml +++ b/config.yaml @@ -171,6 +171,10 @@ plotting: "onshore wind" : "b" 'offwind' : "c" 'offshore wind' : "c" + 'offwind-ac' : "c" + 'offshore wind (AC)' : "c" + 'offwind-dc' : "#009999" + 'offshore wind (DC)' : "#009999" "hydro" : "#3B5323" "hydro reservoir" : "#3B5323" "ror" : "#78AB46" diff --git a/scripts/plot_summary.py b/scripts/plot_summary.py index 52b76141..2297bf56 100644 --- a/scripts/plot_summary.py +++ b/scripts/plot_summary.py @@ -40,6 +40,10 @@ def rename_techs(label): label = "methanation" if label == "offwind": label = "offshore wind" + if label == "offwind-ac": + label = "offshore wind (AC)" + if label == "offwind-dc": + label = "offshore wind (DC)" if label == "onwind": label = "onshore wind" if label == "ror": @@ -59,7 +63,7 @@ def rename_techs(label): return label -preferred_order = pd.Index(["transmission lines","hydroelectricity","hydro reservoir","run of river","pumped hydro storage","solid biomass","biogas","onshore wind","offshore wind","solar PV","solar thermal","solar","building retrofitting","ground heat pump","air heat pump","heat pump","resistive heater","power-to-heat","gas-to-power/heat","CHP","OCGT","gas boiler","gas","natural gas","helmeth","methanation","hydrogen storage","power-to-gas","power-to-liquid","battery storage","hot water storage","CO2 sequestration"]) +preferred_order = pd.Index(["transmission lines","hydroelectricity","hydro reservoir","run of river","pumped hydro storage","solid biomass","biogas","onshore wind","offshore wind","offshore wind (AC)","offshore wind (DC)","solar PV","solar thermal","solar","building retrofitting","ground heat pump","air heat pump","heat pump","resistive heater","power-to-heat","gas-to-power/heat","CHP","OCGT","gas boiler","gas","natural gas","helmeth","methanation","hydrogen storage","power-to-gas","power-to-liquid","battery storage","hot water storage","CO2 sequestration"]) def plot_costs():