Sha256: 4c1c1ad40d50cbc918980ec199e1bb58022e3bde413e66064ce6afd186ea4b80
Contents?: true
Size: 766 Bytes
Versions: 4
Compression:
Stored size: 766 Bytes
Contents
# ******************************************************************************* # OpenStudio(R), Copyright (c) Alliance for Sustainable Energy, LLC. # See also https://openstudio.net/license # ******************************************************************************* class OpenStudio::Model::HeatExchangerFluidToFluid def maxWaterFlowRate if loopDemandSideDesignFlowRate.is_initialized loopDemandSideDesignFlowRate else autosizedLoopDemandSideDesignFlowRate end end def maxWaterFlowRateAutosized if loopDemandSideDesignFlowRate.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
4 entries across 4 versions & 1 rubygems