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