Split colours for H2 in Industry and H2 in shipping when plotting balances.
When plotting the balance for H2, the rename dictionary merges all the demands containing H2. This commit disables such merging and keeps different colours for H2 in shipping and H2 in industry. This is useful when one wants to look at the H2 balance and have an overview of where the H2 is consumed in the model.
This commit is contained in:
parent
e2354c18ac
commit
a57135b086
@ -388,6 +388,8 @@ plotting:
|
|||||||
"biogas" : "#800000"
|
"biogas" : "#800000"
|
||||||
"solid biomass" : "#DAA520"
|
"solid biomass" : "#DAA520"
|
||||||
"today" : "#D2691E"
|
"today" : "#D2691E"
|
||||||
|
"H2 for industry" : "#222222"
|
||||||
|
"H2 for shipping" : "#6495ED"
|
||||||
"shipping" : "#6495ED"
|
"shipping" : "#6495ED"
|
||||||
"shipping oil emissions" : "#6495ED"
|
"shipping oil emissions" : "#6495ED"
|
||||||
"electricity distribution grid" : "#333333"
|
"electricity distribution grid" : "#333333"
|
||||||
|
@ -20,7 +20,9 @@ def rename_techs(label):
|
|||||||
|
|
||||||
rename_if_contains_dict = {"water tanks" : "hot water storage",
|
rename_if_contains_dict = {"water tanks" : "hot water storage",
|
||||||
"retrofitting" : "building retrofitting",
|
"retrofitting" : "building retrofitting",
|
||||||
"H2" : "hydrogen storage",
|
"H2 Electrolysis" : "hydrogen storage",
|
||||||
|
"H2 Fuel Cell" : "hydrogen storage",
|
||||||
|
"H2 pipeline" : "hydrogen storage",
|
||||||
"battery" : "battery storage",
|
"battery" : "battery storage",
|
||||||
"CC" : "CC"}
|
"CC" : "CC"}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user