Class: OpenStudio::Model::ChillerAbsorption
- Inherits:
-
Object
- Object
- OpenStudio::Model::ChillerAbsorption
- Defined in:
- lib/measures/openstudio_results/resources/Siz.ChillerAbsorption.rb
Overview
******************************************************************************* OpenStudio®, Copyright © Alliance for Sustainable Energy, LLC. See also openstudio.net/license *******************************************************************************
Instance Method Summary collapse
- #maxCoolingCapacity ⇒ Object
- #maxCoolingCapacityAutosized ⇒ Object
- #maxWaterFlowRate ⇒ Object
- #maxWaterFlowRateAutosized ⇒ Object
Instance Method Details
#maxCoolingCapacity ⇒ Object
7 8 9 10 11 12 13 |
# File 'lib/measures/openstudio_results/resources/Siz.ChillerAbsorption.rb', line 7 def maxCoolingCapacity if nominalCapacity.is_initialized nominalCapacity else autosizedNominalCapacity end end |
#maxCoolingCapacityAutosized ⇒ Object
23 24 25 26 27 28 29 30 |
# File 'lib/measures/openstudio_results/resources/Siz.ChillerAbsorption.rb', line 23 def maxCoolingCapacityAutosized if nominalCapacity.is_initialized # Not autosized if hard size field value present return OpenStudio::OptionalBool.new(false) else return OpenStudio::OptionalBool.new(true) end end |
#maxWaterFlowRate ⇒ Object
15 16 17 18 19 20 21 |
# File 'lib/measures/openstudio_results/resources/Siz.ChillerAbsorption.rb', line 15 def maxWaterFlowRate if designChilledWaterFlowRate.is_initialized designChilledWaterFlowRate else autosizedDesignChilledWaterFlowRate end end |
#maxWaterFlowRateAutosized ⇒ Object
32 33 34 35 36 37 38 39 |
# File 'lib/measures/openstudio_results/resources/Siz.ChillerAbsorption.rb', line 32 def maxWaterFlowRateAutosized if designChilledWaterFlowRate.is_initialized # Not autosized if hard size field value present return OpenStudio::OptionalBool.new(false) else return OpenStudio::OptionalBool.new(true) end end |