Sha256: 4e3488b08d034541cb1ebe31acd6a87da3ac6c84e6603a967f3a92dd35c6fe34
Contents?: true
Size: 1.12 KB
Versions: 4
Compression:
Stored size: 1.12 KB
Contents
# ******************************************************************************* # OpenStudio(R), Copyright (c) Alliance for Sustainable Energy, LLC. # See also https://openstudio.net/license # ******************************************************************************* class OpenStudio::Model::AirTerminalSingleDuctVAVHeatAndCoolReheat def maxHeatingCapacity reheatCoil.maxHeatingCapacity end def maxAirFlowRate if maximumAirFlowRate.is_initialized maximumAirFlowRate else autosizedMaximumAirFlowRate end end def maxWaterFlowRate reheatCoil.maxWaterFlowRate end def maxHeatingCapacityAutosized reheatCoil.maxHeatingCapacityAutosized end def maxAirFlowRateAutosized if maximumAirFlowRate.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 reheatCoil.maxWaterFlowRateAutosized end def performanceCharacteristics effs = [] effs += reheatCoil.performanceCharacteristics return effs end end
Version data entries
4 entries across 4 versions & 1 rubygems