Thank you. This is precisely the kind of information I was looking for.
If you don't mind me asking, what ATO are you using? Or is it simply a float and pump connected to the Apex breakout box?
I have been looking at using the Osmolator, but the issue you described with the AWC triggering the ATO has been a hurdle.
My plan at this point is to use a reservoir, fed by my RODI system, and using the Tunze water controller to avoid TDS creep by filling it only when it is low. Then an Osmolator to move the water from the reservoir to the sump.
TBH I have been going around in circles mentally on how best to automate as much as possible without creating conflicts in programming that will fail to accomplish what I want to do.
Do you run the Renew's tubes into and out of the return chamber? If you were to run them in the skimmer chamber would that help with the issue of having the AWC trigger the ATO, since the sensor for the ATO would most likely be in the return pump chamber?
Just trying to work this all out mentally, prior to spending money.
My Apex handles my ATO duties which is the way I setup any ATO when a controller is used. I use redundant float switches connected to my Apex and a Stenner Peristaltic pump that the Apex controls.
Mine goes in and out of the return section though my float switches are in my skimmer section of my main sump. If you take a gallon out of your skimmer section, the water level will still drop in the return section.
That said, how much water does a gallon raise or lower your sump? You will be adding 1 gallon of water and removing 1 gallon of water regardless of what the ATO does. if the ATO adds water due to the Renew, it really won't impact things in the long run because the gallon isn't likely to impact your salinity much and evaporation will bring the levels back to normal anyway. That said, if your Apex is handling the ATO, it's really simple. Just create a virtual outlet for the ATO float and use a min time statement of 3 or more minutes so that the ATO is only triggered when the switch is in that position for 3 minutes straight.
This is my "Add Water" virtual outlet programming:
If Sw1 OPEN Then OFF
If Sw1 CLOSED Then ON
Min Time 003:00 Then OFF
The Min Time Line means that Sw1 has to be on an open state for 3 consecutive minutes before virtual outlet Add Water turns on to trigger my ATO pump. This allows the Renew to change the water without impacting my ATO while also insuring that my ATO isn't triggered by a wave in the sump or some turbulence.
This is my Top Off Pump outlet programming.
Fallback OFF
If Outlet AddWater = ON Then ON
Defer 003:00 Then ON
If Outlet AddWater = OFF Then OFF
If Outlet Return = OFF Then OFF
If Outlet SumpFull = ON Then OFF
If Outlet SalinityLow = ON Then OFF
If Outlet SumpTooFull = ON Then OFF
If Outlet BoB_Unplug = ON Then OFF
Min Time 015:00 Then ON
I have a number of fail safes in there to prevent the ATO pump from turning on under certain circumstances. I also have my ATO pump set to run for 15 minutes which is longer than it needs to run. I do this because my sump and refugium total about 180 gallons of capacity and the large surface area means that an extra gallon or two of water won't impact my level noticeably but will insure my ATO pump turns on less frequently.