Seltsames Ladeverhalten / nur eingeschränkte Leistung

Antworten
Bayek
Beiträge: 81
Registriert: Mi Okt 14, 2020 2:30 pm

Seltsames Ladeverhalten / nur eingeschränkte Leistung

Beitrag von Bayek »

Ich bin gestern Abend aus dem Urlaub zurückgekehrt und wollte über Nacht das Auto ein wenig aufladen.

Dazu habe ich den Modus "Sofort" aktiviert, und er startete auch direkt mit 11 kW. Aber nur für kurze Zeit, danach fiel die Ladeleistung auf 3,7 kW.

Noch mal Stecker gezogen und neu gesteckt, selbes Problem. Egal, was ich tue, er lädt erst für einige Sekunden auf voller Leistung, dann wird die Ladung erst unterbrochen und nach kurzer Zeit mit reduzierter Leistung zwischen 3,7 und knapp 7 kW fortgesetzt.

Dazu kommt eine seltsame Anzeige: Neben den 11 kW steht die 3 im Kreis (also dreiphasig), aber 6 A. 11 kW wären aber 16 A. Wenn die Ladeleistung später zurückfällt, steht dort immer noch die 3 im Kreis, aber 0 A.

Außerdem sehe ich manchmal rot "Mindeststrom aktiv: 6 A" im Display.

Im Debug-Log finde ich folgende immer wiederkehrende Auffälligkeit:

Code: Alles auswählen

2023-01-16 19:53:16: PID: 8609: **** FATAL ********************************* (LV0)
2023-01-16 19:53:16: PID: 8609: **** FATAL Regulation loop needs 15 seconds (LV0)
2023-01-16 19:53:16: PID: 8609: **** FATAL ********************************* (LV0)
2023-01-16 19:53:11: PID: 9766: Previous regulation loop still running. Skipping. (LV0) at 35 main /var/www/html/openWB/regel.sh
8609
2023-01-16 19:53:05: PID: 9131: Pause nach Umschaltung: 4s (LV0)
Ein Reboot der openWB hat nichts gebracht. Software ist die neueste Stable 1.9.288.

Vor dem Urlaub hat noch alles funktioniert. Ich habe (nach bestem Wissen und Gewissen) keine Einstellungen geändert seither.

Irgendwelche Tipps, wo ich noch nach der Ursache suchen kann?
Gero
Beiträge: 2368
Registriert: Sa Feb 20, 2021 9:55 am

Re: Seltsames Ladeverhalten / nur eingeschränkte Leistung

Beitrag von Gero »

Dieser "regulation loop" ist die Schleife, die die Regelung des Ladestroms erledigt. Die wird alle 10 Sekunden aufgerufen und prüft als allererstes, ob der vorherige Durchlauf beendet wurde. Das ist bei Dir nicht der Fall - da dauert die Regelschleife 15 Sekunden.

Du musst nun herausfinden, warum das so ist. Ursachen könnte z.B. ein nicht-erreichbarer oder nicht-sofort erreichbarer Stromzähler über (W)LAN sein. Da müssten noch andere Fehlermeldungen im Log sein. Das sind dann die ursächlichen.
openWB-series2, openWB-Buchse, E3/DC S10pro+19.5kWh, 30kWp Ost-Süd, Model 3 und Ion
Bayek
Beiträge: 81
Registriert: Mi Okt 14, 2020 2:30 pm

Re: Seltsames Ladeverhalten / nur eingeschränkte Leistung

Beitrag von Bayek »

Vielen Dank!

Code: Alles auswählen

