From e932466b05668a8ee41c472512c465bc95e0f285 Mon Sep 17 00:00:00 2001 From: cpschau Date: Tue, 9 Jul 2024 12:05:50 +0200 Subject: [PATCH] FT and electrolyis waste heat for DH as float --- config/config.default.yaml | 4 ++-- scripts/prepare_sector_network.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/config/config.default.yaml b/config/config.default.yaml index ee61d366..b97bd309 100644 --- a/config/config.default.yaml +++ b/config/config.default.yaml @@ -571,12 +571,12 @@ sector: min_part_load_fischer_tropsch: 0.5 min_part_load_methanolisation: 0.3 min_part_load_methanation: 0.3 - use_fischer_tropsch_waste_heat: true + use_fischer_tropsch_waste_heat: 0.2 use_haber_bosch_waste_heat: true use_methanolisation_waste_heat: true use_methanation_waste_heat: true use_fuel_cell_waste_heat: true - use_electrolysis_waste_heat: true + use_electrolysis_waste_heat: 0.2 electricity_transmission_grid: true electricity_distribution_grid: true electricity_distribution_grid_cost_factor: 1.0 diff --git a/scripts/prepare_sector_network.py b/scripts/prepare_sector_network.py index 9292e348..c9dd0a6f 100644 --- a/scripts/prepare_sector_network.py +++ b/scripts/prepare_sector_network.py @@ -3350,7 +3350,7 @@ def add_waste_heat(n): ) n.links.loc[urban_central + " Fischer-Tropsch", "efficiency3"] = ( 0.95 - n.links.loc[urban_central + " Fischer-Tropsch", "efficiency"] - ) + ) * options["use_fischer_tropsch_waste_heat"] if options["use_methanation_waste_heat"] and "Sabatier" in link_carriers: n.links.loc[urban_central + " Sabatier", "bus3"] = ( @@ -3399,7 +3399,7 @@ def add_waste_heat(n): ) n.links.loc[urban_central + " H2 Electrolysis", "efficiency2"] = ( 0.84 - n.links.loc[urban_central + " H2 Electrolysis", "efficiency"] - ) + ) * options["use_electrolysis_waste_heat"] if options["use_fuel_cell_waste_heat"] and "H2 Fuel Cell" in link_carriers: n.links.loc[urban_central + " H2 Fuel Cell", "bus2"] = (