Sha256: de8a1a45efe41f49b865c69862da22f8eaae9d9b6fbb828b2471f9dde758b685
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::AirTerminalSingleDuctConstantVolumeReheat 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