AttributeError: 'NoneType' object has no attribute 'url'
return "Die Verbindung zum Server {} ist fehlgeschlagen. Überprüfe Adresse und Netzwerk.".format(e.request.url)
File "/var/www/html/openWB/packages/helpermodules/exceptions/requests.py", line 8, in handle_connection_error
result = entry.handler(exception)
File "/var/www/html/openWB/packages/helpermodules/exceptions/registry.py", line 31, in translate_exception
return exceptions.get_default_exception_registry().translate_exception(exception)
File "/var/www/html/openWB/packages/modules/common/fault_state.py", line 88, in from_exception
fault_state = FaultState.from_exception(exception)
File "/var/www/html/openWB/packages/modules/common/component_context.py", line 78, in override_subcomponent_state
MultiComponentUpdateContext.override_subcomponent_state(self.__component_info, exception, self.update_always)
File "/var/www/html/openWB/packages/modules/common/component_context.py", line 28, in __exit__
self.components[component].update()
File "/var/www/html/openWB/packages/modules/devices/kostal_piko/device.py", line 62, in update
dev.update()
File "/var/www/html/openWB/packages/modules/devices/kostal_piko/device.py", line 100, in read_legacy
parser.set_defaults(RUN=lambda args: function(*[getattr(args, argument_name) for argument_name in arg_spec.args]))
File "/var/www/html/openWB/packages/helpermodules/cli/_run_using_positional_cli_args.py", line 19, in <lambda>
args.RUN(args)
File "/var/www/html/openWB/packages/helpermodules/cli/_run_using_positional_cli_args.py", line 34, in run_using_positional_cli_args
run_using_positional_cli_args(read_legacy, argv)
File "/var/www/html/openWB/packages/modules/devices/kostal_piko/device.py", line 133, in main
importlib.import_module(parsed[0]).main(parsed[1:])
File "/var/www/html/openWB/packages/legacy_run_server.py", line 109, in handle_message
self.__callback(read_all_bytes(connection))
File "/var/www/html/openWB/packages/legacy_run_server.py", line 87, in handle_connection
yield
File "/var/www/html/openWB/packages/legacy_run_server.py", line 48, in redirect_stdout_stderr_exceptions_to_log
Traceback (most recent call last):

During handling of the above exception, another exception occurred:

requests.exceptions.ConnectionError: HTTPConnectionPool(host='192.168.178.127', port=80): Read timed out.
raise ConnectionError(e)
File "/usr/lib/python3/dist-packages/requests/models.py", line 710, in generate
self._content = bytes().join(self.iter_content(CONTENT_CHUNK_SIZE)) or bytes()
File "/usr/lib/python3/dist-packages/requests/models.py", line 781, in content
if not self.content:
File "/usr/lib/python3/dist-packages/requests/models.py", line 805, in text
session.hooks['response'].append(lambda r, *args, **kwargs: log.debug("Get-Response: " + r.text))
File "/var/www/html/openWB/packages/modules/common/req.py", line 11, in <lambda>
_hook_data = hook(hook_data, **kwargs)
File "/usr/lib/python3/dist-packages/requests/hooks.py", line 31, in dispatch_hook
r = dispatch_hook('response', hooks, r, **kwargs)
File "/usr/lib/python3/dist-packages/requests/sessions.py", line 615, in send
resp = self.send(prep, **send_kwargs)
File "/usr/lib/python3/dist-packages/requests/sessions.py", line 488, in request
return self.request('GET', url, **kwargs)
File "/usr/lib/python3/dist-packages/requests/sessions.py", line 501, in get
resp = req.get_http_session().get('http://'+self.ip_address+'/api/dxs.json', params=params, timeout=3).json()
File "/var/www/html/openWB/packages/modules/devices/kostal_piko/inverter.py", line 29, in get_values
power, exported = self.get_values()
File "/var/www/html/openWB/packages/modules/devices/kostal_piko/inverter.py", line 38, in update
self.components[component].update()
File "/var/www/html/openWB/packages/modules/devices/kostal_piko/device.py", line 62, in update
Traceback (most recent call last):

During handling of the above exception, another exception occurred:

requests.packages.urllib3.exceptions.ReadTimeoutError: HTTPConnectionPool(host='192.168.178.127', port=80): Read timed out.
raise ReadTimeoutError(self._pool, None, "Read timed out.")
File "/home/pi/.local/lib/python3.5/site-packages/urllib3/response.py", line 446, in _error_catcher
self.gen.throw(type, value, traceback)
File "/usr/lib/python3.5/contextlib.py", line 77, in __exit__
raise IncompleteRead(self._fp_bytes_read, self.length_remaining)
File "/home/pi/.local/lib/python3.5/site-packages/urllib3/response.py", line 544, in read
data = self.read(amt=amt, decode_content=decode_content)
File "/home/pi/.local/lib/python3.5/site-packages/urllib3/response.py", line 579, in stream
for chunk in self.raw.stream(chunk_size, decode_content=True):
File "/usr/lib/python3/dist-packages/requests/models.py", line 703, in generate
Traceback (most recent call last):

During handling of the above exception, another exception occurred:

