First time here? Check out the Help page!
1 | initial version |
You should be able to simply type it into the text box.
2 | No.2 Revision |
You To edit the default values, you should be able to simply type it into the text box.change them in OpenStudio's hvac_library.osm
file.
3 | No.3 Revision |
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