Class: OpenStudio::Model::ZoneHVACIdealLoadsAirSystem
- Inherits:
-
Object
- Object
- OpenStudio::Model::ZoneHVACIdealLoadsAirSystem
- Defined in:
- lib/measures/openstudio_results/resources/Siz.ZoneHVACIdealLoadsAirSystem.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
- #maxHeatingCapacity ⇒ Object
- #maxHeatingCapacityAutosized ⇒ Object
- #performanceCharacteristics ⇒ Object
Instance Method Details
#maxAirFlowRate ⇒ Object
23 24 25 26 27 28 29 |
# File 'lib/measures/openstudio_results/resources/Siz.ZoneHVACIdealLoadsAirSystem.rb', line 23 def maxAirFlowRate if maximumHeatingAirFlowRate.is_initialized maximumHeatingAirFlowRate else autosizedMaximumHeatingAirFlowRate end end |
#maxAirFlowRateAutosized ⇒ Object
49 50 51 52 53 54 55 56 |
# File 'lib/measures/openstudio_results/resources/Siz.ZoneHVACIdealLoadsAirSystem.rb', line 49 def maxAirFlowRateAutosized if maximumHeatingAirFlowRate.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
15 16 17 18 19 20 21 |
# File 'lib/measures/openstudio_results/resources/Siz.ZoneHVACIdealLoadsAirSystem.rb', line 15 def maxCoolingCapacity if maximumTotalCoolingCapacity.is_initialized maximumTotalCoolingCapacity else autosizedMaximumTotalCoolingCapacity end end |
#maxCoolingCapacityAutosized ⇒ Object
40 41 42 43 44 45 46 47 |
# File 'lib/measures/openstudio_results/resources/Siz.ZoneHVACIdealLoadsAirSystem.rb', line 40 def maxCoolingCapacityAutosized if maximumTotalCoolingCapacity.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 10 11 12 13 |
# File 'lib/measures/openstudio_results/resources/Siz.ZoneHVACIdealLoadsAirSystem.rb', line 7 def maxHeatingCapacity if maximumSensibleHeatingCapacity.is_initialized maximumSensibleHeatingCapacity else autosizedMaximumSensibleHeatingCapacity end end |
#maxHeatingCapacityAutosized ⇒ Object
31 32 33 34 35 36 37 38 |
# File 'lib/measures/openstudio_results/resources/Siz.ZoneHVACIdealLoadsAirSystem.rb', line 31 def maxHeatingCapacityAutosized if maximumSensibleHeatingCapacity.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
58 59 60 61 62 63 |
# File 'lib/measures/openstudio_results/resources/Siz.ZoneHVACIdealLoadsAirSystem.rb', line 58 def performanceCharacteristics effs = [] effs << [sensibleHeatRecoveryEffectiveness, 'Sensible Heat Recovery Effectiveness'] effs << [latentHeatRecoveryEffectiveness, 'Latent Heat Recovery Effectiveness'] return effs end |