Reef Central Online Community

Go Back   Reef Central Online Community > Sponsor Forums > Neptune Systems
Blogs FAQ Calendar Mark Forums Read

Notices

User Tag List

Reply
Thread Tools
Unread 06/06/2017, 05:33 PM   #1
Stolireef
Registered Member
 
Stolireef's Avatar
 
Join Date: Mar 2008
Location: Scottsdale AZ
Posts: 3,180
Blog Entries: 5
How to configure FMM to refill ATO Reservoir

I have an FMM and I have attached two optical sensors to it. FM1 is the low water sensor and FM2 is the high sensor.

What I want it to do:
1. When FM1 is open (meaning I think, out of the water) open solenoid and start refilling ATO reservoir.
2. When FM2 is closed (high sensor now under water) close solenoid valve.

When I tried to configure this using Fusion tasks it programmed the FMM as follows:
Fallback OFF
Set OFF
If Swx8_1 OPEN Then ON
If Swx8_2 CLOSED Then OFF
When On > 005:00 Then OFF
Defer 000:10 Then ON
Defer 000:04 Then OFF
Min Time 060:00 Then OFF

This doesn't look right to me. Any help would be appreciated.

Thanks.


__________________
I want to burn twice as bright and half as long. Oh, and a full tank crash is just an excuse for a new build.

Current Tank Info: 125 Rimless Leemar, Apex, Trigger 30 Elite Sump, Vertex 180i Skimmer, 2 X Gen4 Radion XR30W, BM Doser, 2xMP40WES, 2xTunze 6095, Sicce Syncra 4.0.
Stolireef is offline   Reply With Quote
Unread 06/06/2017, 05:37 PM   #2
Stolireef
Registered Member
 
Stolireef's Avatar
 
Join Date: Mar 2008
Location: Scottsdale AZ
Posts: 3,180
Blog Entries: 5
When I tried just using the first four lines of the code, it would open the solenoid for a second or two and then it would close. It doesn't make any sense though since, I think, once the low sensor is open, the solenoid should stay open until the high sensor closes. So what is your resident APEX idiot missing in this equation.


__________________
I want to burn twice as bright and half as long. Oh, and a full tank crash is just an excuse for a new build.

Current Tank Info: 125 Rimless Leemar, Apex, Trigger 30 Elite Sump, Vertex 180i Skimmer, 2 X Gen4 Radion XR30W, BM Doser, 2xMP40WES, 2xTunze 6095, Sicce Syncra 4.0.
Stolireef is offline   Reply With Quote
Unread 06/06/2017, 05:45 PM   #3
scuzy
Registered Member
 
scuzy's Avatar
 
Join Date: Sep 2003
Location: San Jose, CA
Posts: 6,499
if the close and open postition is correct it looks fine to me. unless 'm missing something.


scuzy is offline   Reply With Quote
Unread 06/06/2017, 05:56 PM   #4
FullBoreReefer
Registered Member
 
FullBoreReefer's Avatar
 
Join Date: Jul 2010
Location: Wooster, OH
Posts: 1,862
I would remove the Defer Off statement and try again


__________________
60x36x24 mixed reef. 40b sump. Regal 250int Varios. 4xHydra26HDs+t5s. 4xMp40wes. Apex2016.
FullBoreReefer is offline   Reply With Quote
Unread 06/06/2017, 06:02 PM   #5
FullBoreReefer
Registered Member
 
FullBoreReefer's Avatar
 
Join Date: Jul 2010
Location: Wooster, OH
Posts: 1,862
What I would do is, plug in the FMM, plug in your sensors, and your solenoid. Find the outlet created for the 24v Link(your solenoid) and program the code below...

Fallback OFF
Set OFF
If Swx8_1 OPEN Then ON
Defer 000:10 Then ON
When On > 005:00 Then OFF
If Swx8_2 CLOSED Then OFF
Defer 000:10 Then Off


