Sha256: 84ea57de49c5f738b753a624f905bcd185c898abbff3a1a0f10b05a8c207484d
Contents?: true
Size: 1.18 KB
Versions: 7
Compression:
Stored size: 1.18 KB
Contents
class ComStockASHRAE9012016 < ASHRAE9012016 # Determine the prototypical economizer type for the model. # Defaults to FixedDryBulb based on anecdotal evidence of this being # the most common type encountered in the field, combined # with this being the default option for many equipment manufacturers, # and being the strategy recommended in the 2010 ASHRAE journal article # "Economizer High Limit Devices and Why Enthalpy Economizers Don't Work" # by Steven Taylor and Hwakong Cheng. # https://tayloreng.egnyte.com/dl/mN0c9t4WSO/ASHRAE_Journal_-_Economizer_High_Limit_Devices_and_Why_Enthalpy_Economizers_Dont_Work.pdf_ # # @param model [OpenStudio::Model::Model] OpenStudio model object # @param climate_zone [String] ASHRAE climate zone, e.g. 'ASHRAE 169-2013-4A' # @return [String] the economizer type. Possible values are: # 'NoEconomizer' # 'FixedDryBulb' # 'FixedEnthalpy' # 'DifferentialDryBulb' # 'DifferentialEnthalpy' # 'FixedDewPointAndDryBulb' # 'ElectronicEnthalpy' # 'DifferentialDryBulbAndEnthalpy' def model_economizer_type(model, climate_zone) economizer_type = 'FixedDryBulb' return economizer_type end end
Version data entries
7 entries across 7 versions & 1 rubygems