1

How to change default values for Setpoint Manager Coldest [closed]

How do I change the default values Setpoint:Manager:Coldest ? I want to change the minimum setpoint temperature from a default of 68F to another default value.

image description

Saroop's avatar
85
Saroop
asked 2018-06-21 12:39:58 -0500, updated 2018-06-21 15:18:04 -0500
edit flag offensive 0 remove flag reopen merge delete

Closed for the following reason "the question is answered, right answer was accepted" by Saroop 2018-06-21 15:29:26 -0500

Comments

add a comment see more comments

1 Answer

2

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
MatthewSteen's avatar
10.1k
MatthewSteen
answered 2018-06-21 14:51:48 -0500, updated 2018-06-21 15:33:22 -0500
edit flag offensive 0 remove flag delete link

Comments

I was wondering if there was a way to change this default value so that the next time I added this setpoint it would use 80F as the default value instead of 68F.

Saroop's avatar Saroop (2018-06-21 15:17:46 -0500) edit

My mistake, see update above.

MatthewSteen's avatar MatthewSteen (2018-06-21 15:28:36 -0500) edit
add a comment see more comments