Revision history  [back]

To edit the default values, you should be able to change them in OpenStudio's hvac_library.osm file.

image description


Or using the Ruby API to change all the SetpointManagerColdest objects in a model...

min_setpt_temp_ip = 80
min_setpt_temp_si = OpenStudio.convert(min_setpt_temp_ip, 'F', 'C').get

model.getSetpointManagerColdests.each do |spm|
  spm.setMinimumSetpointTemperature(min_setpt_temp_si)
end

To edit the default values, you should be able to change them in OpenStudio's hvac_library.osm file.

image description


Or using the Ruby API to change all the SetpointManagerColdest objects in a model...

min_setpt_temp_ip = 80
min_setpt_temp_si = OpenStudio.convert(min_setpt_temp_ip, 'F', 'C').get

model.getSetpointManagerColdests.each do |spm|
  spm.setMinimumSetpointTemperature(min_setpt_temp_si)
end

To edit the default values, you You should be able to change them in OpenStudio's hvac_library.osm file.simply type it into the text box.

image description