Sha256: 2f191e978bc31b3caac836c6fa20ab03a4dc9a7e9fb5d6f11b50fdafc2c468cc
Contents?: true
Size: 1.45 KB
Versions: 2
Compression:
Stored size: 1.45 KB
Contents
# ******************************************************************************* # OpenStudio(R), Copyright (c) Alliance for Sustainable Energy, LLC. # See also https://openstudio.net/license # ******************************************************************************* class OpenStudio::Model::CoilCoolingDXMultiSpeedStageData def maxCoolingCapacity if grossRatedTotalCoolingCapacity.is_initialized grossRatedTotalCoolingCapacity else autosizedGrossRatedTotalCoolingCapacity end end def maxAirFlowRate if ratedAirFlowRate.is_initialized ratedAirFlowRate else autosizedRatedAirFlowRate end end def maxCoolingCapacityAutosized if grossRatedTotalCoolingCapacity.is_initialized # Not autosized if hard size field value present return OpenStudio::OptionalBool.new(false) else return OpenStudio::OptionalBool.new(true) end end def maxAirFlowRateAutosized if ratedAirFlowRate.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 << [grossRatedCoolingCOP, 'Gross Rated Cooling COP'] if parentCoil.is_initialized effs << [evaporativeCondenserEffectiveness, 'Evaporative Condenser Effectiveness'] if parentCoil.get.condenserType == 'EvaporativelyCooled' end return effs end end
Version data entries
2 entries across 2 versions & 1 rubygems