Sha256: 18c86a16e0b9207fd53dbb9a11b04e114177f5e0b64f5f44dba0e72aa97f43a5

Contents?: true

Size: 755 Bytes

Versions: 21

Compression:

Stored size: 755 Bytes

Contents

class CBES
  # @!group Model

  # Determine which climate zone to use.
  # Uses the most specific climate zone set.
  def model_get_climate_zone_set_from_list(model, possible_climate_zone_sets)
    climate_zone_set = possible_climate_zone_sets.sort.last
    return climate_zone_set
  end

  # Determines how ventilation for the standard is specified.
  # When 'Sum', all min OA flow rates are added up.  Commonly used by 90.1.
  # When 'Maximum', only the biggest OA flow rate.  Used by T24.
  #
  # @param model [OpenStudio::Model::Model] the model
  # @return [String] the ventilation method, either Sum or Maximum
  def model_ventilation_method(model)
    ventilation_method = 'Maximum'
    return ventilation_method
  end
end


Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
openstudio-standards-0.2.3 lib/openstudio-standards/standards/cbes/cbes.Model.rb