![]() |
|
#1
|
|||||
|
|||||
![]() 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. |
#2
|
||||
|
||||
![]() 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. |
#3
|
|||||
|
|||||
![]() 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. |
#4
|
|||||
|
|||||
![]() You could get a different pump that's quiet...
__________________
Brad |
#5
|
||||
|
||||
![]() Quote:
|
#6
|
|||||
|
|||||
![]() 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. ![]() Quote:
Quote:
![]() |
#7
|
||||
|
||||
![]() 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. |