fix capital costs of co2 tanks

This commit is contained in:
Fabian 2023-09-19 12:22:16 +02:00 committed by Fabian Neumann
parent 254d50b1b4
commit 2d027e80c3
2 changed files with 4 additions and 4 deletions

View File

@ -125,7 +125,7 @@ rule sync:
shell:
"""
rsync -uvarh --ignore-missing-args --files-from=.sync-send . {params.cluster}
rsync -uvarh --no-g {params.cluster}/resources . || echo "No resources directory, skipping rsync
rsync -uvarh --no-g {params.cluster}/resources . || echo "No resources directory, skipping rsync"
rsync -uvarh --no-g {params.cluster}/results . || echo "No results directory, skipping rsync"
rsync -uvarh --no-g {params.cluster}/logs . || echo "No logs directory, skipping rsync"
"""

View File

@ -567,7 +567,7 @@ def add_co2_tracking(n, costs, options):
bus="co2 atmosphere",
)
# this tracks CO2 stored, e.g. underground
# add CO2 tanks
n.madd(
"Bus",
spatial.co2.nodes,
@ -576,13 +576,13 @@ def add_co2_tracking(n, costs, options):
unit="t_co2",
)
# add CO2 tanks
n.madd(
"Store",
spatial.co2.nodes,
e_nom_extendable=True,
capital_cost=costs.loc["CO2 storage tank"],
capital_cost=costs.at["CO2 storage tank", "fixed"],
carrier="co2 stored",
e_cyclic=True,
bus=spatial.co2.nodes,
)
n.add("Carrier", "co2 stored")