Sha256: 593fad32945f67056abd884d3996f0b954443818670b015fca54b4b11bf2e02d
Contents?: true
Size: 1.25 KB
Versions: 4
Compression:
Stored size: 1.25 KB
Contents
# ******************************************************************************* # OpenStudio(R), Copyright (c) Alliance for Sustainable Energy, LLC. # See also https://openstudio.net/license # ******************************************************************************* class OpenStudio::Model::CoilHeatingDXMultiSpeedStageData def maxHeatingCapacity if grossRatedHeatingCapacity.is_initialized grossRatedHeatingCapacity else autosizedGrossRatedHeatingCapacity end end def maxAirFlowRate if ratedAirFlowRate.is_initialized ratedAirFlowRate else autosizedRatedAirFlowRate end end def maxHeatingCapacityAutosized if grossRatedHeatingCapacity.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 << [grossRatedHeatingCOP, 'Gross Rated Heating COP'] return effs end end
Version data entries
4 entries across 4 versions & 1 rubygems