Class: OpenStudio::Model::AirTerminalSingleDuctConstantVolumeReheat
- Inherits:
-
Object
- Object
- OpenStudio::Model::AirTerminalSingleDuctConstantVolumeReheat
- Defined in:
- lib/measures/openstudio_results/resources/Siz.AirTerminalSingleDuctConstantVolumeReheat.rb
Overview
******************************************************************************* OpenStudio®, Copyright © Alliance for Sustainable Energy, LLC. See also openstudio.net/license *******************************************************************************
Instance Method Summary collapse
- #maxAirFlowRate ⇒ Object
- #maxAirFlowRateAutosized ⇒ Object
- #maxHeatingCapacity ⇒ Object
- #maxHeatingCapacityAutosized ⇒ Object
- #maxWaterFlowRate ⇒ Object
- #maxWaterFlowRateAutosized ⇒ Object
- #performanceCharacteristics ⇒ Object
Instance Method Details
#maxAirFlowRate ⇒ Object
11 12 13 14 15 16 17 |
# File 'lib/measures/openstudio_results/resources/Siz.AirTerminalSingleDuctConstantVolumeReheat.rb', line 11 def maxAirFlowRate if maximumAirFlowRate.is_initialized maximumAirFlowRate else autosizedMaximumAirFlowRate end end |
#maxAirFlowRateAutosized ⇒ Object
27 28 29 30 31 32 33 34 |
# File 'lib/measures/openstudio_results/resources/Siz.AirTerminalSingleDuctConstantVolumeReheat.rb', line 27 def maxAirFlowRateAutosized if maximumAirFlowRate.is_initialized # Not autosized if hard size field value present return OpenStudio::OptionalBool.new(false) else return OpenStudio::OptionalBool.new(true) end end |
#maxHeatingCapacity ⇒ Object
7 8 9 |
# File 'lib/measures/openstudio_results/resources/Siz.AirTerminalSingleDuctConstantVolumeReheat.rb', line 7 def maxHeatingCapacity reheatCoil.maxHeatingCapacity end |
#maxHeatingCapacityAutosized ⇒ Object
23 24 25 |
# File 'lib/measures/openstudio_results/resources/Siz.AirTerminalSingleDuctConstantVolumeReheat.rb', line 23 def maxHeatingCapacityAutosized reheatCoil.maxHeatingCapacityAutosized end |
#maxWaterFlowRate ⇒ Object
19 20 21 |
# File 'lib/measures/openstudio_results/resources/Siz.AirTerminalSingleDuctConstantVolumeReheat.rb', line 19 def maxWaterFlowRate reheatCoil.maxWaterFlowRate end |
#maxWaterFlowRateAutosized ⇒ Object
36 37 38 |
# File 'lib/measures/openstudio_results/resources/Siz.AirTerminalSingleDuctConstantVolumeReheat.rb', line 36 def maxWaterFlowRateAutosized reheatCoil.maxWaterFlowRateAutosized end |
#performanceCharacteristics ⇒ Object
40 41 42 43 44 |
# File 'lib/measures/openstudio_results/resources/Siz.AirTerminalSingleDuctConstantVolumeReheat.rb', line 40 def performanceCharacteristics effs = [] effs += reheatCoil.performanceCharacteristics return effs end |