Hello all,
I have two 500w heaters on my system, called HeaterA and HeaterB. I have them setup so that A runs from 12:00 noon to 23:59 and B runs from 00:00 to 11:59. Here is the code I use for them:
HeaterA
Fallback OFF
If Tmp < 77.9 Then ON
If Tmp > 78.1 Then OFF
If Time 12:00 to 23:59 Then OFF
If Output HeatBkUp = ON Then ON
If Tmp < 60.0 Then OFF
If Output Maintenance = ON Then OFF
HeaterB
Fallback OFF
If Tmp < 77.9 Then ON
If Tmp > 78.1 Then OFF
If Time 00:00 to 11:59 Then OFF
If Output HeatBkUp = ON Then ON
If Tmp < 60.0 Then OFF
If Output Maintenance = ON Then OFF
As a safety feature, I have a virtual outlet that will turn the offline heater on in the event the temp drops below 77.7° with the following code:
HeatBkUp
If Tmp < 77.7 Then ON
If Tmp > 78.1 Then OFF
I also have it setup to send me an alarm notification if HeatBkUp is on:
HeatError
Set OFF
If Output HeaterA = ON Then ON
If Output HeaterB = OFF Then OFF
Defer 120:00 Then ON
What I have been seeing is that HeatBkUp will turn on when the temp is above 77.7°, this morning it was when the Apex was showing a temp of 79.9° and HeatBkUp was turned on.
As a result, both heaters getting turned on when they should not be and I'm getting an alarm notification when I should not be getting them. Any ideas on why HeatBkUp is getting triggered at a higher temp than it is set for?
I have two 500w heaters on my system, called HeaterA and HeaterB. I have them setup so that A runs from 12:00 noon to 23:59 and B runs from 00:00 to 11:59. Here is the code I use for them:
HeaterA
Fallback OFF
If Tmp < 77.9 Then ON
If Tmp > 78.1 Then OFF
If Time 12:00 to 23:59 Then OFF
If Output HeatBkUp = ON Then ON
If Tmp < 60.0 Then OFF
If Output Maintenance = ON Then OFF
HeaterB
Fallback OFF
If Tmp < 77.9 Then ON
If Tmp > 78.1 Then OFF
If Time 00:00 to 11:59 Then OFF
If Output HeatBkUp = ON Then ON
If Tmp < 60.0 Then OFF
If Output Maintenance = ON Then OFF
As a safety feature, I have a virtual outlet that will turn the offline heater on in the event the temp drops below 77.7° with the following code:
HeatBkUp
If Tmp < 77.7 Then ON
If Tmp > 78.1 Then OFF
I also have it setup to send me an alarm notification if HeatBkUp is on:
HeatError
Set OFF
If Output HeaterA = ON Then ON
If Output HeaterB = OFF Then OFF
Defer 120:00 Then ON
What I have been seeing is that HeatBkUp will turn on when the temp is above 77.7°, this morning it was when the Apex was showing a temp of 79.9° and HeatBkUp was turned on.
As a result, both heaters getting turned on when they should not be and I'm getting an alarm notification when I should not be getting them. Any ideas on why HeatBkUp is getting triggered at a higher temp than it is set for?


