Skip to content

Commit

Permalink
fix(simulate): Tweak Annual Loads to work with zone multipliers
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswmackey committed Jan 3, 2025
1 parent b15ad08 commit 5a79a63
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 4 deletions.
Binary file modified honeybee_grasshopper_energy/icon/HB Annual Loads.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions honeybee_grasshopper_energy/json/HB_Annual_Loads.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions honeybee_grasshopper_energy/src/HB Annual Loads.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@

ghenv.Component.Name = 'HB Annual Loads'
ghenv.Component.NickName = 'AnnualLoads'
ghenv.Component.Message = '1.8.0'
ghenv.Component.Message = '1.8.1'
ghenv.Component.Category = 'HB-Energy'
ghenv.Component.SubCategory = '5 :: Simulate'
ghenv.Component.AdditionalHelpFromDocStrings = '2'
Expand Down Expand Up @@ -236,7 +236,7 @@ def serialize_data(data_dicts):
floor_area = _model.floor_area
assert floor_area != 0, 'Connected _rooms have no floors with which to compute EUI.'
floor_area = floor_area * conversion_to_meters() ** 2
mults = {rm.identifier.upper(): rm.multiplier for rm in _model.rooms}
mults = {rm.zone.upper(): rm.multiplier for rm in _model.rooms}
mults = None if all(mul == 1 for mul in mults.values()) else mults

# process the simulation folder name and the directory
Expand Down
Binary file modified honeybee_grasshopper_energy/user_objects/HB Annual Loads.ghuser
Binary file not shown.
Binary file modified samples/shoe_box_annual_loads.gh
Binary file not shown.
Binary file modified samples/shoe_box_peak_loads.gh
Binary file not shown.

0 comments on commit 5a79a63

Please # to comment.