Sha256: 85d3304c7c1edbd3f8d8ecb837aff3e1cf370e6f7f6a103c4907656d31e9c268
Contents?: true
Size: 1.27 KB
Versions: 4
Compression:
Stored size: 1.27 KB
Contents
# ******************************************************************************* # OpenStudio(R), Copyright (c) Alliance for Sustainable Energy, LLC. # See also https://openstudio.net/license # ******************************************************************************* class OpenStudio::Model::CoilWaterHeatingAirToWaterHeatPump def maxAirFlowRate if ratedEvaporatorAirFlowRate.is_initialized ratedEvaporatorAirFlowRate else autosizedRatedEvaporatorAirFlowRate end end def maxWaterFlowRate if ratedCondenserWaterFlowRate.is_initialized ratedCondenserWaterFlowRate else autosizedRatedCondenserWaterFlowRate end end def maxAirFlowRateAutosized if ratedEvaporatorAirFlowRate.is_initialized # Not autosized if hard size field value present return OpenStudio::OptionalBool.new(false) else return OpenStudio::OptionalBool.new(true) end end def maxWaterFlowRateAutosized if ratedCondenserWaterFlowRate.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 << [ratedCOP, 'Rated COP'] return effs end end
Version data entries
4 entries across 4 versions & 1 rubygems