-
-
Notifications
You must be signed in to change notification settings - Fork 670
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add battery grid charging #14855
Add battery grid charging #14855
Conversation
core/keys/site.go
Outdated
@@ -43,6 +43,10 @@ const ( | |||
BufferStartSoc = "bufferStartSoc" | |||
MaxGridSupplyWhileBatteryCharging = "maxGridSupplyWhileBatteryCharging" | |||
|
|||
// battery charging | |||
GridChargeLimit = "gridChargeLimit" | |||
GridChargeActive = "gridChargeActive" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ich bin noch nicht überzeugt vom Namen. Hier gehts ja "nur" ums Batterie-Laden. Das Smart Cost Limit am LP ist ja auch ein Grid-Charging, aber halt fürs Fahrzeug. Für Symmetrie würd ich batteryCostLimit
vorschlagen.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ich find den eigentlich gut. Energie von außen ist günstig und das Feature heisst landläufig Netzladen.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ich hätt gerne die Batterie da mit drin. Gerade weil es ja "nur" die Batterie betrifft. Sonst wird nicht klar, dass es hier nicht um unser "normales laden" geht.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wie wär's mit batteryGridChargeLimit
?
Co-authored-by: Michael Geers <[email protected]>
This comment was marked as resolved.
This comment was marked as resolved.
Dass die Batterie nicht lädt liegt vmtl. an der batterycontrol Implementierung bei Sungrow. Ich hab gerade den Issue/Discussion nicht spontan gefunden. Aber ich meine wir hatten da noch ein offenes Thema, dass neben dem Modus auch noch die Max-Ladeleistung (die sich resettet) immer gesetzt werden muss. Bin mir nicht sicher, wie das damals in der Diskussion ausgegangen ist. \cc @premultiply |
Co-authored-by: Michael Geers <[email protected]>
Die ganze BatteryMode Logik passt noch nicht. |
@naltatis komplett neuer Test notwendig. Bisher wurde der Modus gar nicht auf die Batterie geschrieben. Die etwas verwobene Logik ist jetzt komplett entzerrt. |
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
@UDicke Das geht hier im PR zu weit ins Detail bzw. übers Thema hinaus. Mach gerne sonst nen separaten Discussion-Thread auf. |
Hallo zusammen, ich freue mich schon auf die Funktion "Batterie Laden", da ich auch einen dynamischen Stromtarif nutze. Das wird vor allem im Winter interessant. Wird es auch die Möglichkeit geben, die Batterie nicht komplett voll zu laden, sondern nur bis zu einem einstellbaren SOC? Ich würde nämlich gerne noch etwas "Platz" in der Batterie lassen, falls dann im Winter die Sonne doch mal scheint. |
So geht es mir auch. Wie wird dann die Priorisierung des Hausbatterieladens gehandabt, wenn die Sonne scheint und der Batterie mit PV geladen wird? Wird dann auf das nachziehen aus dem Stromnetz verzichtet oder lädt er auf jeden Fall, wenn der Strompreis unter den eingestellten Schwellwert sinkt? Grüße, |
Es gibt keine Magie. Hier wird einfach die Ladung des Akkus unterhalb einer Preisschwelle gesteuert. Sonst ändert sich nichts. Alle weiteren Themen bitte separat diskutieren. |
This comment was marked as off-topic.
This comment was marked as off-topic.
Hier OT, bitte neue Diskussion. |
This PR adds charging from grid. Replaces #10814.
Battery mode is updated as follows:
Out of scope