PDA

View Full Version : Ozone programming for AC3


jmaneyapanda
12/21/2009, 07:49 PM
Ive hit a little snag with my programming for my ozone. Essentially, I would like it to run for a period of the day (lets say 11 PM to 5 AM), and also be off and on at certain setpoints. Whats in my programming is this:

If Time > 23:00 then Ozo ON
If Time > 05:00 then Ozo OFF
If ORP < 420 then Ozo ON
If ORP > 425 then Ozo OFF
If ORP < 125 then Ozo OFF
If ORP > 150 then Ozo ON

The lastr apir of commands is when I dose Prodibio, Ive found that the ORP dives, but I dont wnat the ozone to oxidize the organic "goodies".

My problem, is that with the above programming, the ozone stays on all the time. Any ideas?

Mako
12/21/2009, 09:28 PM
Remove the last two statements and put your Ozo on one of the feed timers.

If you walk through your code top to bottom the last statement will pretty much be true all the time and that is to turn your Ozo ON if ORP > 150

jmaneyapanda
12/22/2009, 07:27 AM
Thanks Chuck. Questions along with that then. Can I run two feed timers at the same time (IE- feed A and feed B?) Because I use my feed A at this time for the sump return and skimmer, and wouldnt want them off as along as the ozone.

kenargo
12/22/2009, 10:45 AM
Thanks Chuck. Questions along with that then. Can I run two feed timers at the same time (IE- feed A and feed B?) Because I use my feed A at this time for the sump return and skimmer, and wouldnt want them off as along as the ozone.

You cannot run > 1 feed timer at the same time but an outlet can have statements for 1 or more feed timers.

jmaneyapanda
12/22/2009, 11:36 AM
You cannot run > 1 feed timer at the same time but an outlet can have statements for 1 or more feed timers.

I dont know if this would help me. Lets say (hypothetically), I have outlet A01 as return, A02 as skimmer, and A03 as ozone. If, after I add prodibio, I want the skimmer and return off for 30 minutes, and the ozone off for 240 minutes, how do I do this?

RussM
12/22/2009, 12:29 PM
Assuming that the Feed Interval is set at the default of 10 minutes,

If FeedA 020 Then RET OFF
If FeedA 020 Then SKM OFF
If FeedA 230 Then OZN OFF

jmaneyapanda
12/22/2009, 02:41 PM
Thanks. RC rocks because of help like this.