Apex Programming Cor to ramp up on power restoration

MHG

Active member
So my overflow seems to not like the COR coming on all at once. My herbie runs nice and silent. restores full syphon on a power reset. But the overflow overfills when I hit it all at once with 100% on my return. If I hut it with 50% for a few minutes then change it so 100% its fine.

I wanted to program my Apex to use a profile to ramp it up over 5 minutes. I got that part. But when I program it in my return shuts off.


Here is my current programming and what I think I need to add

Fallback 100
Set 100
If Output DT_Maint = ON Then OFF
If LEAK_D CLOSED Then OFF
If LEAK_F CLOSED Then OFF

Using a profile called "Ramp_Up set to ramp it from 50% to 100% over 5 minutes
I am trying this:


Fallback 95
Set 95
ir power apex ON then Ramp_up
If Output DT_Maint = ON Then OFF
If LEAK_D CLOSED Then OFF
If LEAK_F CLOSED Then OFF



But when I do this the pump shuts off...
 
SNIP--->

Fallback 100
Set 100
If Output DT_Maint = ON Then OFF
If LEAK_D CLOSED Then OFF
If LEAK_F CLOSED Then OFF

Using a profile called "Ramp_Up set to ramp it from 50% to 100% over 5 minutes
I am trying this:


Fallback 95
Set 95
ir power apex ON then Ramp_up ---ir - is this a typo?
If Output DT_Maint = ON Then OFF
If LEAK_D CLOSED Then OFF
If LEAK_F CLOSED Then OFF



But when I do this the pump shuts off...

Can you post a screen shot of your ramp profile and the COR program?
 
It's my understanding, unless they changed it in the new apex, your set and fallback statements are only on or off statements, or a profile name, not a percentage to run things at.







programming for one of my PH if it gives you any idea. Day_Wave_R, N_Wave, and Export are all profiles I setup in the classic dashboard.



Set Day_Wave_R
If Time 17:59 to 06:59 Then N_Wave
If Output NutrientExport = ON Then Export
If FeedA 005 Then OFF
 
Last edited:
Can you post a screen shot of your ramp profile and the COR program?

That is not a typo. That is the name of the profile. It auto-fills in fusion. I can screenshot my ramp profile later. But it is a simple ramp profile Period start at 50%, and at 100%, and the duration is 5 minutes.
 
It's my understanding, unless they changed it in the new apex, your set and fallback statements are only on or off statements, or a profile name, not a percentage to run things at.







programming for one of my PH if it gives you any idea. Day_Wave_R, N_Wave, and Export are all profiles I setup in the classic dashboard.



Set Day_Wave_R
If Time 17:59 to 06:59 Then N_Wave
If Output NutrientExport = ON Then Export
If FeedA 005 Then OFF
It is not a new Apex. But they did change that. That is how you set the Cor. In fact on the Apex forum it was suggested that I use the command set with the profile name. So in this case it would be:

Set Ramp_Up

But I need to wait till I get home tonight to try that.
 
That is not a typo. That is the name of the profile. It auto-fills in fusion. I can screenshot my ramp profile later. But it is a simple ramp profile Period start at 50%, and at 100%, and the duration is 5 minutes.

Sorry if I wasn't clear.
I wasn't talking about the profile name but instead of:

If power apex ON then Ramp_up

You have:

ir power apex ON then Ramp_up
 
Sorry, yes the "ir" is a typo in the post. An Apex would never allow you to upload a command like that.
 
It is not a new Apex. But they did change that. That is how you set the Cor. In fact on the Apex forum it was suggested that I use the command set with the profile name. So in this case it would be:

Set Ramp_Up

But I need to wait till I get home tonight to try that.


As I don't have the COR pump I was not aware of that change. Just read the user manual for the COR pump. :thumbsup:


I think I would still use the set command with a profile name.



Also unless thats a typo(fusion should tell you the syntax is incorrect)IR should be IF as member no 1 pointed out.
 
I would change this:


Fallback 95
Set 95
if power apex ON then Ramp_up
If Output DT_Maint = ON Then OFF
If LEAK_D CLOSED Then OFF
If LEAK_F CLOSED Then OFF


To this:


Fallback 95
Set Ramp_up
If Output DT_Maint = ON Then OFF
If LEAK_D CLOSED Then OFF
If LEAK_F CLOSED Then OFF
 
Back
Top