Sha256: 5811a49c3f3b88b6521c47d40957a6415ba84ac14a8596cc358de4b58c156131

Contents?: true

Size: 708 Bytes

Versions: 3

Compression:

Stored size: 708 Bytes

Contents

class DEER
  # @!group Model

  # Determine the prototypical economizer type for the model.
  # Based on the MASControl rules, it appears that
  # only FixedDryBulb economizers are used.
  #
  # @param model [OpenStudio::Model::Model] the model
  # @param climate_zone [String] the climate zone
  # @return [String] the economizer type.  Possible values are:
  # 'NoEconomizer'
  # 'FixedDryBulb'
  # 'FixedEnthalpy'
  # 'DifferentialDryBulb'
  # 'DifferentialEnthalpy'
  # 'FixedDewPointAndDryBulb'
  # 'ElectronicEnthalpy'
  # 'DifferentialDryBulbAndEnthalpy'
  def model_economizer_type(model, climate_zone)
    economizer_type = 'FixedDryBulb'
    return economizer_type
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
openstudio-standards-0.2.14 lib/openstudio-standards/prototypes/deer/deer.Model.rb
openstudio-standards-0.2.13 lib/openstudio-standards/prototypes/deer/deer.Model.rb
openstudio-standards-0.2.13.rc3 lib/openstudio-standards/prototypes/deer/deer.Model.rb