Skip to content

Commit

Permalink
acthor
Browse files Browse the repository at this point in the history
Sofern die installierte Leistung grösser als die maximal Leistung vom Acthor ist, wird ggf die CAP angepasst, da sonst der Heizstab nicht voll ausgereget wird.
Kann für 1.9 und 2.0 übernommen werden
  • Loading branch information
okaegi committed Feb 19, 2024
1 parent 664dae6 commit 8631624
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/modules/smarthome/acthor/watt.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,8 @@
neupowertarget = int((uberschuss + aktpower) * faktor)
if neupowertarget < 0:
neupowertarget = 0
if instpower > cap:
cap = instpower
if neupowertarget > int(cap * faktor):
neupowertarget = int(cap * faktor)
# status nach handbuch Thor
Expand Down

0 comments on commit 8631624

Please sign in to comment.