Sha256: fc063235b68629209b3ad10b194469347e1b4c8e9b6014681bdc03d27f170887

Contents?: true

Size: 709 Bytes

Versions: 12

Compression:

Stored size: 709 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] DEER 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

12 entries across 12 versions & 1 rubygems

Version Path
openstudio-standards-0.4.0 lib/openstudio-standards/prototypes/deer/deer.Model.rb
openstudio-standards-0.3.1.rc2 lib/openstudio-standards/prototypes/deer/deer.Model.rb
openstudio-standards-0.3.1.rc1 lib/openstudio-standards/prototypes/deer/deer.Model.rb
openstudio-standards-0.3.0 lib/openstudio-standards/prototypes/deer/deer.Model.rb
openstudio-standards-0.2.17.rc2 lib/openstudio-standards/prototypes/deer/deer.Model.rb
openstudio-standards-0.2.17.rc1 lib/openstudio-standards/prototypes/deer/deer.Model.rb
openstudio-standards-0.2.16 lib/openstudio-standards/prototypes/deer/deer.Model.rb
openstudio-standards-0.2.16.rc2 lib/openstudio-standards/prototypes/deer/deer.Model.rb
openstudio-standards-0.2.16.rc1 lib/openstudio-standards/prototypes/deer/deer.Model.rb
openstudio-standards-0.2.15 lib/openstudio-standards/prototypes/deer/deer.Model.rb
openstudio-standards-0.2.15.pre.rc2 lib/openstudio-standards/prototypes/deer/deer.Model.rb
openstudio-standards-0.2.15.pre.rc1 lib/openstudio-standards/prototypes/deer/deer.Model.rb