__________________
60x36x24 mixed reef. 40b sump. Regal 250int Varios. 4xHydra26HDs+t5s. 4xMp40wes. Apex2016.

Last edited by FullBoreReefer; 06/06/2017 at 06:07 PM.
FullBoreReefer is offline   Reply With Quote
Unread 06/06/2017, 06:03 PM   #6
Stolireef
Registered Member
 
Stolireef's Avatar
 
Join Date: Mar 2008
Location: Scottsdale AZ
Posts: 3,180
Blog Entries: 5
I hate to be dense, but could you explain what the additional code does. Teach a man to fish and all that.

Thanks so much.


__________________
I want to burn twice as bright and half as long. Oh, and a full tank crash is just an excuse for a new build.

Current Tank Info: 125 Rimless Leemar, Apex, Trigger 30 Elite Sump, Vertex 180i Skimmer, 2 X Gen4 Radion XR30W, BM Doser, 2xMP40WES, 2xTunze 6095, Sicce Syncra 4.0.
Stolireef is offline   Reply With Quote
Unread 06/06/2017, 06:13 PM   #7
FullBoreReefer
Registered Member
 
FullBoreReefer's Avatar
 
Join Date: Jul 2010
Location: Wooster, OH
Posts: 1,862
Quote:
Originally Posted by Stolireef View Post
I hate to be dense, but could you explain what the additional code does. Teach a man to fish and all that.

Thanks so much.
Quote:
Originally Posted by FullBoreReefer View Post
What I would do is, plug in the FMM, plug in your sensors, and your solenoid. Find the outlet created for the 24v Link(your solenoid) and program the code below...

Fallback OFF
Set OFF
If Swx8_1 OPEN Then ON When low sensor is uncovered it turns the solenoid "on"
Defer 000:10 Then ONBUT, it will wait 10 secs then turn "on"
When On > 005:00 Then OFFIf the solenoid is on for MORE than 5mins, it will automatically turn "off", saving you from an overflow
If Swx8_2 CLOSED Then OFFWhen High sensor is covered it will turn the solenoid "off"
Defer 000:10 Then OffBUT, it will wait 10 secs then turn "off"
You can shorten or lengthen the Defer statements to use more water before refilling, or add more water if you can't get your sensor high enough.

Or shorten the maximum run time to prevent overflow.


__________________
60x36x24 mixed reef. 40b sump. Regal 250int Varios. 4xHydra26HDs+t5s. 4xMp40wes. Apex2016.
FullBoreReefer is offline   Reply With Quote
Unread 06/06/2017, 06:28 PM   #8
Stolireef
Registered Member
 
Stolireef's Avatar
 
Join Date: Mar 2008
Location: Scottsdale AZ
Posts: 3,180
Blog Entries: 5
Since I'm filling a 10 gallon reservoir, would I set the on for about 2 hours (that's about how long it takes to refill).


__________________
I want to burn twice as bright and half as long. Oh, and a full tank crash is just an excuse for a new build.

Current Tank Info: 125 Rimless Leemar, Apex, Trigger 30 Elite Sump, Vertex 180i Skimmer, 2 X Gen4 Radion XR30W, BM Doser, 2xMP40WES, 2xTunze 6095, Sicce Syncra 4.0.
Stolireef is offline   Reply With Quote
Unread 06/07/2017, 03:53 AM   #9
FullBoreReefer
Registered Member
 
FullBoreReefer's Avatar
 
Join Date: Jul 2010
Location: Wooster, OH
Posts: 1,862
Correct


__________________
60x36x24 mixed reef. 40b sump. Regal 250int Varios. 4xHydra26HDs+t5s. 4xMp40wes. Apex2016.
FullBoreReefer is offline   Reply With Quote
Unread 06/07/2017, 08:26 AM   #10
ca1ore
Grizzled & Cynical
 
