Sha256: 73cfe6e8e61e62cef44905e0de610854e6607a7d926468134b43fb057f2330ac
Contents?: true
Size: 1.64 KB
Versions: 2
Compression:
Stored size: 1.64 KB
Contents
# ******************************************************************************* # OpenStudio(R), Copyright (c) Alliance for Sustainable Energy, LLC. # See also https://openstudio.net/license # ******************************************************************************* class OpenStudio::Model::CoilHeatingWaterToAirHeatPumpEquationFit def maxHeatingCapacity if ratedHeatingCapacity.is_initialized ratedHeatingCapacity else autosizedRatedHeatingCapacity 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 maxHeatingCapacityAutosized if ratedHeatingCapacity.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 << [ratedHeatingCoefficientofPerformance, 'Rated Heating COP'] return effs end end
Version data entries
2 entries across 2 versions & 1 rubygems