1

Setpoint Manager: setpoint node conflicts with another setpoint manager.

I have implemented setpoint manager similar to Example files 5ZoneVAV-ChilledWaterStorage-Mixed.idf but I am getting a warning of conflicting nodes used in two setpoint managers as below. The setpoint Managers are 1. OA Mixed Air Temperature and 2. SEtpointManager:OutdoorAirReset. As the conflicting node is same for a VAV reheat system. How can I fix this or if not fixed what implications it has on the calculations?

** Warning ** SetpointManager:Scheduled="SETPOINT MANAGER SCHEDULED 1"
**   ~~~   ** ...setpoint node conflicts with another setpoint manager.
**   ~~~   ** ...conflicting setpoint manager = SetpointManager:OutdoorAirReset:"AHU1 OUTLET SETPOINT"
**   ~~~   ** ...conflicting node name = AIR OUTLET NODE1
**   ~~~   ** ...control type variable = Temperature

IDF file - http://pastebin.com/H7V2AHRz

rkbest's avatar
1.4k
rkbest
asked 2016-05-16 16:02:11 -0500, updated 2016-05-16 16:10:05 -0500
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

1 Answer

3

Setpoint managers are simulated in order of occrence as found in the input file and by set point manager type as coded within the program. The last SPM to be simulated will overwrite the previous node set point temperature.

If you are using the mixed air set point managers to adjust the temperature set point based on fan heat and then write that value to a different node then the solution is to move one of those SPM values to any other node in the simulation (any node that is not used to store a temperature set point).

rraustad's avatar
13.8k
rraustad
answered 2016-05-16 17:48:42 -0500, updated 2016-05-16 22:28:08 -0500
edit flag offensive 0 remove flag delete link

Comments

Thanks @rraustad , Yes I am trying to adjust the setpoint based on fan heat. Can you guide me how to do that or direct me to an example.

rkbest's avatar rkbest (2016-05-16 21:01:17 -0500) edit
1

Put a set point on a node, any node not currently used to hold a temperature set point. Then use the mixed air SPM to reference that node set point, also entering fan inlet/outlet nodes, and place the fan heat adjusted temperature set point on the node where you need it. You can't use 2 different reference nodes (i.e., both a sceduled AND OAReset SPM) to use with the mixed air SPM.

rraustad's avatar rraustad (2016-05-16 22:24:07 -0500) edit

I removed the Schedules Reference node and now only using OAReset SPM and i get no warning. Thanks

rkbest's avatar rkbest (2016-05-17 11:26:43 -0500) edit
add a comment see more comments