Class: OpenStudio::Model::CoilCoolingDXTwoSpeed
- Inherits:
-
Object
- Object
- OpenStudio::Model::CoilCoolingDXTwoSpeed
- Defined in:
- lib/measures/openstudio_results/resources/Siz.CoilCoolingDXTwoSpeed.rb
Overview
******************************************************************************* OpenStudio®, Copyright © Alliance for Sustainable Energy, LLC. See also openstudio.net/license *******************************************************************************
Instance Method Summary collapse
- #maxAirFlowRate ⇒ Object
- #maxAirFlowRateAutosized ⇒ Object
- #maxCoolingCapacity ⇒ Object
- #maxCoolingCapacityAutosized ⇒ Object
- #performanceCharacteristics ⇒ Object
Instance Method Details
#maxAirFlowRate ⇒ Object
15 16 17 18 19 20 21 |
# File 'lib/measures/openstudio_results/resources/Siz.CoilCoolingDXTwoSpeed.rb', line 15 def maxAirFlowRate if ratedHighSpeedAirFlowRate.is_initialized ratedHighSpeedAirFlowRate else autosizedRatedHighSpeedAirFlowRate end end |
#maxAirFlowRateAutosized ⇒ Object
32 33 34 35 36 37 38 39 |
# File 'lib/measures/openstudio_results/resources/Siz.CoilCoolingDXTwoSpeed.rb', line 32 def maxAirFlowRateAutosized if ratedHighSpeedAirFlowRate.is_initialized # Not autosized if hard size field value present return OpenStudio::OptionalBool.new(false) else return OpenStudio::OptionalBool.new(true) end end |
#maxCoolingCapacity ⇒ Object
7 8 9 10 11 12 13 |
# File 'lib/measures/openstudio_results/resources/Siz.CoilCoolingDXTwoSpeed.rb', line 7 def maxCoolingCapacity if ratedHighSpeedTotalCoolingCapacity.is_initialized ratedHighSpeedTotalCoolingCapacity else autosizedRatedHighSpeedTotalCoolingCapacity end end |
#maxCoolingCapacityAutosized ⇒ Object
23 24 25 26 27 28 29 30 |
# File 'lib/measures/openstudio_results/resources/Siz.CoilCoolingDXTwoSpeed.rb', line 23 def maxCoolingCapacityAutosized if ratedHighSpeedTotalCoolingCapacity.is_initialized # Not autosized if hard size field value present return OpenStudio::OptionalBool.new(false) else return OpenStudio::OptionalBool.new(true) end end |
#performanceCharacteristics ⇒ Object
41 42 43 44 45 46 47 48 49 |
# File 'lib/measures/openstudio_results/resources/Siz.CoilCoolingDXTwoSpeed.rb', line 41 def performanceCharacteristics effs = [] effs << [ratedHighSpeedCOP, 'Rated High Speed COP'] effs << [ratedLowSpeedCOP, 'Rated Low Speed COP'] if condenserType == 'EvaporativelyCooled' effs << [highSpeedEvaporativeCondenserEffectiveness, 'High Speed Evaporative Condenser Effectiveness'] effs << [lowSpeedEvaporativeCondenserEffectiveness, 'Low Speed Evaporative Condenser Effectiveness'] end end |