
IF Statement
Description
IF < 5% Capacity
Increase
Selects the
TRUE
statement if the improvement in
capacity during the last two discharge cycles is less
than 5% (for example, the last one is 88% and the
one before is 85%); otherwise (for example, if the
last one is 90% and the one before is 80%), selects
the
FALSE
statement.
IF > 5% Capacity
Increase
Selects the
TRUE
statement if the improvement in
capacity during the last two discharge cycles is more
than 5% (for example, the last one is 90% and the
one before is 80%); otherwise (for example, 88% and
85%) selects the
FALSE
statement.
IF Total Capacity < 5%
Selects the
TRUE
statement if the capacity during the
last discharge cycle is less than 5%; otherwise,
selects the
FALSE
statement.
IF Total Capacity > 5%
Selects the
TRUE
statement if the capacity during the
last discharge cycle is greater than 5%; otherwise,
selects the
FALSE
statement.
IF User Defined Timeout
Selects the
TRUE
statement if the time period set in
Cycle 1 or Cycle 2 expires before the battery is fully
charged, discharged or reconditioned; otherwise,
selects the
FALSE
statement. For Trickle Charge and
Rest, the program selects the
TRUE
statement only.
IF Loop Count < Max
Selects the
TRUE
statement if the number of cycles
(the loop count) is less than the value set in
THEN
REPEAT
X
TIMES
of the
TRUE
statement or
ELSE REPEAT
X
TIMES
in the
FALSE
statement; otherwise, selects the
FALSE
statement.
IF Loop Count > Max
Selects the
TRUE
statement if the number of cycles
(the loop count) is more than the value set in
THEN
REPEAT
X
TIMES
of the
TRUE
statement or
ELSE REPEAT
X
TIMES
in the
FALSE
statement; otherwise, selects the
FALSE
statement.
103