|
Portal | PhotoPost Gallery | Register | Blogs | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
Thread Tools | Display Modes |
#1
|
|||||
|
|||||
Neptune Apex Code Help?
I've been plugging away on some issues with Apex, and I've got everything but one thing tested and working the way I want. Everything I've done so far is pretty simple.
I'm wondering if someone can confirm whether or not something should work for me. What I want to do is shut my noisy chiller pump off at night, unless the chiller is running. [If Outlet Chiller = ON Then ON] I created an outlet called "Sleep" Set OFF If Time 21:00 to 06:00 Then ON So, [If Outlet Sleep = ON Then OFF] for the ChillerPump outlet. I slapped the code together all willy-nilly for the ChillerPump outlet: Fallback ON Set ON If Outlet Sleep = ON Then OFF If Outlet Chiller = ON Then ON It works on the sleep outlet. My chiller hasn't come on in days, though, so I don't know if the Chiller outlet statement is correct. Should it work? |
#2
|
|||||
|
|||||
I'd probably post this over at RC in the Neptune forum...
__________________
Brad |
#3
|
|||||
|
|||||
I thought about doing that . . . but I'm not a member there and I was hoping to avoid becoming a member of a third reef forum.
Reading the Neptune forum has been a huge help in figuring out a lot of stuff, as has the unofficial user guide. So, you're right. I probably should. |
#4
|
||||
|
||||
This is what my little head came up with.
[chiller_outlet] Fallback OFF Set OFF If temp > 80 Then ON Defer 005 [chiller_pump_outlet] Fallback OFF Set OFF If temp > 80 Then ON Defer 001 If temp < 80 Then OFF Defer 010 This "should" work like this. Your aim is to maintain temp below 80deg.F. What it'll stay above depends on your heaters. This way, your chiller pump won't be on during the day. It'll only come on when needed, saving your energy. Your chiller will come on if temp is above 80. However, it's delayed 5minute so your chiller pump (will start after 1minute if temp is above 80) has a chance to start cycling water thru the chiller. If temp falls below 80, your chiller will be off, however, I keep the chiller pump on just for a little longer to bring the chiller internal to the same temp as the tank water. I like to use Defer to provide any spike from constantly turning on and off my devices. This is probably not perfect, the last time i programmed my apex was 2 years ago. Hope it works for you. |
#5
|
|||||
|
|||||
Cool!
My present chiller code is: Fallback OFF If Temp > 78.5 Then ON If Temp < 78.0 Then OFF (This works and has been tested) But, my chiller is set to not actually start cooling until 79. It takes a few minutes for it to start cooling, so I didn't want it to come on right at 79. I could change it to this: Fallback OFF If Temp > 78.5 Then ON Defer 005 If Temp < 78.0 Then OFF And then change the chiller pump to Fallback OFF If temp > 78.5 Then ON Defer 001 If temp < 78 Then OFF Defer 010 That should work, right? My only concern is leaving the chiller pump off for so long. Will the water in the lines get gross? That's why I was going to let it run throughout the day, but shut off at night according to the "Sleep" outlet if not required. |
#6
|
|||||
|
|||||
You could get a different pump that's quiet...
__________________
Brad |
#7
|
||||
|
||||
Quote:
|
#8
|
|||||
|
|||||
I have one (another Eheim Compact 2000). . . I just don't want to redo all of the plumbing in the return section of the sump twice in a few weeks.
The new display is off being drilled, so I'll be starting to install the plumbing for that this weekend. The new pump for the chiller will be running the chiller and the two fluid reactors. It is nice and quiet, and it will run 24/7. It may even become the return for the NC12 that will become a secondary fuge on this system, too. Quote:
Good idea. |
#9
|
||||
|
||||
Quote:
[chiller] If temp > 78.5 then ON Defer 005 If temp < 78.5 then OFF Defer 001 [chiller_pump] If temp > 78.5 then ON Defer 001 If temp < 78.5 then OFF Defer 010 Hope I actually helped you instead of confusing you lol. Good luck. |
Thread Tools | |
Display Modes | |
|
|