add upper energy capacity limit for hydrogen storage per country, caution: for multiple nodes in one country storage potential is distributed by population
This commit is contained in:
parent
27e2584ae8
commit
7972637334
@ -772,10 +772,16 @@ def add_storage(network):
|
|||||||
|
|
||||||
h2_capital_cost = costs.at["hydrogen storage underground", "fixed"]
|
h2_capital_cost = costs.at["hydrogen storage underground", "fixed"]
|
||||||
|
|
||||||
|
# assumptions: weight storage potential in a country by population
|
||||||
|
h2_pot = (h2_cavern_ct.loc[cavern_nodes.ct, "TWh"].astype(float)
|
||||||
|
.reset_index().set_index(cavern_nodes.index))
|
||||||
|
h2_pot = h2_pot.TWh * cavern_nodes.fraction
|
||||||
|
|
||||||
network.madd("Store",
|
network.madd("Store",
|
||||||
cavern_nodes.index + " H2 Store",
|
cavern_nodes.index + " H2 Store",
|
||||||
bus=cavern_nodes.index + " H2",
|
bus=cavern_nodes.index + " H2",
|
||||||
e_nom_extendable=True,
|
e_nom_extendable=True,
|
||||||
|
e_nom_max=h2_pot.values,
|
||||||
e_cyclic=True,
|
e_cyclic=True,
|
||||||
carrier="H2 Store",
|
carrier="H2 Store",
|
||||||
capital_cost=h2_capital_cost)
|
capital_cost=h2_capital_cost)
|
||||||
|
Loading…
Reference in New Issue
Block a user