Question-and-Answer Resource for the Building Energy Modeling Community
Get started with the Help page
Ask Your Question

Revision history [back]

You should be able to simply type it into the text box.

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.

image description

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