Class: OpenStudio::Model::ZoneHVACLowTempRadiantVarFlow
- Inherits:
-
Object
- Object
- OpenStudio::Model::ZoneHVACLowTempRadiantVarFlow
- Defined in:
- lib/measures/openstudio_results/resources/Siz.ZoneHVACLowTempRadiantVarFlow.rb
Overview
******************************************************************************* OpenStudio®, Copyright © Alliance for Sustainable Energy, LLC. See also openstudio.net/license *******************************************************************************
Instance Method Summary collapse
Instance Method Details
#maxWaterFlowRate ⇒ Object
7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
# File 'lib/measures/openstudio_results/resources/Siz.ZoneHVACLowTempRadiantVarFlow.rb', line 7 def maxWaterFlowRate vals = [] if coolingCoil.is_initialized && coolingCoil.get.maxWaterFlowRate.is_initialized vals << coolingCoil.get.maxWaterFlowRate.get end if heatingCoil.is_initialized && heatingCoil.get.maxWaterFlowRate.is_initialized vals << heatingCoil.get.maxWaterFlowRate.get end if vals.size.zero? OpenStudio::OptionalDouble.new else OpenStudio::OptionalDouble.new(vals.max) end end |
#maxWaterFlowRateAutosized ⇒ Object
22 23 24 25 26 27 28 29 30 |
# File 'lib/measures/openstudio_results/resources/Siz.ZoneHVACLowTempRadiantVarFlow.rb', line 22 def maxWaterFlowRateAutosized if coolingCoil.is_initialized && coolingCoil.get.maxWaterFlowRate.is_initialized return OpenStudio::OptionalBool.new(false) elsif heatingCoil.is_initialized && heatingCoil.get.maxWaterFlowRate.is_initialized return OpenStudio::OptionalBool.new(false) else return OpenStudio::OptionalBool.new(true) end end |
#performanceCharacteristics ⇒ Object
32 33 34 35 36 37 38 39 40 41 |
# File 'lib/measures/openstudio_results/resources/Siz.ZoneHVACLowTempRadiantVarFlow.rb', line 32 def performanceCharacteristics effs = [] if coolingCoil.is_initialized effs += coolingCoil.get.performanceCharacteristics end if heatingCoil.is_initialized effs += heatingCoil.get.performanceCharacteristics end return effs end |