From 8256eb0cf3e0710f9ba8d5ac0bff95a64e38e713 Mon Sep 17 00:00:00 2001 From: energyls Date: Tue, 31 Oct 2023 09:10:54 +0100 Subject: [PATCH] fix: add ft efficiency in capital cost calculation --- scripts/prepare_sector_network.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/prepare_sector_network.py b/scripts/prepare_sector_network.py index 87684f29..d5c088e4 100644 --- a/scripts/prepare_sector_network.py +++ b/scripts/prepare_sector_network.py @@ -209,7 +209,10 @@ def H2_liquid_fossil_conversions(n, costs): bus2=spatial.co2.nodes, carrier="Fischer-Tropsch", efficiency=costs.at["Fischer-Tropsch", "efficiency"], - capital_cost=costs.at["Fischer-Tropsch", "fixed"], + capital_cost=costs.at["Fischer-Tropsch", "fixed"] + * costs.at[ + "Fischer-Tropsch", "efficiency" + ], # Use efficiency to convert from EUR/MW_FT/a to EUR/MW_H2/a efficiency2=-costs.at["oil", "CO2 intensity"] * costs.at["Fischer-Tropsch", "efficiency"], p_nom_extendable=True,