socket.timeout: timed out
return self._sock.recv_into(b)
File "/usr/lib/python3.5/socket.py", line 576, in readinto
n = self.fp.readinto(b)
File "/usr/lib/python3.5/http/client.py", line 502, in readinto
n = self.readinto(b)
File "/usr/lib/python3.5/http/client.py", line 462, in read
data = self._fp.read(amt) if not fp_closed else b""
File "/home/pi/.local/lib/python3.5/site-packages/urllib3/response.py", line 522, in read
yield
File "/home/pi/.local/lib/python3.5/site-packages/urllib3/response.py", line 441, in _error_catcher
Traceback (most recent call last): 
2023-01-17 21:31:15: PID: 2723: legacy run server: Unhandled exception
Ich habe einen KOSTAL Energy Meter, welches als Strombezugsmodul "Kostal Energy Meter oder TQ EM410" konfiguriert ist. Es ist unter der angegebenen IP erreichbar und funktioniert normal. Auch openWB kann es offensichtlich erreichen, denn daher bezieht es ja die Werte für den Graphen, und der zeigt alles richtig an.
Gero
Beiträge: 2368
Registriert: Sa Feb 20, 2021 9:55 am

Re: Seltsames Ladeverhalten / nur eingeschränkte Leistung

Beitrag von Gero »

Naja, so ganz normal scheint er ja nicht zu funktionieren:
HTTPConnectionPool(host='192.168.178.127', port=80): Read timed out.
Es ist gut, wenn das Lesemodul so robust ist, dass es bei nicht-lesbarkeit den letzten Wert statt einer Null weiterverwendet. So sieht es wenigstens so aus, als ob alles normal laufen würde. Wenn eine Webseite gerade nicht erreichbar ist, dauert es ja auch einige Sekunden, bis die Meldung kommt "Computer ist nicht mit dem Internet verbunden". Und diese Sekunden sind es, die die Regelschleife verzögern.

Kuck mal, dass der Kostal sich besser im LAN benimmt und sofort Werte liefert und keine Timeouts.
openWB-series2, openWB-Buchse, E3/DC S10pro+19.5kWh, 30kWp Ost-Süd, Model 3 und Ion
Bayek
Beiträge: 81
Registriert: Mi Okt 14, 2020 2:30 pm

Re: Seltsames Ladeverhalten / nur eingeschränkte Leistung

Beitrag von Bayek »

Unter der 127 ist der Wechselrichter zu erreichen, nicht der Energy Meter.
Der ist unter PV-Modul "Kostal Piko" konfiguriert.

Spielt aber auch nicht so eine Rolle, ich kann ihn problemlos erreichen, er antwortet über die Weboberfläche (http, also auch Port 80) sofort und schnell. Da sehe ich kein Problem. Oder wie sonst soll ich das prüfen?

Es gibt auch ein PV-Modul "Kostal Piko alt". Was hat das zu bedeuten?
Bayek
Beiträge: 81
Registriert: Mi Okt 14, 2020 2:30 pm

Re: Seltsames Ladeverhalten / nur eingeschränkte Leistung

Beitrag von Bayek »

Ich habe nun auch einmal testweise das PV-Modul und das EVU-Modul entfernt. Fürs Sofortladen wird das ja gar nicht benötigt.
Der Fehler tritt weiterhin auf. Damit hat es also nichts zu tun.

Auch kann man bei Erhöhung des Loglevels sehen, dass die Werte bei aktiviertem Modul durchaus laufend erfolgreich vom Energy Meter abgefragt werden.
Bayek
Beiträge: 81
Registriert: Mi Okt 14, 2020 2:30 pm

Re: Seltsames Ladeverhalten / nur eingeschränkte Leistung

Beitrag von Bayek »

Ich habe nun noch einmal EVU- und PV-Module auf "nicht vorhanden" gesetzt und die openWB neu gestartet. Damit sollte sichergestellt sein, dass diese Module keinen Einfluss haben.

Um ziemlich exakt 13:10:00 habe ich dann den Lademodus von "Stop" auf "Sofort" umgestellt. Wie gehabt startete das Laden nach einigen Sekunden mit 11 kW, fiel dann aber recht bald wieder auf 4,2 kW zurück. Um 13:11:00 habe ich das Laden wieder gestoppt.

Hier der Debug-Log auf Level 1:

Code: Alles auswählen

