3

Setpoint manager minimum humidity

I want to add setpoint manager minimum humidity to my HVAC loop, but when I click on that in the library, nothing appears. That problem doesn't happen with other setpoints. It seems like setpoint manager minimum humidity is not available. However, it is essential for my loop, otherwise fatal error appears.

Maciej Dluzen's avatar
41
Maciej Dluzen
asked 2016-09-05 04:17:42 -0500
MatthewSteen's avatar
10.1k
MatthewSteen
updated 2016-09-06 15:02:26 -0500
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

1 Answer

2

They may have forgotten to add the object to the library or not want you to use it yet. If you desperately need it you drop these chunks into a custom measure. It will add a SetpointManagerSingleZoneHumidityMinimum to a node that you specify.

Arguments

# the name of the node to add the setpoint manager to
nodeName = OpenStudio::Ruleset::OSArgument.makeStringArgument("nodeName", true)
nodeName.setDisplayName("Existing Node Name")
nodeName.setDescription("Name of node to add 'Humidity Minimum Setpoint Manager' to.")
args << nodeName

Run

# assign the user input node name to a variable
nodeName = runner.getStringArgumentValue("nodeName", user_arguments)

# grab the node that has the specified name
node = model.getNodeByName(nodeName).get

# create a new setpoint manager and assign it to the desired node
newSetpointManager = OpenStudio::Model::SetpointManagerSingleZoneHumidityMinimum.new(model)
newSetpointManager.addToNode(node)
Adam Hilton's avatar
3.5k
Adam Hilton
answered 2016-09-06 10:04:34 -0500
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments