You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Current approach for detecting AC freeze-ups only works for summer. During winter/spring/fall there are false alarms when the AC is not running at all
If (rear_AC_T < 19) Then
prog_status = "WARNING rear AC setpoint too low"
ElseIf (rear_AC_T < 15) Then
prog_status = "ALARM rear AC at freeze risk"
Else
prog_status = "OKAY"
EndIf
The text was updated successfully, but these errors were encountered:
Current approach for detecting AC freeze-ups only works for summer. During winter/spring/fall there are false alarms when the AC is not running at all
The text was updated successfully, but these errors were encountered: