Sha256: 57270ba913c767f877a685bcad99027298b9cf926f231996b11b31bec89454aa
Contents?: true
Size: 1.11 KB
Versions: 4
Compression:
Stored size: 1.11 KB
Contents
# ******************************************************************************* # OpenStudio(R), Copyright (c) Alliance for Sustainable Energy, LLC. # See also https://openstudio.net/license # ******************************************************************************* class OpenStudio::Model::AirTerminalSingleDuctVAVReheat 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