This should work
But this one seems to be better,Code:Case is >= pvmin and is >= batt and is <= battmax
Code:Case is >= pvmin if pv >= batt and pv <= battmax then etc...
This should work
But this one seems to be better,Code:Case is >= pvmin and is >= batt and is <= battmax
Code:Case is >= pvmin if pv >= batt and pv <= battmax then etc...
"If the Earth were a single state, Istanbul would be its capital." Napoleon Bonaparte
I got tripped up with this one too...
Needs to be along the lines of:
Good luck and happy coding.Code:Case is >= pvmin if (pv >= batt) AND (pv <= battmax) then etc...
Chris
Bookmarks