Sha256: 0914209e28c03a9604220e7af3df17ec3a76fd423ebda844d93649cd3b3cb346
Contents?: true
Size: 1.16 KB
Versions: 5
Compression:
Stored size: 1.16 KB
Contents
# ******************************************************************************* # OpenStudio(R), Copyright (c) Alliance for Sustainable Energy, LLC. # See also https://openstudio.net/license # ******************************************************************************* class OpenStudio::Model::AirTerminalSingleDuctSeriesPIUReheat 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 += fan.performanceCharacteristics effs += reheatCoil.performanceCharacteristics return effs end end
Version data entries
5 entries across 5 versions & 1 rubygems