Revision history [back]
To edit the default values, you should be able to change them in OpenStudio's hvac_library.osm
file.
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.
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 simply type it into the text box.hvac_library.osm
file.