Sha256: 38046c73c446494dd6416d74f7822fa8ca9df14679618ebb8593175467c7a27e
Contents?: true
Size: 865 Bytes
Versions: 4
Compression:
Stored size: 865 Bytes
Contents
# ******************************************************************************* # OpenStudio(R), Copyright (c) Alliance for Sustainable Energy, LLC. # See also https://openstudio.net/license # ******************************************************************************* class OpenStudio::Model::PumpVariableSpeed def maxWaterFlowRate if ratedFlowRate.is_initialized ratedFlowRate else autosizedRatedFlowRate end end def maxWaterFlowRateAutosized if ratedFlowRate.is_initialized # Not autosized if hard size field value present return OpenStudio::OptionalBool.new(false) else return OpenStudio::OptionalBool.new(true) end end def performanceCharacteristics effs = [] effs << [ratedPumpHead, 'Rated Pump Head'] effs << [motorEfficiency, 'Motor Efficiency'] return effs end end
Version data entries
4 entries across 4 versions & 1 rubygems