Sha256: 67a0fa2114cc1cbdd1a1cac197061e4e63a8ab5b7373ea4190da1fa20842ac7a
Contents?: true
Size: 847 Bytes
Versions: 4
Compression:
Stored size: 847 Bytes
Contents
# ******************************************************************************* # OpenStudio(R), Copyright (c) Alliance for Sustainable Energy, LLC. # See also https://openstudio.net/license # ******************************************************************************* class OpenStudio::Model::ZoneHVACEnergyRecoveryVentilator def maxAirFlowRate if supplyAirFlowRate.is_initialized supplyAirFlowRate else autosizedSupplyAirFlowRate end end def maxAirFlowRateAutosized if supplyAirFlowRate.is_initialized # Not autosized if hard size field value present return OpenStudio::OptionalBool.new(false) else return OpenStudio::OptionalBool.new(true) end end def performanceCharacteristics effs = [] effs += supplyAirFan.performanceCharacteristics return effs end end
Version data entries
4 entries across 4 versions & 1 rubygems