Skip to content

Commit

Permalink
fix(eio): Implement bug fix provided by Mauricio
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswmackey committed May 10, 2020
1 parent ef867cd commit a683ae6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/Honeybee_Read HVAC Sizing.py
Expand Up @@ -3,7 +3,7 @@
#
# This file is part of Honeybee.
#
# Copyright (c) 2013-2018, Chris Mackey <Chris@MackeyArchitecture.com>
# Copyright (c) 2013-2020, Chris Mackey <Chris@MackeyArchitecture.com>
# Honeybee is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published
# by the Free Software Foundation; either version 3 of the License,
Expand Down Expand Up @@ -43,9 +43,9 @@

ghenv.Component.Name = "Honeybee_Read HVAC Sizing"
ghenv.Component.NickName = 'readEio'
ghenv.Component.Message = 'VER 0.0.65\nJAN_01_2020'
ghenv.Component.Message = 'VER 0.0.65\nMAY_09_2020'
ghenv.Component.IconDisplayMode = ghenv.Component.IconDisplayMode.application
ghenv.Component.Category = "Honeybee"
ghenv.Component.Category = 'HB-Legacy'
ghenv.Component.SubCategory = "10 | Energy | Energy"
#compatibleHBVersion = VER 0.0.56\nMAY_02_2015
#compatibleLBVersion = VER 0.0.59\nAPR_04_2015
Expand Down Expand Up @@ -185,8 +185,9 @@ def main(keywords):
zoneNames.append(zoneName)
elif 'Des Sens Cool Load' in col:
coolCols.append(colCount)
coolDesLoad.append(createHeader('Design Day Cooling Load', zoneName))
heatDesLoad.append(createHeader('Design Day Heating Load', zoneName))
for zoneCount, zoneName in enumerate(zoneNames):
coolDesLoad.append(createHeader('Design Day Cooling Load', zoneName))
heatDesLoad.append(createHeader('Design Day Heating Load', zoneName))
elif 'Peak' in line:
loadTrigger = False
elif loadTrigger == True:
Expand Down
Binary file modified userObjects/Honeybee_Read HVAC Sizing.ghuser
Binary file not shown.

0 comments on commit a683ae6

Please sign in to comment.