2023-01-22 13:11:11: PID: 22749: **** Regulation loop start **** (LV1) at 77 main /var/www/html/openWB/regel.sh
2023-01-22 13:11:04: PID: 21353: Timing Umschaltung: 480 / 480 (LV1) at 17 u1p3pswitch u1p3p.sh
2023-01-22 13:11:04: PID: 21353: automatische Umschaltung aktiv (LV1) at 16 u1p3pswitch u1p3p.sh
2023-01-22 13:11:03: PID: 21353: Zeit zum abfragen aller Werte 2 Sekunden (LV1) at 183 main /var/www/html/openWB/regel.sh
2023-01-22 13:11:03: PID: 21353: chargestatlp1 1 chargestatlp2 0 chargestatlp3 0 (LV1) at 1310 loadvars loadvars.sh
2023-01-22 13:11:03: PID: 21353: plugstatlp1 1 plugstatlp2 0 plugstatlp3 0 (LV1) at 1309 loadvars loadvars.sh
2023-01-22 13:11:03: PID: 21353: lp1enabled 1 lp2enabled 1 lp3enabled 1 (LV1) at 1308 loadvars loadvars.sh
2023-01-22 13:11:03: PID: 21353: EVU 1:V/A 2: V/A 3: V/A (LV1) at 1307 loadvars loadvars.sh
2023-01-22 13:11:03: PID: 21353: lla3 6 llv3 235.4 llas13  llas23  soclp1 41 soclp2  (LV1) at 1306 loadvars loadvars.sh
2023-01-22 13:11:03: PID: 21353: lla2 6 llv2 235.2 llas12  llas22  sofortll 16 hausverbrauch 400 wattbezug 4604 uberschuss -4604 (LV1) at 1305 loadvars loadvars.sh
2023-01-22 13:11:03: PID: 21353: lla1 6 llv1 235.5 llas11  llas21  mindestuberschuss 1440 abschaltuberschuss 0 lademodus 3 (LV1) at 1304 loadvars loadvars.sh
2023-01-22 13:11:03: PID: 21353: pv1watt  pv2watt  pvwatt 0 ladeleistung 4204 llalt 0 nachtladen 1 nachtladen 0 minimalA 6 maximalA 32 (LV1) at 1303 loadvars loadvars.sh
2023-01-22 13:11:01: PID: 21353: **** Regulation loop start **** (LV1) at 77 main /var/www/html/openWB/regel.sh
2023-01-22 13:10:55: PID: 20041: Sofort ladung erhöht auf 6 bei minimal A 6 (LV1) at 104 sofortlademodus sofortlademodus.sh
2023-01-22 13:10:54: PID: 20041: Timing Umschaltung: 480 / 480 (LV1) at 17 u1p3pswitch u1p3p.sh
2023-01-22 13:10:54: PID: 20041: automatische Umschaltung aktiv (LV1) at 16 u1p3pswitch u1p3p.sh
2023-01-22 13:10:53: PID: 20041: Zeit zum abfragen aller Werte 2 Sekunden (LV1) at 183 main /var/www/html/openWB/regel.sh
2023-01-22 13:10:53: PID: 20041: chargestatlp1 1 chargestatlp2 0 chargestatlp3 0 (LV1) at 1310 loadvars loadvars.sh
2023-01-22 13:10:53: PID: 20041: plugstatlp1 1 plugstatlp2 0 plugstatlp3 0 (LV1) at 1309 loadvars loadvars.sh
2023-01-22 13:10:53: PID: 20041: lp1enabled 1 lp2enabled 1 lp3enabled 1 (LV1) at 1308 loadvars loadvars.sh
2023-01-22 13:10:53: PID: 20041: EVU 1:V/A 2: V/A 3: V/A (LV1) at 1307 loadvars loadvars.sh
2023-01-22 13:10:53: PID: 20041: lla3 6 llv3 235.6 llas13  llas23  soclp1 41 soclp2  (LV1) at 1306 loadvars loadvars.sh
2023-01-22 13:10:53: PID: 20041: lla2 6 llv2 235.2 llas12  llas22  sofortll 16 hausverbrauch 400 wattbezug 4605 uberschuss -4605 (LV1) at 1305 loadvars loadvars.sh
2023-01-22 13:10:53: PID: 20041: lla1 6 llv1 235.5 llas11  llas21  mindestuberschuss 1440 abschaltuberschuss 0 lademodus 0 (LV1) at 1304 loadvars loadvars.sh
2023-01-22 13:10:53: PID: 20041: pv1watt  pv2watt  pvwatt 0 ladeleistung 4205 llalt 0 nachtladen 1 nachtladen 0 minimalA 6 maximalA 32 (LV1) at 1303 loadvars loadvars.sh
2023-01-22 13:10:51: PID: 20041: **** Regulation loop start **** (LV1) at 77 main /var/www/html/openWB/regel.sh
2023-01-22 13:10:45: PID: 18753: Sofort ladung erhöht auf 6 bei minimal A 6 (LV1) at 104 sofortlademodus sofortlademodus.sh
2023-01-22 13:10:44: PID: 18753: Timing Umschaltung: 480 / 480 (LV1) at 17 u1p3pswitch u1p3p.sh
2023-01-22 13:10:44: PID: 18753: automatische Umschaltung aktiv (LV1) at 16 u1p3pswitch u1p3p.sh
2023-01-22 13:10:43: PID: 18753: Zeit zum abfragen aller Werte 2 Sekunden (LV1) at 183 main /var/www/html/openWB/regel.sh
2023-01-22 13:10:43: PID: 18753: chargestatlp1 1 chargestatlp2 0 chargestatlp3 0 (LV1) at 1310 loadvars loadvars.sh
2023-01-22 13:10:43: PID: 18753: plugstatlp1 1 plugstatlp2 0 plugstatlp3 0 (LV1) at 1309 loadvars loadvars.sh
2023-01-22 13:10:43: PID: 18753: lp1enabled 1 lp2enabled 1 lp3enabled 1 (LV1) at 1308 loadvars loadvars.sh
2023-01-22 13:10:43: PID: 18753: EVU 1:V/A 2: V/A 3: V/A (LV1) at 1307 loadvars loadvars.sh
2023-01-22 13:10:43: PID: 18753: lla3 6 llv3 235.5 llas13  llas23  soclp1 41 soclp2  (LV1) at 1306 loadvars loadvars.sh
2023-01-22 13:10:43: PID: 18753: lla2 6 llv2 235.3 llas12  llas22  sofortll 16 hausverbrauch 400 wattbezug 4604 uberschuss -4604 (LV1) at 1305 loadvars loadvars.sh
2023-01-22 13:10:43: PID: 18753: lla1 6 llv1 235.6 llas11  llas21  mindestuberschuss 1440 abschaltuberschuss 0 lademodus 0 (LV1) at 1304 loadvars loadvars.sh
2023-01-22 13:10:43: PID: 18753: pv1watt  pv2watt  pvwatt 0 ladeleistung 4204 llalt 0 nachtladen 1 nachtladen 0 minimalA 6 maximalA 32 (LV1) at 1303 loadvars loadvars.sh
2023-01-22 13:10:41: PID: 18753: **** Regulation loop start **** (LV1) at 77 main /var/www/html/openWB/regel.sh
2023-01-22 13:10:35: PID: 17468: Sofort ladung erhöht auf 6 bei minimal A 6 (LV1) at 104 sofortlademodus sofortlademodus.sh
2023-01-22 13:10:34: PID: 17468: Timing Umschaltung: 480 / 480 (LV1) at 17 u1p3pswitch u1p3p.sh
2023-01-22 13:10:34: PID: 17468: automatische Umschaltung aktiv (LV1) at 16 u1p3pswitch u1p3p.sh
2023-01-22 13:10:33: PID: 17468: Zeit zum abfragen aller Werte 2 Sekunden (LV1) at 183 main /var/www/html/openWB/regel.sh
2023-01-22 13:10:33: PID: 17468: chargestatlp1 1 chargestatlp2 0 chargestatlp3 0 (LV1) at 1310 loadvars loadvars.sh
2023-01-22 13:10:33: PID: 17468: plugstatlp1 1 plugstatlp2 0 plugstatlp3 0 (LV1) at 1309 loadvars loadvars.sh
2023-01-22 13:10:33: PID: 17468: lp1enabled 1 lp2enabled 1 lp3enabled 1 (LV1) at 1308 loadvars loadvars.sh
2023-01-22 13:10:33: PID: 17468: EVU 1:V/A 2: V/A 3: V/A (LV1) at 1307 loadvars loadvars.sh
2023-01-22 13:10:33: PID: 17468: lla3 15 llv3 234.3 llas13  llas23  soclp1 41 soclp2  (LV1) at 1306 loadvars loadvars.sh
2023-01-22 13:10:33: PID: 17468: lla2 15 llv2 234.1 llas12  llas22  sofortll 16 hausverbrauch 400 wattbezug 11242 uberschuss -11242 (LV1) at 1305 loadvars loadvars.sh
2023-01-22 13:10:33: PID: 17468: lla1 15 llv1 234.3 llas11  llas21  mindestuberschuss 1440 abschaltuberschuss 0 lademodus 0 (LV1) at 1304 loadvars loadvars.sh
2023-01-22 13:10:33: PID: 17468: pv1watt  pv2watt  pvwatt 0 ladeleistung 10842 llalt 0 nachtladen 1 nachtladen 0 minimalA 6 maximalA 32 (LV1) at 1303 loadvars loadvars.sh
2023-01-22 13:10:31: PID: 17468: **** Regulation loop start **** (LV1) at 77 main /var/www/html/openWB/regel.sh
2023-01-22 13:10:25: PID: 16207: Sofort ladung erreicht bei 16 A (LV1) at 115 sofortlademodus sofortlademodus.sh
2023-01-22 13:10:24: PID: 16207: Timing Umschaltung: 480 / 480 (LV1) at 17 u1p3pswitch u1p3p.sh
2023-01-22 13:10:24: PID: 16207: automatische Umschaltung aktiv (LV1) at 16 u1p3pswitch u1p3p.sh
2023-01-22 13:10:24: PID: 16207: Zeit zum abfragen aller Werte 3 Sekunden (LV1) at 183 main /var/www/html/openWB/regel.sh
2023-01-22 13:10:23: PID: 16207: chargestatlp1 1 chargestatlp2 0 chargestatlp3 0 (LV1) at 1310 loadvars loadvars.sh
2023-01-22 13:10:23: PID: 16207: plugstatlp1 1 plugstatlp2 0 plugstatlp3 0 (LV1) at 1309 loadvars loadvars.sh
2023-01-22 13:10:23: PID: 16207: lp1enabled 1 lp2enabled 1 lp3enabled 1 (LV1) at 1308 loadvars loadvars.sh
2023-01-22 13:10:23: PID: 16207: EVU 1:V/A 2: V/A 3: V/A (LV1) at 1307 loadvars loadvars.sh
2023-01-22 13:10:23: PID: 16207: lla3 15 llv3 234.4 llas13  llas23  soclp1 41 soclp2  (LV1) at 1306 loadvars loadvars.sh
2023-01-22 13:10:23: PID: 16207: lla2 15 llv2 234.1 llas12  llas22  sofortll 16 hausverbrauch 400 wattbezug 11240 uberschuss -11240 (LV1) at 1305 loadvars loadvars.sh
2023-01-22 13:10:23: PID: 16207: lla1 15 llv1 234.4 llas11  llas21  mindestuberschuss 1440 abschaltuberschuss 0 lademodus 0 (LV1) at 1304 loadvars loadvars.sh
2023-01-22 13:10:23: PID: 16207: pv1watt  pv2watt  pvwatt 0 ladeleistung 10840 llalt 16 nachtladen 1 nachtladen 0 minimalA 6 maximalA 32 (LV1) at 1303 loadvars loadvars.sh
2023-01-22 13:10:21: PID: 16207: **** Regulation loop start **** (LV1) at 77 main /var/www/html/openWB/regel.sh
2023-01-22 13:10:15: PID: 14937: Sofort ladung um 34 A Differenz auf 16 A erhoeht, kleiner als sofortll 16 (LV1) at 157 sofortlademodus sofortlademodus.sh
2023-01-22 13:10:14: PID: 14937: Timing Umschaltung: 480 / 480 (LV1) at 17 u1p3pswitch u1p3p.sh
2023-01-22 13:10:14: PID: 14937: automatische Umschaltung aktiv (LV1) at 16 u1p3pswitch u1p3p.sh
2023-01-22 13:10:13: PID: 14937: Zeit zum abfragen aller Werte 2 Sekunden (LV1) at 183 main /var/www/html/openWB/regel.sh
2023-01-22 13:10:13: PID: 14937: chargestatlp1 1 chargestatlp2 0 chargestatlp3 0 (LV1) at 1310 loadvars loadvars.sh
2023-01-22 13:10:13: PID: 14937: plugstatlp1 1 plugstatlp2 0 plugstatlp3 0 (LV1) at 1309 loadvars loadvars.sh
2023-01-22 13:10:13: PID: 14937: lp1enabled 1 lp2enabled 1 lp3enabled 1 (LV1) at 1308 loadvars loadvars.sh
2023-01-22 13:10:13: PID: 14937: EVU 1:V/A 2: V/A 3: V/A (LV1) at 1307 loadvars loadvars.sh
2023-01-22 13:10:13: PID: 14937: lla3 6 llv3 235.4 llas13  llas23  soclp1 41 soclp2  (LV1) at 1306 loadvars loadvars.sh
2023-01-22 13:10:13: PID: 14937: lla2 6 llv2 235.2 llas12  llas22  sofortll 16 hausverbrauch 400 wattbezug 4604 uberschuss -4604 (LV1) at 1305 loadvars loadvars.sh
2023-01-22 13:10:13: PID: 14937: lla1 6 llv1 235.4 llas11  llas21  mindestuberschuss 1440 abschaltuberschuss 0 lademodus 0 (LV1) at 1304 loadvars loadvars.sh
2023-01-22 13:10:13: PID: 14937: pv1watt  pv2watt  pvwatt 0 ladeleistung 4204 llalt 6 nachtladen 1 nachtladen 0 minimalA 6 maximalA 32 (LV1) at 1303 loadvars loadvars.sh
2023-01-22 13:10:11: PID: 14937: **** Regulation loop start **** (LV1) at 77 main /var/www/html/openWB/regel.sh
2023-01-22 13:10:04: PID: 13302: starte sofort Ladeleistung von 6 aus (LV1) at 68 sofortlademodus sofortlademodus.sh
2023-01-22 13:10:03: PID: 13302: Timing Umschaltung: 480 / 480 (LV1) at 17 u1p3pswitch u1p3p.sh
2023-01-22 13:10:03: PID: 13302: automatische Umschaltung aktiv (LV1) at 16 u1p3pswitch u1p3p.sh
2023-01-22 13:10:03: PID: 13302: Zeit zum abfragen aller Werte 2 Sekunden (LV1) at 183 main /var/www/html/openWB/regel.sh
2023-01-22 13:10:03: PID: 13314: ##### cron5min.sh finished ##### (LV0) at 317 main /var/www/html/openWB/runs/cron5min.sh
2023-01-22 13:10:03: PID: 13302: chargestatlp1 0 chargestatlp2 0 chargestatlp3 0 (LV1) at 1310 loadvars loadvars.sh
2023-01-22 13:10:03: PID: 13302: plugstatlp1 1 plugstatlp2 0 plugstatlp3 0 (LV1) at 1309 loadvars loadvars.sh
2023-01-22 13:10:03: PID: 13302: lp1enabled 1 lp2enabled 1 lp3enabled 1 (LV1) at 1308 loadvars loadvars.sh
2023-01-22 13:10:03: PID: 13302: EVU 1:V/A 2: V/A 3: V/A (LV1) at 1307 loadvars loadvars.sh
2023-01-22 13:10:03: PID: 13302: lla3 0 llv3 236.1 llas13  llas23  soclp1 41 soclp2  (LV1) at 1306 loadvars loadvars.sh
2023-01-22 13:10:03: PID: 13302: lla2 0 llv2 235.8 llas12  llas22  sofortll 16 hausverbrauch 400 wattbezug 400 uberschuss -400 (LV1) at 1305 loadvars loadvars.sh
2023-01-22 13:10:03: PID: 13302: lla1 0 llv1 235.9 llas11  llas21  mindestuberschuss 1440 abschaltuberschuss 0 lademodus 0 (LV1) at 1304 loadvars loadvars.sh
2023-01-22 13:10:03: PID: 13302: pv1watt  pv2watt  pvwatt 0 ladeleistung 0 llalt 0 nachtladen 1 nachtladen 0 minimalA 6 maximalA 32 (LV1) at 1303 loadvars loadvars.sh
2023-01-22 13:10:02: PID: 13314: logfile cleanup triggered (LV1) at 314 main /var/www/html/openWB/runs/cron5min.sh
2023-01-22 13:10:02: PID: 13314: starting evsecheck (LV1) at 310 main /var/www/html/openWB/runs/cron5min.sh
2023-01-22 13:10:02: PID: 13564: push buttons disabled (LV1) at 41 pushButtonsSetup /var/www/html/openWB/runs/pushButtons/pushButtonsHelper.sh
2023-01-22 13:10:02: PID: 13564: rse disabled (LV1) at 41 rseSetup /var/www/html/openWB/runs/rse/rseHelper.sh
2023-01-22 13:10:01: PID: 13564: external openWB or daemon mode not configured; checking network setup (LV1) at 77 start /var/www/html/openWB/runs/services.sh
2023-01-22 13:10:01: PID: 13564: legacy run server is already running (LV1) at 62 start /var/www/html/openWB/runs/services.sh
2023-01-22 13:10:01: PID: 13564: Starting legacy run server... (LV1) at 55 start /var/www/html/openWB/runs/services.sh
2023-01-22 13:10:01: PID: 13564: smart home handler is already running (LV1) at 48 start /var/www/html/openWB/runs/services.sh
2023-01-22 13:10:01: PID: 13564: Starting smart home handler... (LV1) at 45 start /var/www/html/openWB/runs/services.sh
2023-01-22 13:10:01: PID: 13564: mqtt handler is already running (LV1) at 38 start /var/www/html/openWB/runs/services.sh
2023-01-22 13:10:01: PID: 13564: Starting MQTT handler... (LV1) at 35 start /var/www/html/openWB/runs/services.sh
2023-01-22 13:10:01: PID: 13564: modbus tcp server already running (LV1) at 28 start /var/www/html/openWB/runs/services.sh
2023-01-22 13:10:01: PID: 13564: Starting modbus server... (LV1) at 25 start /var/www/html/openWB/runs/services.sh
2023-01-22 13:10:01: PID: 13564: Starting OpenWB services (LV0) at 22 start /var/www/html/openWB/runs/services.sh
2023-01-22 13:10:01: PID: 13314: current ip: 192.168.178.129 (LV1) at 293 main /var/www/html/openWB/runs/cron5min.sh
2023-01-22 13:10:01: PID: 13314: updating daily yield stats (LV1) at 164 main /var/www/html/openWB/runs/cron5min.sh
2023-01-22 13:10:01: PID: 13314: Netzschutz konfiguriert; aktuelle Frequenz: 4995 (LV1) at 109 main /var/www/html/openWB/runs/cron5min.sh
2023-01-22 13:10:01: PID: 13314: daily csv updated: /var/www/html/openWB/web/logging/data/daily/20230122.csv (LV1) at 101 main /var/www/html/openWB/runs/cron5min.sh
2023-01-22 13:10:01: PID: 13302: **** Regulation loop start **** (LV1) at 77 main /var/www/html/openWB/regel.sh
2023-01-22 13:10:01: PID: 13314: ##### cron5min.sh started ##### (LV0) at 23 main /var/www/html/openWB/runs/cron5min.sh
Ich kann keinen Hinweis darauf entdecken, woran es liegt.

