From 7555fa0d2d80f5866347a7314ab228b7c19dbbef Mon Sep 17 00:00:00 2001 From: LukasFrankenQ Date: Tue, 14 Nov 2023 10:50:36 +0000 Subject: [PATCH] switched enhanced geothermal off by default --- config/config.default.yaml | 2 +- scripts/prepare_sector_network.py | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/config/config.default.yaml b/config/config.default.yaml index 3baf87a2..73b6c68f 100644 --- a/config/config.default.yaml +++ b/config/config.default.yaml @@ -508,7 +508,7 @@ sector: solar: 3 offwind-ac: 3 offwind-dc: 3 - enhanced_geothermal: true + enhanced_geothermal: false enhanced_geothermal_optimism: false # if true, egs costs are reducing towards 2050 according to Aghahosseini et al., (2020) enhanced_geothermal_performant: true # if true, adds only the cheapest patch of EGS potential to each region enhanced_geothermal_flexible: true # if true, adds a storage unit simulating flexible operation of EGS, see Ricks et al. 2023 diff --git a/scripts/prepare_sector_network.py b/scripts/prepare_sector_network.py index 55313452..4bfbc9c0 100644 --- a/scripts/prepare_sector_network.py +++ b/scripts/prepare_sector_network.py @@ -3344,7 +3344,7 @@ def add_enhanced_geothermal( # cost for ORC is subtracted, as it is already included in the geothermal cost. # The orc cost are attributed to a separate link representing the ORC. - # also capital_cost conversion Euro/kW -> Euro/MW + # also capital_cost conversion Eurofalse/kW -> Euro/MW egs_potentials["capital_cost"] = ( (egs_annuity + FOM / (1.0 + FOM)) @@ -3501,7 +3501,6 @@ def add_enhanced_geothermal( p_min_pu=-1.0 - boost, max_hours=max_hours, ) - n.links.to_csv('links.csv') if __name__ == "__main__":