Sha256: a78245e28104391c58bca9fd6a8d7a9aec71be10bb6d00a06a766f0a1f7eda8b
Contents?: true
Size: 982 Bytes
Versions: 10
Compression:
Stored size: 982 Bytes
Contents
class NRELZNEReady2017 < ASHRAE901 # @!group Model # Determine the prototypical economizer type for the model. # # @param model [OpenStudio::Model::Model] the model # @param climate_zone [String] the climate zone # @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 = case climate_zone when 'ASHRAE 169-2006-1A', 'ASHRAE 169-2006-2A', 'ASHRAE 169-2006-3A', 'ASHRAE 169-2006-4A' 'DifferentialEnthalpy' else 'DifferentialDryBulb' end return economizer_type end end
Version data entries
10 entries across 10 versions & 1 rubygems