Sha256: acb8599abe8e4716d10c67dfb8d147e2f2054d9b1ad4937e838d5cc582e7dc00
Contents?: true
Size: 1.66 KB
Versions: 2
Compression:
Stored size: 1.66 KB
Contents
# ******************************************************************************* # OpenStudio(R), Copyright (c) Alliance for Sustainable Energy, LLC. # See also https://openstudio.net/license # ******************************************************************************* class OpenStudio::Model::CoilCoolingWaterToAirHeatPumpEquationFit def maxCoolingCapacity if ratedTotalCoolingCapacity.is_initialized ratedTotalCoolingCapacity else autosizedRatedTotalCoolingCapacity end end def maxAirFlowRate if ratedAirFlowRate.is_initialized ratedAirFlowRate else autosizedRatedAirFlowRate end end def maxWaterFlowRate if ratedWaterFlowRate.is_initialized ratedWaterFlowRate else autosizedRatedWaterFlowRate end end def maxCoolingCapacityAutosized if ratedTotalCoolingCapacity.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 maxWaterFlowRateAutosized if ratedWaterFlowRate.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 << [ratedCoolingCoefficientofPerformance, 'Rated Cooling COP'] return effs end end
Version data entries
2 entries across 2 versions & 1 rubygems