Method: OpenStudio::Model::PlantComponentTemperatureSource#maxWaterFlowRateAutosized

Defined in:
lib/measures/openstudio_results/resources/Siz.PlantComponentTemperatureSource.rb

#maxWaterFlowRateAutosizedObject



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

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