Join Date: Apr 2006
Location: Stamford, CT
Posts: 17,319
Quote:
Originally Posted by Stolireef View Post
Fallback OFF
Set OFF
If Swx8_1 OPEN Then ON
If Swx8_2 CLOSED Then OFF
OK, going from memory here, but I think if you do 'Set ON' it will work as you want. Trouble with what you have is that as soon as the low Swx8_1 closes, the outlet reverts to the set state - which is off. I think this would fill the ATO reservoir, but you'd then have to turn the RODI off once filled otherwise it will iterate.


__________________
Simon

Got back into the hobby ..... planned to keep it simple ..... yeah, right ..... clearly I need a new plan! Pet peeve: anemones host clowns; clowns do not host anemones!

Current Tank Info: 450 Reef; 120 refugium; 60 Frag Tank, 30 Introduction tank; multiple QTs
ca1ore is offline   Reply With Quote
Unread 06/07/2017, 08:55 AM   #11
Grayhead
Registered Member
 
Join Date: Oct 2011
Posts: 581
I am following this thread as well. I purchased the ATK kit with 2 optical sensors for the top off tank. I am trying to set the top off tank to fil automatically once the lower sensor trips. Part of my issue is I also have my salt mix tank utilizing the same RODI system. I control everything manually now. I purchased a second FMM module and 2 more optical sensors to have more control over the salt tank. I am waiting for the neptune solenoids to show up to integrate them in my system. I will have 4 to hook up. 1 for RODI, 1 for Booster pump, 1 for Salt mix tank, and 1 to flush the RO membrane everytime the setup kicks on. I know it will be a bit complex, but the code is where I will have the most issues I think. I just tried to set up the ATK and the hi?low for the top off tank with no luck. Here is my code.
Fallback OFF
Set OFF
If Swx26_1 OPEN Then ON
If Swx26_2 CLOSED Then OFF
When On > 005:00 Then OFF
Defer 000:10 Then ON
Defer 000:04 Then OFF
Min Time 060:00 Then OFF
If Output Main_Pump = OFF Then OFF
Defer 005:00 Then ON
If RODI_L OPEN Then RODI ON
If RODI_L OPEN Then BOOSTER_MAIN ON
If RODI_H OPEN Then RODI OFF
If RODI_H OPEN Then BOOSTER_MAIN OFF

Hope you dont mind me piggybacking on your thread. We seem to have similar issues going on


__________________
240 Gallon mixed reef, Apex Controlled
Radion gen4 pro/T-5 hybrid combo, TBS Liverock
Lifereef sump, skimmer, and Fuge
2- MP 40, 1- Vectra M1 return pump, Build thread below
http:
Grayhead is offline   Reply With Quote
Unread 06/07/2017, 10:22 AM   #12
ca1ore
Grizzled & Cynical
 
Join Date: Apr 2006
Location: Stamford, CT
Posts: 17,319
Quote:
Originally Posted by Grayhead View Post
If Swx26_1 OPEN Then ON
26! Thought I was obsessed (18 is my max)


__________________
Simon

Got back into the hobby ..... planned to keep it simple ..... yeah, right ..... clearly I need a new plan! Pet peeve: anemones host clowns; clowns do not host anemones!

Current Tank Info: 450 Reef; 120 refugium; 60 Frag Tank, 30 Introduction tank; multiple QTs
ca1ore is offline   Reply With Quote
Unread 06/07/2017, 12:29 PM   #13
spifftempo
Registered Member
 
Join Date: Jan 2009
Posts: 65
Quote:
Originally Posted by Stolireef View Post
Fallback OFF
Set OFF
If Swx8_1 OPEN Then ON
If Swx8_2 CLOSED Then OFF
When On > 005:00 Then OFF
Defer 000:10 Then ON
Defer 000:04 Then OFF
Min Time 060:00 Then OFF

