Can you explain why you turn on MAKE_NSW_RS to on for a seconds? What does that few seconds accomplish before switching it o auto?
MAKE_NSW and MAKE_NSW_RST interact with each other and it gets a little confusing (ok, maybe a lot confusing)
MAKE_NSW is set to on by default, which means that it is in making saltwater mode, so either the reservoir is refilling or it’s waiting for salt to be added. As we discussed above. This also turns off the AWC. Here is the MAKE_NSW program:
MAKE_NSW:
Set ON
If Output Make_NSW_Rst = ON Then OFF
If NSW_L CLOSED Then ON
The second line will turn MAKE_NSW off if MAKE_NSW_RST is turned on. When MAKE_NSW is off then it is no longer in the making saltwater mode and it knows that there is saltwater in the reservoir, so the AWC will be turned on and run.
The third line will turn MAKE_NSW back on automatically when the low level float switch in the reservoir is triggered. This is how it knows that it is out of saltwater and it starts the whole process over again.
Separately, the program for RODI_NSW will automatically refill the reservoir when the low level switch is triggered.
Now, here is the program for MAKE_NSW_RST:
MAKE_NSW_RST:
Set ON
If Output Make_NSW = ON Then OFF
By default it is on which, as we discussed above, causes MAKE_NSW to be off (think of that as the making saltwater mode being off).
However, the second line here will turn MAKE_NSW_RST off when MAKE_NSW is on. So when it is in the making saltwater mode then MAKE_NSW_RST goes off.
At this point they are locked in this state. Once MAKE_NSW gets turned on the only way for it to turn off is for MAKE_NSW_RST to be on. However, the only way for MAKE_NSW_RST to automatically be on is if MAKE_NSW is off.
The reason they need to get into this locked state is to ensure that they can only be manually reset. We don’t want the AWC to start again while the reservoir is refilling or before salt has been added to the reservoir.
So, the way to get them out of this locked state and let the AWC start again is to manually turn MAKE_NSW_RST on. Once that happens MAKE_NSW will turn off (because of the second line in that program) and the system will be out of making saltwater mode. At this point you can switch MAKE_NSW_RST back to auto. Since MAKE_NSW is now off, the second line in the MAKE_NSW_RST program wont trigger, and MAKE_NSW_RST will stay on.
They will now be locked in this state until the low level float switch triggers again and starts the whole process over.
Hopefully that made sense and didn’t make your brain hurt too much

. It’s definitely rather confusing because of the way they interact. Let me know if you still have other questions.