Sha256: bb021fa8cf4617bf9810f3010b4786033bdf6fbc019fc87f4c5978e4c1682a98
Contents?: true
Size: 706 Bytes
Versions: 26
Compression:
Stored size: 706 Bytes
Contents
class DEER # @!group Model # Determine the prototypical economizer type for the model. # Based on the MASControl rules, it appears that # only FixedDryBulb economizers are used. # # @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 = 'FixedDryBulb' return economizer_type end end
Version data entries
26 entries across 26 versions & 1 rubygems