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