Results 1 to 17 of 17

Thread: Programming a night drop in temperature?

  1. #1
    Regular Vistor
    Join Date
    Jan 2013
    Posts
    20

    Programming a night drop in temperature?

    Fallback OFF
    If Time 08:30 to 19:59 Then
    If Temp < 86.7 Then ON
    If Temp > 87.0 Then OFF
    If Time 20:00 to 08:29 Then
    If Temp < 66.7 Then ON
    If Temp > 67.0 Then OFF

    Doesn't work.

  2. #2
    Regular Vistor
    Join Date
    Jan 2013
    Posts
    20
    nevermind! Figured out the Virtual Outlets.

  3. #3
    Wanna Be Control Freak RickHrdlicka's Avatar
    Join Date
    Oct 2013
    Location
    Inland Empire, California
    Posts
    220
    Your if time does not have anything after it.

    you may need to break this up into two virtual outlets one for day temp and one for night temp and then turn your outlet off or on of the virtual outlet is on.

  4. #4
    Frequent Visitor
    Join Date
    Sep 2013
    Location
    Oklahoma
    Posts
    56
    Reading this, I know it is not a "Apex" question, but does this seem like a very large temperature swing for an aquarium? 20 degrees? I work to stay inside of 0.3 degrees F.
    I am constantly learning, should I create a cooling off during the night? I wouldn't consider 20 degrees, but should I look at 1 or 2 degrees?
    Montipora
    Zoas
    Duncans
    Hammer
    Birds nest pink and green
    Anemone
    Frogspawn
    Mushroom
    Devils Hand Leather

  5. #5
    Frequent Visitor kenargo's Avatar
    Join Date
    Jan 2013
    Location
    Redmond, and yes, I work for Microsoft.
    Posts
    154
    I agree with other comment; assuming this is a tank with something live in it a 20 degree day/night feels like a guarantee of death for the tank. Water bodies tend to remain relatively stable +/- a few degrees at most.

    Are you sure you want to allow the tank temp to drop by 20 degrees (and then raise by as much each morning)?

  6. #6
    Frequent Contributor Alain B's Avatar
    Join Date
    Mar 2013
    Location
    Montreal, Canada
    Posts
    2,568
    Agreed ! Doing this is looking for trouble and a huge bunch of dollars !

  7. #7
    Frequent Visitor LobsterOfJustice's Avatar
    Join Date
    Jun 2013
    Location
    Cary, NC
    Posts
    859
    I took a quick look at his other threads and my suspicion was confirmed - he is not controlling a reef tank, he is using his apex to control an orchid/python terrarium.
    180g reef with all the bells and whistles

  8. #8
    Frequent Visitor
    Join Date
    Apr 2014
    Posts
    71
    I would like to do this in my tank. What fixed the problem?

    I would like to drop it a degree or so while the lights are off.

  9. #9
    Regular Vistor
    Join Date
    May 2014
    Location
    Nampa, Idaho
    Posts
    20
    Just using original poster's pretty extreme temp change, here is how I would setup with two virtual outlets, and the final combination in the Heater outlet (plus a Return Pump Outlet criteria requirement).


    NightHeat VO pgm
    Set OFF
    if Temp < 66.7 then ON
    if Time 08:29 to 19:59 then OFF
    DayHeat VO pgm
    Set OFF
    if Temp < 86.7 then ON
    if Time 20:00 to 08:30 then OFF
    Heater Outlet
    Set OFF
    if Outlet DayHeat = ON then ON
    if Outlet NightHeat = ON then ON
    if Outlet Pump = OFF then OFF

  10. #10
    Frequent Contributor zombie's Avatar
    Join Date
    Dec 2013
    Location
    Denver, CO
    Posts
    13,176
    Dont use that wide of a temp swing, you will literally kill everything in your tank. Ocean temps range only 1-2 degrees from high day to low night.

    What jeff wrote is the correct syntax, but I would recommend doing something more along the lines of this

    NightHeat
    Set OFF
    If Temp < 78 Then ON
    If Time 03:00 to 21:00 Then OFF

    DayHeat
    Set OFF
    If Temp < 79 Then ON
    If Time 15:00 to 09:00 Then OFF

    MidHeat
    Set OFF
    If Temp < 78.5 Then ON
    If Time 09:00 to 15:00 Then OFF
    If Time 21:00 to 03:00 Then OFF

    Heater
    Fallback OFF
    Set OFF
    If Outlet NightHeat = ON Then ON
    If Outlet DayHeat = ON Then ON
    If Outlet MidHeat = ON Then ON

    You might be an engineer if...You have no life, and you can PROVE it mathematically.

  11. #11
    Regular Vistor
    Join Date
    May 2014
    Location
    Nampa, Idaho
    Posts
    20
    Absolutely. Just trying to stay consistent with the original request and provide a dramatic difference. Caveat Emptor.

  12. #12
    Hamburg Mattenfilter
    Join Date
    Nov 2014
    Location
    CA
    Posts
    253
    I just got my Apex last night; it's been an ease to setup. But how come you don't have statements for when it should turn off?

    Like:
    If Temp < 79 Then ON

    But won't that keep heating the water without an off statement?

    If Temp < 79 Then ON
    If Temp > 80 Then OFF


  13. #13
    Frequent Visitor
    Join Date
    Apr 2014
    Posts
    71
    No because if it is less than 79 it will turn on. Ie 78.9 = on and 79 = off

  14. #14
    Hamburg Mattenfilter
    Join Date
    Nov 2014
    Location
    CA
    Posts
    253
    Quote Originally Posted by loki View Post
    No because if it is less than 79 it will turn on. Ie 78.9 = on and 79 = off
    Makes sense. So that temperature is setpoint; not starting point.

  15. #15
    Frequent Visitor
    Join Date
    Apr 2014
    Posts
    71
    Well... I just looked and mine is setup like this.



    So you can set it up like you mentioned.

  16. #16
    Master Control Freak RussM's Avatar
    Join Date
    Dec 2012
    Location
    California - US Pacific
    Posts
    22,489
    When using probe values, you have two options.

    You can use a fixed threshold/set point, like this:

    Set OFF
    If Temp < 78.0 Then ON

    -or- you can have the outlet operate over a range:

    If Temp < 78.0 Then ON
    If Temp > 78.5 Then OFF
    Please do not send me PMs with technical questions or requesting assistance - use the forums for Apex help. PM me ONLY if the matter is of a private or personal nature. Thanks.

  17. #17
    Frequent Visitor
    Join Date
    Apr 2014
    Posts
    71

    Programming a night drop in temperature?

    And that's why Russ is the best!
    Last edited by loki; 01-07-2015 at 19:12. Reason: Typo

Similar Threads

  1. Question: Programming a daily temperature swing in addition to seasonal temperature profile.
    By jcraggs in forum Misc Apex Usage & Programming
    Replies: 0
    Last Post: 06-24-2021, 11:52
  2. Apex outlet programming — night time temp drop
    By tigertrout in forum Misc Apex Usage & Programming
    Replies: 3
    Last Post: 05-21-2020, 10:54
  3. Help! Day/Night cycle programming help please.
    By Ricky in forum Apex Programming for Heaters and Chillers
    Replies: 3
    Last Post: 09-13-2018, 09:10
  4. Question: Programming a night temperature drop?
    By connorfood in forum Apex Programming for Heaters and Chillers
    Replies: 13
    Last Post: 03-29-2015, 14:04
  5. Review My Program season table heating and cooling with a night time temp drop
    By ddfusion in forum Apex Programming for Heaters and Chillers
    Replies: 0
    Last Post: 02-13-2014, 10:58

Bookmarks

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •