Results 1 to 2 of 2

Thread: Tunze Nanostream: Programming a slowly switching pattern

  1. #1
    New User
    Join Date
    Oct 2018
    Location
    US, Eastern Time
    Posts
    2

    Tunze Nanostream: Programming a slowly switching pattern

    Hey guys. I was trying to get this to work with my two Tunze 6055s across my Red Sea Reefer 250. The idea is to have which pump is on a stronger pulse change twice over the day as a way of kind of simulating a rising and lowering tidal direction. Hopefully you can see what I'm doing when you see the code, but I don't think it's working quite right. It could be the older APEX to APEX cord. Hold onto your butts this is a long program.

    {Pump One: Tunze 6055 controlled through VDM and APEX JR.}
    Fallback OFF
    If Time 00:00 to 00:59 Then PumpProg5
    If Time 01:00 to 01:59 Then PumpProg4
    If Time 02:00 to 03:59 Then PumpProg3
    If Time 04:00 to 05:59 Then PumpProg2
    If Time 06:00 to 07:59 Then PumpProg1
    If Time 08:00 to 08:59 Then PumpProg2
    If Time 09:00 to 09:59 Then PumpProg3
    If Time 10:00 to 12:59 Then PumpProg4
    If Time 13:00 to 13:59 Then PumpProg3
    If Time 14:00 to 14:59 Then PumpProg2
    If Time 15:00 to 17:59 Then PumpProg1
    If Time 18:00 to 19:59 Then PumpProg2
    If Time 20:00 to 21:59 Then PumpProg3
    If Time 22:00 to 23:59 Then PumpProg4
    If FeedA 000 Then OFF

    {Pump two}
    Fallback OFF
    If Time 00:00 to 01:59 Then PumpProg1R
    If Time 02:00 to 02:59 Then PumpProg2R
    If Time 03:00 to 03:59 Then PumpProg3R
    If Time 04:00 to 05:59 Then PumpProg4R
    If Time 06:00 to 06:59 Then PumpProg5R
    If Time 07:00 to 08:59 Then PumpProg4R
    If Time 09:00 to 09:59 Then PumpProg3R
    If Time 10:00 to 10:59 Then PumpProg2R
    If Time 11:00 to 11:59 Then PumpProg1R
    If Time 12:00 to 12:59 Then PumpProg2R
    If Time 13:00 to 14:59 Then PumpProg3R
    If Time 15:00 to 15:59 Then PumpProg4R
    If Time 16:00 to 16:59 Then PumpProg5R
    If Time 17:00 to 18:59 Then PumpProg4R
    If Time 19:00 to 20:59 Then PumpProg3R
    If Time 21:00 to 22:59 Then PumpProg2R
    If Time 23:00 to 23:59 Then PumpProg1R
    If FeedA 000 Then OFF

    {PumpProg1}
    Control Type Pump
    Synchronize OFF
    Divide by 10 OFF
    Initial off time (seconds) 0
    On time (Seconds) 2
    Off time (Seconds) 4
    Minimum intensity 35
    Maximum intensity 45

    {PumpProg1R}
    Control Type Pump
    Synchronize OFF
    Divide by 10 OFF
    Initial off time (seconds) 4
    On time (Seconds) 2
    Off time (Seconds) 0
    Minimum intensity 35
    Maximum intensity 45

    {PumpProg2}
    Control Type Pump
    Synchronize OFF
    Divide by 10 OFF
    Initial off time (seconds) 0
    On time (Seconds) 2
    Off time (Seconds) 5
    Minimum intensity 35
    Maximum intensity 55

    {PumpProg2R}
    Control Type Pump
    Synchronize OFF
    Divide by 10 OFF
    Initial off time (seconds) 5
    On time (Seconds) 2
    Off time (Seconds) 0
    Minimum intensity 35
    Maximum intensity 55


    {PumpProg3}
    Control Type Pump
    Synchronize OFF
    Divide by 10 OFF
    Initial off time (seconds) 0
    On time (Seconds) 3
    Off time (Seconds) 5
    Minimum intensity 40
    Maximum intensity 70

    {PumpProg3R}
    Control Type Pump
    Synchronize OFF
    Divide by 10 OFF
    Initial off time (seconds) 5
    On time (Seconds) 3
    Off time (Seconds) 0
    Minimum intensity 40
    Maximum intensity 70

    {PumpProg4}
    Control Type Pump
    Synchronize OFF
    Divide by 10 OFF
    Initial off time (seconds) 0
    On time (Seconds) 3
    Off time (Seconds) 7
    Minimum intensity 40
    Maximum intensity 80

    {PumpProg4R}
    Control Type Pump
    Synchronize OFF
    Divide by 10 OFF
    Initial off time (seconds) 7
    On time (Seconds) 3
    Off time (Seconds) 0
    Minimum intensity 40
    Maximum intensity 80

    {PumpProg5}
    Control Type Pump
    Synchronize OFF
    Divide by 10 OFF
    Initial off time (seconds) 0
    On time (Seconds) 4
    Off time (Seconds) 8
    Minimum intensity 50
    Maximum intensity 80

    {PumpProg5R}
    Control Type Pump
    Synchronize OFF
    Divide by 10 OFF
    Initial off time (seconds) 4
    On time (Seconds) 8
    Off time (Seconds) 0
    Minimum intensity 50
    Maximum intensity 80

  2. #2
    New User
    Join Date
    Oct 2018
    Location
    US, Eastern Time
    Posts
    2
    Figured out how to make it work. Here is the program if anyone wants to use it. For a few hours a day it creates a stronger push from the right, then a back and forth wave, then a calmer back and forth wave, then a back and forth wave, and then a stronger push from the left then it repeats. The goal here is to mimic a twice a day tidal flow (2 stronger sets of waves from the left and 2 stronger sets of waves from the right with periods of calmer water in between).

    {Left pump}
    Fallback PumpProg4
    Set PumpProg4
    If Time 01:30 to 02:59 Then PumpProg2
    If Time 03:00 to 04:29 Then PumpProg1
    If Time 04:30 to 05:59 Then PumpProg2
    If Time 06:00 to 07:29 Then PumpProg4
    If Time 07:30 to 08:59 Then PumpProg2
    If Time 09:00 to 10:29 Then PumpProg3
    If Time 10:30 to 11:59 Then PumpProg2
    If Time 12:00 to 13:29 Then PumpProg4
    If Time 13:30 to 14:59 Then PumpProg2
    If Time 15:00 to 16:29 Then PumpProg1
    If Time 16:30 to 17:59 Then PumpProg2
    If Time 18:00 to 19:29 Then PumpProg4
    If Time 19:30 to 20:59 Then PumpProg2
    If Time 21:00 to 22:29 Then PumpProg1
    If Time 22:30 to 23:59 Then PumpProg2
    If FeedA 000 Then OFF


    {Right pump}
    Fallback PumpProg4R
    Set PumpProg4R
    If Time 01:30 to 02:59 Then PumpProg2R
    If Time 03:00 to 04:29 Then PumpProg1R
    If Time 04:30 to 05:59 Then PumpProg2R
    If Time 06:00 to 07:29 Then PumpProg4R
    If Time 07:30 to 08:59 Then PumpProg2R
    If Time 09:00 to 10:29 Then PumpProg3R
    If Time 10:30 to 11:59 Then PumpProg2R
    If Time 12:00 to 13:29 Then PumpProg4R
    If Time 13:30 to 14:59 Then PumpProg2R
    If Time 15:00 to 16:29 Then PumpProg1R
    If Time 16:30 to 17:59 Then PumpProg2R
    If Time 18:00 to 19:29 Then PumpProg4R
    If Time 19:30 to 20:59 Then PumpProg2R
    If Time 21:00 to 22:29 Then PumpProg1R
    If Time 22:30 to 23:59 Then PumpProg2R
    If FeedA 000 Then OFF

    {PumpProg1}
    Control Type Pump
    Synchronize OFF
    Divide by 10 OFF
    Initial off time (seconds) 4
    On time (Seconds) 8
    Off time (Seconds) 0
    Minimum intensity 40
    Maximum intensity 80

    {PumpProg1R}
    Control Type Pump
    Synchronize ON
    Divide by 10 OFF
    Initial off time (seconds) 6
    On time (Seconds) 4
    Off time (Seconds) 2
    Minimum intensity 35
    Maximum intensity 45

    {PumpProg2}
    Control Type Pump
    Synchronize OFF
    Divide by 10 OFF
    Initial off time (seconds) 3
    On time (Seconds) 6
    Off time (Seconds) 0
    Minimum intensity 35
    Maximum intensity 60

    {PumpProg2R}
    Control Type Pump
    Synchronize ON
    Divide by 10 OFF
    Initial off time (seconds) 4
    On time (Seconds) 3
    Off time (Seconds) 1
    Minimum intensity 35
    Maximum intensity 60

    {PumpProg3}
    Control Type Pump
    Synchronize OFF
    Divide by 10 OFF
    Initial off time (seconds) 4
    On time (Seconds) 8
    Off time (Seconds) 0
    Minimum intensity 35
    Maximum intensity 45

    {PumpProg3R}
    Control Type Pump
    Synchronize ON
    Divide by 10 OFF
    Initial off time (seconds) 6
    On time (Seconds) 4
    Off time (Seconds) 2
    Minimum intensity 40
    Maximum intensity 80

    {PumpProg4}
    Control Type Pump
    Synchronize OFF
    Divide by 10 OFF
    Initial off time (seconds) 2
    On time (Seconds) 4
    Off time (Seconds) 0
    Minimum intensity 35
    Maximum intensity 45

    {PumpProg4R}
    Control Type Pump
    Synchronize ON
    Divide by 10 OFF
    Initial off time (seconds) 3
    On time (Seconds) 2
    Off time (Seconds) 1
    Minimum intensity 35
    Maximum intensity 45

Similar Threads

  1. Tunze Nanostream 6055 Controllable Not Working Properly With Apex
    By marlinmon in forum Apex Programming for Vortech, Tunze, & Other Controllable Pumps
    Replies: 3
    Last Post: 02-21-2019, 05:55
  2. TUNZE Turbelle NanoStream Cable Routing
    By joshrhykerd in forum Misc Aquarium Automation Discussions
    Replies: 3
    Last Post: 02-26-2017, 08:44
  3. Question: trying to duplicate Tunze 7095 wave pattern through V1/V2 V3/V4
    By ricowind in forum Apex Programming for Vortech, Tunze, & Other Controllable Pumps
    Replies: 14
    Last Post: 09-03-2016, 20:20
  4. Question: Tunze Turbelle Nanostream programming suggestions
    By shellcode in forum Apex Programming for Vortech, Tunze, & Other Controllable Pumps
    Replies: 0
    Last Post: 09-01-2014, 12:12
  5. Question: Variable Speed Programming for Dummies - Tunze Turbelle Nanostream 6095
    By newfubar in forum Apex Programming for Vortech, Tunze, & Other Controllable Pumps
    Replies: 16
    Last Post: 04-23-2014, 06:08

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
  •