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