Sha256: 81d57e499e645e48df42a5c555473420db9628874571dd8b44188ae004aa9b17
Contents?: true
Size: 1.22 KB
Versions: 3
Compression:
Stored size: 1.22 KB
Contents
# ******************************************************************************* # OpenStudio(R), Copyright (c) Alliance for Sustainable Energy, LLC. # See also https://openstudio.net/license # ******************************************************************************* class OpenStudio::Model::CoilHeatingDXSingleSpeed def maxHeatingCapacity if ratedTotalHeatingCapacity.is_initialized ratedTotalHeatingCapacity else autosizedRatedTotalHeatingCapacity end end def maxAirFlowRate if ratedAirFlowRate.is_initialized ratedAirFlowRate else autosizedRatedAirFlowRate end end def maxHeatingCapacityAutosized if ratedTotalHeatingCapacity.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 << [ratedCOP, 'Rated COP'] return effs end end
Version data entries
3 entries across 3 versions & 1 rubygems