Skip to content
This repository was archived by the owner on Mar 27, 2025. It is now read-only.

Commit 2984123

Browse files
committed
variable space heat demand
1 parent fd114b0 commit 2984123

File tree

2 files changed

+51
-4
lines changed

2 files changed

+51
-4
lines changed

config/scenarios.manual.yaml

Lines changed: 49 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,14 @@ KN2045plus_EasyRide:
417417
steam_biomass_fraction: 0.4
418418
steam_hydrogen_fraction: 0.3
419419
steam_electricity_fraction: 0.3
420-
420+
sector:
421+
reduce_space_heat_exogenously_factor:
422+
2020: 0.0
423+
2025: 0.08
424+
2030: 0.16
425+
2035: 0.25
426+
2040: 0.34
427+
2045: 0.43
421428

422429
KN2045plus_LowDemand:
423430
# Im Vergleich zu Easy Ride eher knappe EE Erzeugung
@@ -487,6 +494,14 @@ KN2045plus_LowDemand:
487494
steam_biomass_fraction: 0.4
488495
steam_hydrogen_fraction: 0.3
489496
steam_electricity_fraction: 0.3
497+
sector:
498+
reduce_space_heat_exogenously_factor:
499+
2020: 0.0
500+
2025: 0.08
501+
2030: 0.16
502+
2035: 0.25
503+
2040: 0.34
504+
2045: 0.43
490505

491506
KN2045minus_WorstCase:
492507
# Nachfrage nach Endenergie ist höher als in den Szenarien 1-3
@@ -607,7 +622,13 @@ KN2045minus_WorstCase:
607622
sector:
608623
district_heating:
609624
potential: 0.1
610-
625+
reduce_space_heat_exogenously_factor:
626+
2020: 0.0
627+
2025: 0.06
628+
2030: 0.12
629+
2035: 0.18
630+
2040: 0.24
631+
2045: 0.29
611632
offshore_nep_force:
612633
cutin_year: 2025
613634
cutout_year: 2035 # Hackily reduced to 2030 if delay_years: 1
@@ -709,7 +730,14 @@ KN2045minus_SupplyFocus:
709730
steam_biomass_fraction: 0.4
710731
steam_hydrogen_fraction: 0.3
711732
steam_electricity_fraction: 0.3
712-
733+
sector:
734+
reduce_space_heat_exogenously_factor:
735+
2020: 0.0
736+
2025: 0.06
737+
2030: 0.12
738+
2035: 0.18
739+
2040: 0.24
740+
2045: 0.29
713741

714742
KN2045_Bal_LowDemand:
715743
# Ausgewogener Mix an Technologien zur Dekarbonisierung der Sektoren
@@ -783,6 +811,14 @@ KN2045_Bal_LowDemand:
783811
steam_hydrogen_fraction: 0.3
784812
steam_electricity_fraction: 0.3
785813

814+
sector:
815+
reduce_space_heat_exogenously_factor:
816+
2020: 0.0
817+
2025: 0.08
818+
2030: 0.16
819+
2035: 0.25
820+
2040: 0.34
821+
2045: 0.43
786822

787823
KN2045_Bal_HighDemand:
788824
# Ausgewogener Mix an Technologien zur Dekarbonisierung der Sektoren
@@ -855,3 +891,13 @@ KN2045_Bal_HighDemand:
855891
steam_biomass_fraction: 0.4
856892
steam_hydrogen_fraction: 0.3
857893
steam_electricity_fraction: 0.3
894+
895+
sector:
896+
reduce_space_heat_exogenously_factor:
897+
2020: 0.0
898+
2025: 0.06
899+
2030: 0.12
900+
2035: 0.18
901+
2040: 0.24
902+
2045: 0.29
903+

workflow/scripts/build_scenarios.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,8 @@ def write_to_scenario_yaml(input, output, scenarios, df):
185185
co2_budget_source,
186186
)
187187

188-
config[scenario]["sector"] = {}
188+
if not config[scenario].get("sector"):
189+
config[scenario]["sector"] = {}
189190

190191
config[scenario]["sector"]["aviation_demand_factor"] = {}
191192
for year in planning_horizons:

0 commit comments

Comments
 (0)