The issue with both of these configurations is the "Set Off" at the top of the program. Correct me if I'm wrong, but you want the fill to occur when the first sensor (x8_1) becomes "uncovered" or "open". You do not want it turn off till the second sensor (x8_2) becomes "covered" or "closed". How your program is written currently indicates that turn solenoid on when 8_1 becomes open, then when it becomes closed the next true statement is "Set Off," so therefore, the solenoid closes immediately once x8_1 is closed. The corrected configuration should remove the "Set Off" and should be:

Fallback OFF
If Swx8_1 OPEN Then ON
If Swx8_2 CLOSED Then OFF
When On > 005:00 Then OFF
Defer 000:10 Then ON
Defer 000:04 Then OFF
Min Time 060:00 Then OFF

I haven't tested this, but should give you the behavior you are looking for.


spifftempo is offline   Reply With Quote
Unread 06/07/2017, 03:38 PM   #14
Stolireef
Registered Member
 
Stolireef's Avatar
 
Join Date: Mar 2008
Location: Scottsdale AZ
Posts: 3,180
Blog Entries: 5
Thanks for all of the help. I'm testing this tonight (waiting for the water level in the reservoir to drop about 1/2 inch at this point.


__________________
I want to burn twice as bright and half as long. Oh, and a full tank crash is just an excuse for a new build.

Current Tank Info: 125 Rimless Leemar, Apex, Trigger 30 Elite Sump, Vertex 180i Skimmer, 2 X Gen4 Radion XR30W, BM Doser, 2xMP40WES, 2xTunze 6095, Sicce Syncra 4.0.
Stolireef is offline   Reply With Quote
Unread 06/07/2017, 04:54 PM   #15
ca1ore
Grizzled & Cynical
 
Join Date: Apr 2006
Location: Stamford, CT
Posts: 17,319
Got home and looked. Agree that the set command should be removed completely.


__________________
Simon

Got back into the hobby ..... planned to keep it simple ..... yeah, right ..... clearly I need a new plan! Pet peeve: anemones host clowns; clowns do not host anemones!

Current Tank Info: 450 Reef; 120 refugium; 60 Frag Tank, 30 Introduction tank; multiple QTs
ca1ore is offline   Reply With Quote
Unread 06/08/2017, 04:27 AM   #16
Stolireef
Registered Member
 
Stolireef's Avatar
 
Join Date: Mar 2008
Location: Scottsdale AZ
Posts: 3,180
Blog Entries: 5
Worked perfectly. Thank you

Sent from my SM-G935V using Tapatalk


__________________
I want to burn twice as bright and half as long. Oh, and a full tank crash is just an excuse for a new build.

Current Tank Info: 125 Rimless Leemar, Apex, Trigger 30 Elite Sump, Vertex 180i Skimmer, 2 X Gen4 Radion XR30W, BM Doser, 2xMP40WES, 2xTunze 6095, Sicce Syncra 4.0.
Stolireef is offline   Reply With Quote
Unread 06/08/2017, 04:31 AM   #17
FullBoreReefer
Registered Member
 
FullBoreReefer's Avatar
 
Join Date: Jul 2010
Location: Wooster, OH
Posts: 1,862
Great, thanks for the update


__________________
60x36x24 mixed reef. 40b sump. Regal 250int Varios. 4xHydra26HDs+t5s. 4xMp40wes. Apex2016.
FullBoreReefer is offline   Reply With Quote
Unread 06/08/2017, 11:50 AM   #18
ca1ore
Grizzled & Cynical
 
Join Date: Apr 2006
Location: Stamford, CT
Posts: 17,319
Quote:
Originally Posted by Stolireef View Post
Worked perfectly. Thank you

Sent from my SM-G935V using Tapatalk
So, what code did you end up with?


__________________
Simon

Got back into the hobby ..... planned to keep it simple ..... yeah, right ..... clearly I need a new plan! Pet peeve: anemones host clowns; clowns do not host anemones!

Current Tank Info: 450 Reef; 120 refugium; 60 Frag Tank, 30 Introduction tank; multiple QTs
ca1ore is offline   Reply With Quote
Unread 06/09/2017, 12:29 PM   #19
Stolireef
Registered Member
 
