Class: OpenStudio::Model::ThermalStorageChilledWaterStratified

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

Overview


OpenStudio(R), Copyright (c) Alliance for Sustainable Energy, LLC. See also https://openstudio.net/license


Instance Method Summary collapse

Instance Method Details

#maxWaterFlowRate ⇒ Object



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

def maxWaterFlowRate
  if useSideDesignFlowRate.is_initialized
    useSideDesignFlowRate
  else
    autosizedUseSideDesignFlowRate
  end
end

#maxWaterFlowRateAutosized ⇒ Object



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

def maxWaterFlowRateAutosized
  if useSideDesignFlowRate.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



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

def performanceCharacteristics
  effs = []
  effs << [useSideHeatTransferEffectiveness, 'Use Side Heat Transfer Effectiveness']
  effs << [sourceSideHeatTransferEffectiveness, 'Source Side Heat Transfer Effectiveness']
  return effs
end