Sha256: 88e3dde21ef2ba3521a9e7e5d672ddfbb5b0daca11a2013ca7ab3ad37919874a
Contents?: true
Size: 849 Bytes
Versions: 4
Compression:
Stored size: 849 Bytes
Contents
# ******************************************************************************* # OpenStudio(R), Copyright (c) Alliance for Sustainable Energy, LLC. # See also https://openstudio.net/license # ******************************************************************************* class OpenStudio::Model::WaterHeaterHeatPump def maxWaterFlowRate if condenserWaterFlowRate.is_initialized condenserWaterFlowRate else autosizedCondenserWaterFlowRate end end def maxWaterFlowRateAutosized if condenserWaterFlowRate.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 += fan.performanceCharacteristics return effs end end
Version data entries
4 entries across 4 versions & 1 rubygems