switched enhanced geothermal off by default

This commit is contained in:
LukasFrankenQ 2023-11-14 10:50:36 +00:00
parent 4a7852cba8
commit 7555fa0d2d
2 changed files with 2 additions and 3 deletions

View File

@ -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

View File

@ -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__":