Sha256: b99761e3b769ea7c61cbc7f86984a04e9082dfa4efff6ee4cae58973ec9cbc9d
Contents?: true
Size: 469 Bytes
Versions: 11
Compression:
Stored size: 469 Bytes
Contents
class DOERefPre1980 < ASHRAE901 # @!group hvac_systems # Determine the type of SWH pump that # a model will have. # @return [String] the SWH pump type: ConstantSpeed, VariableSpeed def model_swh_pump_type(model, building_type) swh_pump_type = if building_type == 'Medium Office' 'ConstantSpeed' else 'VariableSpeed' end return swh_pump_type end end
Version data entries
11 entries across 11 versions & 1 rubygems