Irgendwelche Tipps?
rouddae
Beiträge: 11
Registriert: Mo Okt 19, 2020 1:04 pm

Re: Seltsames Ladeverhalten / nur eingeschränkte Leistung

Beitrag von rouddae »

Hallo Bayek,

ich habe derzeit auch Probleme mit dem ladeverhalten, wenn auch bei mir etwas anderer Art, da die Ladung immer nach sehr kurzer Zeit beendet wird
viewtopic.php?t=6401

Der fehlerhafte Regulation Loop tauchte bei mir aber auch auf in den Logs und ich habe ebenfalls ein Kostal Smart Energy Meter (mit Plenticore WR + BYD Speicher und zusätzlichem Piko alt). Vielleicht gab es Anfang Januar beim KSEM ein Update? Ein neues vom 23.01.23 findet sich jedenfalls auch bei Kostal. Ich teste später mal ob dies was bringt.

Beste Grüße!
Bayek
Beiträge: 81
Registriert: Mi Okt 14, 2020 2:30 pm

Re: Seltsames Ladeverhalten / nur eingeschränkte Leistung

Beitrag von Bayek »

Danke, das ist interessant.

Der Punkt ist nur, dass ich Energy Meter und Wechselrichter in der openWB als "nicht vorhanden" deklariert und die openWB dann neu gestartet habe. Daher sollte es ja eigentlich keinen Zusammenhang geben. Aber vielleicht wird von der openWB nicht wirklich alles sauber deaktiviert.

Ich habe auch gestern ein Support-Ticket erstellt, und heute früh kam auch schon eine erste Antwort; diese half aber noch nicht weiter.
Antworten