Sha256: a390aa5038411a08f06593b4ebe967f896f6f23eb94cbdf56dfb5748fe30bcf0
Contents?: true
Size: 472 Bytes
Versions: 11
Compression:
Stored size: 472 Bytes
Contents
class DOERef1980to2004 < 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