Sha256: c2529e0b3184b7512cfb8d9258e3ad66a06d6ca3f608b48295ef47f95a063ea7
Contents?: true
Size: 1.1 KB
Versions: 5
Compression:
Stored size: 1.1 KB
Contents
# ******************************************************************************* # OpenStudio(R), Copyright (c) Alliance for Sustainable Energy, LLC. # See also https://openstudio.net/license # ******************************************************************************* class OpenStudio::Model::EvaporativeFluidCoolerSingleSpeed def maxAirFlowRate if designAirFlowRate.is_initialized designAirFlowRate else autosizedDesignAirFlowRate end end def maxWaterFlowRate if designWaterFlowRate.is_initialized designWaterFlowRate else autosizedDesignWaterFlowRate end end def maxAirFlowRateAutosized if designAirFlowRate.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 if designWaterFlowRate.is_initialized # Not autosized if hard size field value present return OpenStudio::OptionalBool.new(false) else return OpenStudio::OptionalBool.new(true) end end end
Version data entries
5 entries across 5 versions & 1 rubygems