Skip to content

Commit

Permalink
Add options to add urban central heat buses everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
koen-vg committed May 9, 2024
1 parent edf3ac2 commit 2060dcf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions config/config.default.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -505,6 +505,7 @@ sector:
dac: true
co2_vent: false
central_heat_vent: false
central_heat_everywhere: false
allam_cycle: false
hydrogen_fuel_cell: true
hydrogen_turbine: false
Expand Down
2 changes: 1 addition & 1 deletion scripts/prepare_sector_network.py
Original file line number Diff line number Diff line change
Expand Up @@ -1760,7 +1760,7 @@ def add_heat(n, costs):
for name in heat_systems:
name_type = "central" if name == "urban central" else "decentral"

if name == "urban central":
if name == "urban central" and not options["central_heat_everywhere"]:
nodes = dist_fraction.index[dist_fraction > 0]
else:
nodes = pop_layout.index
Expand Down

0 comments on commit 2060dcf

Please sign in to comment.