Skip to content

Commit

Permalink
Manually change cooling and heating in Config
Browse files Browse the repository at this point in the history
  • Loading branch information
measrainsey committed Dec 17, 2024
1 parent 59f921f commit d21989f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions message_ix_buildings/chilled/run_heat.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,6 @@ def create_config(parsed_arguments):
vstr=parsed_arguments.version,
gcm=parsed_arguments.gcm,
rcp=parsed_arguments.rcp,
cool=0,
heat=1,
)

return cfg
Expand Down
4 changes: 2 additions & 2 deletions message_ix_buildings/chilled/util/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,13 +93,13 @@ class Config:
#:
#: 1 = calculate
#: 0 = skip
cool = 1
cool = 0

#: Select whether to run heating calculations.
#:
#: 1 = calculate
#: 0 = skip
heat = 0
heat = 1

#: Select solar gain calculation. One of:
#:
Expand Down

0 comments on commit d21989f

Please sign in to comment.