Stolireef's Avatar
 
Join Date: Mar 2008
Location: Scottsdale AZ
Posts: 3,180
Blog Entries: 5
This did the trick

Fallback OFF
If Swx8_1 OPEN Then ON
If Swx8_2 CLOSED Then OFF
When On > 145:00 Then OFF
Defer 000:10 Then ON
Defer 000:04 Then OFF

I'm not sure what the defer is for but it didn't hurt anything.


__________________
I want to burn twice as bright and half as long. Oh, and a full tank crash is just an excuse for a new build.

Current Tank Info: 125 Rimless Leemar, Apex, Trigger 30 Elite Sump, Vertex 180i Skimmer, 2 X Gen4 Radion XR30W, BM Doser, 2xMP40WES, 2xTunze 6095, Sicce Syncra 4.0.
Stolireef is offline   Reply With Quote
Unread 06/09/2017, 02:41 PM   #20
scuzy
Registered Member
 
scuzy's Avatar
 
Join Date: Sep 2003
Location: San Jose, CA
Posts: 6,499
Wait 10 second before coming on. Wait 4 second before turning off


Sent from my iPhone using Tapatalk Pro


scuzy is offline   Reply With Quote
Unread 06/10/2017, 08:40 AM   #21
FullBoreReefer
Registered Member
 
FullBoreReefer's Avatar
 
Join Date: Jul 2010
Location: Wooster, OH
Posts: 1,862
Quote:
Originally Posted by Stolireef View Post
This did the trick

Fallback OFF
If Swx8_1 OPEN Then ON
If Swx8_2 CLOSED Then OFF
When On > 145:00 Then OFF
Defer 000:10 Then ON
Defer 000:04 Then OFF

I'm not sure what the defer is for but it didn't hurt anything.
Have you tested the "When On" code to see if it works? Or that your timing is correct...just in case.

I haven't incorporated any of the "When On" statements yet into any of my programming.


__________________
60x36x24 mixed reef. 40b sump. Regal 250int Varios. 4xHydra26HDs+t5s. 4xMp40wes. Apex2016.
FullBoreReefer is offline   Reply With Quote
Unread 06/10/2017, 12:17 PM   #22
Grayhead
Registered Member
 
Join Date: Oct 2011
Posts: 581
Quote:
Originally Posted by Stolireef View Post
This did the trick

Fallback OFF
If Swx8_1 OPEN Then ON
If Swx8_2 CLOSED Then OFF
When On > 145:00 Then OFF
Defer 000:10 Then ON
Defer 000:04 Then OFF

I'm not sure what the defer is for but it didn't hurt anything.
For my system, I have 3 solenoids
1 for top off
1 for salt mix station
1 for booster pump(which controls RODI plus booster pump

I need mine to operate independently of each other, both using the booster pump. If I configure this as above, when it comes time to fill my salt mix, will it create a conflict with the top off telling the pump to stay off? I also want to a flush solenoid for the RODI to flush for 5 minutes each time it comes on.


__________________
240 Gallon mixed reef, Apex Controlled
Radion gen4 pro/T-5 hybrid combo, TBS Liverock
Lifereef sump, skimmer, and Fuge
2- MP 40, 1- Vectra M1 return pump, Build thread below
http:
Grayhead is offline   Reply With Quote
Unread 05/19/2019, 03:12 PM   #23
moe103
Registered Member
 
Join Date: May 2006
Location: New Jersey
Posts: 103
Revisiting an old thread. What solenoid is everyone using? Are they all normal closed? If I have one connected to a leak detector should it be a normal open solenoid?


moe103 is offline   Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On



All times are GMT -6. The time now is 06:06 AM.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Powered by Searchlight © 2024 Axivo Inc.
Use of this web site is subject to the terms and conditions described in the user agreement.
Reef CentralTM Reef Central, LLC. Copyright ©1999-2022
User Alert System provided by Advanced User Tagging v3.3.0 (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.