Class: OpenStudio::Model::CoilCoolingDXVariableSpeed

Inherits:
Object
  • Object
show all
Defined in:
lib/measures/openstudio_results/resources/Siz.CoilCoolingDXVariableSpeed.rb

Overview

******************************************************************************* OpenStudio®, Copyright © Alliance for Sustainable Energy, LLC. See also openstudio.net/license *******************************************************************************

Instance Method Summary collapse

Instance Method Details

#maxAirFlowRateObject



15
16
17
18
19
20
21
# File 'lib/measures/openstudio_results/resources/Siz.CoilCoolingDXVariableSpeed.rb', line 15

def maxAirFlowRate
  if ratedAirFlowRateAtSelectedNominalSpeedLevel.is_initialized
    ratedAirFlowRateAtSelectedNominalSpeedLevel
  else
    autosizedRatedAirFlowRateAtSelectedNominalSpeedLevel
  end
end

#maxAirFlowRateAutosizedObject



32
33
34
35
36
37
38
39
# File 'lib/measures/openstudio_results/resources/Siz.CoilCoolingDXVariableSpeed.rb', line 32

def maxAirFlowRateAutosized
  if ratedAirFlowRateAtSelectedNominalSpeedLevel.is_initialized
    # Not autosized if hard size field value present
    return OpenStudio::OptionalBool.new(false)
  else
    return OpenStudio::OptionalBool.new(true)
  end
end

#maxCoolingCapacityObject



7
8
9
10
11
12
13
# File 'lib/measures/openstudio_results/resources/Siz.CoilCoolingDXVariableSpeed.rb', line 7

def maxCoolingCapacity
  if grossRatedTotalCoolingCapacityAtSelectedNominalSpeedLevel.is_initialized
    grossRatedTotalCoolingCapacityAtSelectedNominalSpeedLevel
  else
    autosizedGrossRatedTotalCoolingCapacityAtSelectedNominalSpeedLevel
  end
end

#maxCoolingCapacityAutosizedObject



23
24
25
26
27
28
29
30
# File 'lib/measures/openstudio_results/resources/Siz.CoilCoolingDXVariableSpeed.rb', line 23

def maxCoolingCapacityAutosized
  if grossRatedTotalCoolingCapacityAtSelectedNominalSpeedLevel.is_initialized
    # Not autosized if hard size field value present
    return OpenStudio::OptionalBool.new(false)
  else
    return OpenStudio::OptionalBool.new(true)
  end
end