Sha256: 91e5eca7ee0a71bc8803bd54965d9977c2a2ea95966672d12c67382244202e46

Contents?: true

Size: 894 Bytes

Versions: 5

Compression:

Stored size: 894 Bytes

Contents

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

class OpenStudio::Model::HeaderedPumpsVariableSpeed
  def maxWaterFlowRate
    if totalRatedFlowRate.is_initialized
      totalRatedFlowRate
    else
      autosizedTotalRatedFlowRate
    end
  end

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

  def performanceCharacteristics
    effs = []
    effs << [ratedPumpHead, 'Rated Pump Head']
    effs << [motorEfficiency, 'Motor Efficiency']
    return effs
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
openstudio-common-measures-0.11.1 lib/measures/openstudio_results/resources/Siz.HeaderedPumpsVariableSpeed.rb
openstudio-common-measures-0.11.0 lib/measures/openstudio_results/resources/Siz.HeaderedPumpsVariableSpeed.rb
openstudio-common-measures-0.10.0 lib/measures/openstudio_results/resources/Siz.HeaderedPumpsVariableSpeed.rb
openstudio-common-measures-0.9.0 lib/measures/openstudio_results/resources/Siz.HeaderedPumpsVariableSpeed.rb
openstudio-common-measures-0.8.0 lib/measures/openstudio_results/resources/Siz.HeaderedPumpsVariableSpeed.rb