From acb0a8d7af0c452c44d9823692a583ba281b74fd Mon Sep 17 00:00:00 2001 From: Philipp Glaum Date: Mon, 5 Aug 2024 10:08:04 +0200 Subject: [PATCH] get methanol to kerosene cost form technology data --- scripts/prepare_sector_network.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/scripts/prepare_sector_network.py b/scripts/prepare_sector_network.py index 245d6bc4..898496d0 100644 --- a/scripts/prepare_sector_network.py +++ b/scripts/prepare_sector_network.py @@ -1011,15 +1011,14 @@ def add_methanol_to_kerosene(n, costs): * costs.at[tech, "methanol-input"] ) - # cost data available at https://www.concawe.eu/wp-content/uploads/Rpt_22-17.pdf table 94 + capital_cost = costs.at[tech, "fixed"] / costs.at[tech, "methanol-input"] n.madd( "Link", spatial.methanol.locations, suffix=f" {tech}", carrier=tech, - # capital_cost= , - bus0=spatial.methanol.nodes, + capital_cost=capital_cost, bus1=spatial.oil.kerosene, bus2=spatial.h2.nodes, efficiency=costs.at[tech, "methanol-input"],