Skip to content

Commit

Permalink
Added Option To Hard Size Ideal Air
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswmackey committed Mar 1, 2018
1 parent 7cbf2a6 commit 4824047
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion src/Honeybee_Export To OpenStudio.py
Expand Up @@ -71,7 +71,7 @@

ghenv.Component.Name = "Honeybee_Export To OpenStudio"
ghenv.Component.NickName = 'exportToOpenStudio'
ghenv.Component.Message = 'VER 0.0.63\nJAN_20_2018'
ghenv.Component.Message = 'VER 0.0.63\nMAR_01_2018'
ghenv.Component.IconDisplayMode = ghenv.Component.IconDisplayMode.application
ghenv.Component.Category = "Honeybee"
ghenv.Component.SubCategory = "10 | Energy | Energy"
Expand Down Expand Up @@ -2241,6 +2241,11 @@ def addSystemsToZones(self, model):
zoneIdealAir.setMinimumCoolingSupplyAirTemperature(airDetails.coolingSupplyAirTemp)
if airDetails.airsideEconomizer != 'Default':
zoneIdealAir.setOutdoorAirEconomizerType(airDetails.airsideEconomizer)
if airDetails.airsideEconomizer == 'NoEconomizer':
zoneIdealAir.setCoolingLimit('NoLimit')
if airDetails.airSysHardSize != "Default":
zoneIdealAir.setCoolingLimit('LimitFlowRate')
zoneIdealAir.setMaximumCoolingAirFlowRate(float(airDetails.airSysHardSize))
if airDetails.heatRecovery != 'Default':
zoneIdealAir.setHeatRecoveryType(airDetails.heatRecovery)
if airDetails.recoveryEffectiveness != 'Default':
Expand Down
2 changes: 1 addition & 1 deletion src/Honeybee_Honeybee.py
Expand Up @@ -8659,7 +8659,7 @@ def __init__(self):
}

self.airCapabilities = {
0: {'FanTotEff': False, 'FanMotEff': False, 'FanPres': False, 'FanPlace': False, 'airSysHardSize': False, 'centralAirLoop' : False, 'FanCntrl': True, 'HeatSupTemp' : True, 'CoolSupTemp' : True, 'Econ' : True, 'HeatRecov' : True},
0: {'FanTotEff': False, 'FanMotEff': False, 'FanPres': False, 'FanPlace': False, 'airSysHardSize': True, 'centralAirLoop' : False, 'FanCntrl': True, 'HeatSupTemp' : True, 'CoolSupTemp' : True, 'Econ' : True, 'HeatRecov' : True},
1: {'FanTotEff': True, 'FanMotEff': True, 'FanPres': True, 'FanPlace': True, 'airSysHardSize': True, 'centralAirLoop' : False, 'FanCntrl': False, 'HeatSupTemp' : True, 'CoolSupTemp' : False, 'Econ' : False, 'HeatRecov' : False},
2: {'FanTotEff': True, 'FanMotEff': True, 'FanPres': True, 'FanPlace': True, 'airSysHardSize': True, 'centralAirLoop' : False, 'FanCntrl': False, 'HeatSupTemp' : False, 'CoolSupTemp' : False, 'Econ' : False, 'HeatRecov' : False},
3: {'FanTotEff': True, 'FanMotEff': True, 'FanPres': True, 'FanPlace': True, 'airSysHardSize': True, 'centralAirLoop' : False, 'FanCntrl': False, 'HeatSupTemp' : True, 'CoolSupTemp' : True, 'Econ' : True, 'HeatRecov' : True},
Expand Down
Binary file modified userObjects/Honeybee_Export To OpenStudio.ghuser
Binary file not shown.
Binary file modified userObjects/Honeybee_Honeybee.ghuser
Binary file not shown.

0 comments on commit 4824047

Please sign in to comment.