Sha256: a844f9bdde127399de0a98329b791f6d9de932d99795df491524e13e9b680499
Contents?: true
Size: 865 Bytes
Versions: 5
Compression:
Stored size: 865 Bytes
Contents
# ******************************************************************************* # OpenStudio(R), Copyright (c) Alliance for Sustainable Energy, LLC. # See also https://openstudio.net/license # ******************************************************************************* class OpenStudio::Model::PumpConstantSpeed 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
5 entries across 5 versions & 1 rubygems