Skip to content
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

SOC per MQTT wird nicht zuverlässig aktualisiert #18629

Closed
2 tasks done
ThomasWetzel opened this issue Feb 6, 2025 · 15 comments
Closed
2 tasks done

SOC per MQTT wird nicht zuverlässig aktualisiert #18629

ThomasWetzel opened this issue Feb 6, 2025 · 15 comments

Comments

@ThomasWetzel
Copy link

ThomasWetzel commented Feb 6, 2025

Unser Kia Niro erhält seinen SOC über ein MQTT Topic. (evcc/niro/soc)
Der SOC wird auch erkannt und im Log festgehalten:

[sma ] TRACE 2025/02/06 15:22:02 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/06 15:22:03 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/06 15:22:04 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[mqtt ] TRACE 2025/02/06 15:22:04 recv evcc/niro/soc: '36'
[mqtt ] TRACE 2025/02/06 15:22:04 recv evcc/superb/soc: '31'
[mqtt ] TRACE 2025/02/06 15:22:04 recv evcc/niro/range: '110'
[mqtt ] TRACE 2025/02/06 15:22:04 recv evcc/superb/range: '10'
[sma ] TRACE 2025/02/06 15:22:05 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/06 15:22:06 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/06 15:22:07 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/06 15:22:08 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]

Allerdings werden die 36% nicht gespeichert:

Image

Die 110 km Restreichweite werden allerdings empfangen und gespeichert.

Kann bitte jemand überprüfen, warum der SOC nicht zuverlässig gespeichert wird?

Ich kann gerne auch unterstützen.
Vielen Dank!

Steps to reproduce

  1. mir fällt kein Weg ein, das zu reproduzieren, außer das UPDATE-Statement in der Datenbank auszuwerten. Das wird aber leider nicht mitgetract.

Nach einem Neustart wird der SOC wieder korrekt angezeigt.

Configuration details

network:
  schema: http
  host: evcc.local
  port: 7070

log: trace
levels:
  cache: error

plant: e43e450bdc53f143da1713333cafc101b94e2d9c0caf32f6f7e72fb57ff0bcb2

interval: 30s

meters:
  - type: template
    template: sma-home-manager
    usage: grid
    host: 10.2.201.120
    name: sunny

  - name: solar-se-pv
    type: template
    template: sma-hybrid
    usage: pv
    modbus: tcpip
    id: 3
    host: 10.2.201.106
    port: 502

  - name: solar-se-battery
    type: template
    template: sma-hybrid
    usage: battery
    modbus: tcpip
    id: 3
    host: 10.2.201.106
    port: 502

  - name: solar-tripower
    type: template
    template: sma-inverter-modbus
    usage: pv
    modbus: tcpip
    id: 3
    host: 10.2.201.6
    port: 502

loadpoints:
  - title: Kia
    charger: openwb-2
    vehicle: kia
    mode: pv

  - title: Superb
    charger: openwb-1
    vehicle: superb
    mode: pv

vehicles:
  - name: kia
    type: custom
    capacity: 64
    soc:
      source: mqtt
      topic: evcc/niro/soc
    range:
      source: mqtt
      topic: evcc/niro/range

  - name: superb
    type: custom
    capacity: 25
    soc:
      source: mqtt
      topic: evcc/superb/soc
    range:
      source: mqtt
      topic: evcc/superb/range

chargers:
  - name: openwb-2
    type: template
    template: openwb-2.0
    host: 10.2.201.11
    connector: 2
    modbus: tcpip
    id: 1
    port: 1502

  - name: openwb-1
    type: template
    template: openwb-2.0
    host: 10.2.201.11
    connector: 1
    modbus: tcpip
    id: 1
    port: 1502

site:
  title: Zu Hause
  meters:
    grid: sunny
    pv:
      - solar-se-pv
      - solar-tripower
    battery:
      - solar-se-battery

mqtt:
  broker: 192.168.2.218:1883
  topic: evcc
  clientid: evcc
  user: homeassistant
  password: password

tariffs:
  grid:
    type: template
    template: tibber
    token: token

Log details

[sma   ] TRACE 2025/02/06 15:22:00 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma   ] TRACE 2025/02/06 15:22:01 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma   ] TRACE 2025/02/06 15:22:02 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma   ] TRACE 2025/02/06 15:22:03 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma   ] TRACE 2025/02/06 15:22:04 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[mqtt  ] TRACE 2025/02/06 15:22:04 recv evcc/niro/soc: '36'
[mqtt  ] TRACE 2025/02/06 15:22:04 recv evcc/superb/soc: '31'
[mqtt  ] TRACE 2025/02/06 15:22:04 recv evcc/niro/range: '110'
[mqtt  ] TRACE 2025/02/06 15:22:04 recv evcc/superb/range: '10'
[sma   ] TRACE 2025/02/06 15:22:05 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma   ] TRACE 2025/02/06 15:22:06 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma   ] TRACE 2025/02/06 15:22:07 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma   ] TRACE 2025/02/06 15:22:08 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma   ] TRACE 2025/02/06 15:22:09 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma   ] TRACE 2025/02/06 15:22:10 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma   ] TRACE 2025/02/06 15:22:10 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma   ] TRACE 2025/02/06 15:22:11 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma   ] TRACE 2025/02/06 15:22:12 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[site  ] DEBUG 2025/02/06 15:22:12 ----
[openwb-2.0] TRACE 2025/02/06 15:22:12 modbus: send 44 4a 00 00 00 06 01 04 27 d8 00 02
[openwb-2.0] TRACE 2025/02/06 15:22:12 modbus: recv 44 4a 00 00 00 07 01 04 04 00 00 00 00
[lp-1  ] DEBUG 2025/02/06 15:22:12 charge power: 0W
[openwb-2.0] TRACE 2025/02/06 15:22:12 modbus: send 44 4b 00 00 00 06 01 04 27 df 00 03
[openwb-2.0] TRACE 2025/02/06 15:22:12 modbus: recv 44 4b 00 00 00 09 01 04 06 00 00 00 00 00 00
[openwb-2.0] TRACE 2025/02/06 15:22:12 modbus: send 44 4c 00 00 00 06 01 04 27 74 00 02
[lp-1  ] DEBUG 2025/02/06 15:22:12 charge currents: [0 0 0]A
[openwb-2.0] TRACE 2025/02/06 15:22:12 modbus: recv 44 4c 00 00 00 07 01 04 04 00 00 00 00
[lp-2  ] DEBUG 2025/02/06 15:22:12 charge power: 0W
[openwb-2.0] TRACE 2025/02/06 15:22:12 modbus: send 44 4d 00 00 00 06 01 04 27 7b 00 03
[openwb-2.0] TRACE 2025/02/06 15:22:12 modbus: recv 44 4d 00 00 00 09 01 04 06 00 00 00 00 00 00
[lp-2  ] DEBUG 2025/02/06 15:22:12 charge currents: [0 0 0]A
[site  ] DEBUG 2025/02/06 15:22:12 grid power: 7W
[site  ] DEBUG 2025/02/06 15:22:12 grid powers: [77 61 -131]W
[site  ] DEBUG 2025/02/06 15:22:12 grid currents: [1.18 1.23 -1.11]A
[solar-tripower] TRACE 2025/02/06 15:22:12 modbus: send 43 73 00 00 00 06 03 04 78 37 00 02
[solar-tripower] TRACE 2025/02/06 15:22:12 modbus: recv 43 73 00 00 00 07 03 04 04 00 00 03 5e
[site  ] DEBUG 2025/02/06 15:22:12 pv 2 power: 862W
[solar-tripower] TRACE 2025/02/06 15:22:12 modbus: send 43 74 00 00 00 06 03 03 77 31 00 04
[solar-tripower] TRACE 2025/02/06 15:22:12 modbus: recv 43 74 00 00 00 0b 03 03 08 00 00 00 00 01 0b 86 30
[solar-se-battery] TRACE 2025/02/06 15:22:12 modbus: send ec 10 00 00 00 06 03 04 7a a3 00 02
[solar-se-battery] TRACE 2025/02/06 15:22:12 modbus: recv ec 10 00 00 00 07 03 04 04 00 00 00 00
[solar-se-battery] TRACE 2025/02/06 15:22:12 modbus: send ec 11 00 00 00 06 03 04 7a a1 00 02
[solar-se-battery] TRACE 2025/02/06 15:22:13 modbus: recv ec 11 00 00 00 07 03 04 04 00 00 02 09
[site  ] DEBUG 2025/02/06 15:22:13 battery 1 power: -521W
[solar-se-pv] TRACE 2025/02/06 15:22:13 modbus: send ec 12 00 00 00 06 03 03 78 35 00 02
[solar-se-pv] TRACE 2025/02/06 15:22:13 modbus: recv ec 12 00 00 00 07 03 03 04 00 00 00 b9
[solar-se-pv] TRACE 2025/02/06 15:22:13 modbus: send ec 13 00 00 00 06 03 03 78 f1 00 02
[solar-se-pv] TRACE 2025/02/06 15:22:13 modbus: recv ec 13 00 00 00 07 03 03 04 00 00 01 c8
[site  ] DEBUG 2025/02/06 15:22:13 pv 1 power: 641W
[solar-se-battery] TRACE 2025/02/06 15:22:13 modbus: send ec 14 00 00 00 06 03 03 7a a9 00 04
[solar-se-battery] TRACE 2025/02/06 15:22:13 modbus: recv ec 14 00 00 00 0b 03 03 08 00 00 00 00 00 34 c7 3f
[solar-se-battery] TRACE 2025/02/06 15:22:13 modbus: send ec 15 00 00 00 06 03 03 78 7d 00 02
[solar-se-battery] TRACE 2025/02/06 15:22:13 modbus: recv ec 15 00 00 00 07 03 03 04 00 00 00 0b
[site  ] DEBUG 2025/02/06 15:22:13 battery 1 soc: 11%
[solar-se-pv] TRACE 2025/02/06 15:22:13 modbus: send ec 16 00 00 00 06 03 03 77 31 00 04
[solar-se-pv] TRACE 2025/02/06 15:22:13 modbus: recv ec 16 00 00 00 0b 03 03 08 00 00 00 00 00 a7 3b b8
[site  ] DEBUG 2025/02/06 15:22:13 pv power: 1503W
[site  ] DEBUG 2025/02/06 15:22:13 site power: -514W
[openwb-2.0] TRACE 2025/02/06 15:22:13 modbus: send 44 4e 00 00 00 06 01 04 27 76 00 02
[openwb-2.0] TRACE 2025/02/06 15:22:13 modbus: recv 44 4e 00 00 00 07 01 04 04 00 48 3e 6f
[lp-2  ] DEBUG 2025/02/06 15:22:13 charge total import: 4734.575kWh
[openwb-2.0] TRACE 2025/02/06 15:22:13 modbus: send 44 4f 00 00 00 06 01 04 27 83 00 01
[openwb-2.0] TRACE 2025/02/06 15:22:13 modbus: recv 44 4f 00 00 00 05 01 04 02 00 00
[openwb-2.0] TRACE 2025/02/06 15:22:13 modbus: send 44 50 00 00 00 06 01 04 27 82 00 01
[openwb-2.0] TRACE 2025/02/06 15:22:13 modbus: recv 44 50 00 00 00 05 01 04 02 00 00
[lp-2  ] DEBUG 2025/02/06 15:22:13 charger status: A
[openwb-2.0] TRACE 2025/02/06 15:22:13 modbus: send 44 51 00 00 00 06 01 04 27 83 00 01
[openwb-2.0] TRACE 2025/02/06 15:22:13 modbus: recv 44 51 00 00 00 05 01 04 02 00 00
[openwb-2.0] TRACE 2025/02/06 15:22:13 modbus: send 44 52 00 00 00 06 01 04 27 82 00 01
[openwb-2.0] TRACE 2025/02/06 15:22:13 modbus: recv 44 52 00 00 00 05 01 04 02 00 00
[lp-2  ] DEBUG 2025/02/06 15:22:13 plan: charge 1h15m29s between 2025-02-07 04:00:00 +0100 CET until 2025-02-07 07:30:00 +0100 CET (power: 11040W, avg cost: 0.276)
[lp-2  ] TRACE 2025/02/06 15:22:13   slot from: 2025-02-07 04:00:00 +0100 CET to 2025-02-07 05:00:00 +0100 CET cost 0.276
[lp-2  ] TRACE 2025/02/06 15:22:13   slot from: 2025-02-07 05:00:00 +0100 CET to 2025-02-07 05:15:29 +0100 CET cost 0.277
[sma   ] TRACE 2025/02/06 15:22:13 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma   ] TRACE 2025/02/06 15:22:14 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma   ] TRACE 2025/02/06 15:22:15 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma   ] TRACE 2025/02/06 15:22:16 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma   ] TRACE 2025/02/06 15:22:17 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma   ] TRACE 2025/02/06 15:22:18 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma   ] TRACE 2025/02/06 15:22:19 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma   ] TRACE 2025/02/06 15:22:20 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma   ] TRACE 2025/02/06 15:22:21 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma   ] TRACE 2025/02/06 15:22:22 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma   ] TRACE 2025/02/06 15:22:23 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma   ] TRACE 2025/02/06 15:22:24 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma   ] TRACE 2025/02/06 15:22:25 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma   ] TRACE 2025/02/06 15:22:26 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]

What type of operating system or environment does evcc run on?

Linux

External automation

  • I have made sure that no external automation like HomeAssistant or Node-RED is active or accessing any of the mentioned devices when this issue occurs.

Nightly build

  • I have verified that the issue is reproducible with the latest nightly build

Version

v0.133.0

@StefanSchoof
Copy link
Contributor

Kann es sein, dass du den poll.mode entsprechend deiner Erwartung konfiguriert hast? https://docs.evcc.io/docs/reference/configuration/loadpoints#poll

@ThomasWetzel
Copy link
Author

Die Daten werden initial von einer HomeAssistant-Integration von Kia abgeholt und dann über eine zeitgesteuerte NodeRed-Automation jede Minute an das Topic aktualisiert.

Diese Daten kommen ja auch an. Das habe ich sowohl mit einem MQTT-Listener überprüft als auch wird der Wert von evcc erkannt, wie im Trace zu sehen ist.

Ein pull.mode kommt hier gar nicht imho vor. Die Reichweite, die 1:1 genauso konfiguriert ist, wird richtig gelesen und auch aktualisiert. Daher können wir den pull.mode - denke ich - ausschließen.

Das Verhalten ist leider auch nicht reproduzierbar, da durch einen Neustart die Werte wieder richtig aktualisiert werden.

Wäre es denkbar, die Datenbank-Kommandos zu tracen? Dann müssten wir, was in der Datenbank ankommt.

@mfuchs1984
Copy link
Contributor

Hast du eine längeres Logfile, das die Entwicklung zeigt?

@ThomasWetzel
Copy link
Author

ThomasWetzel commented Feb 7, 2025

Ich habe mal hier einen längeren MQTT-Auszug, der aber immer wieder das gleiche zeigt:

[mqtt ] TRACE 2025/02/07 09:00:09 recv evcc/niro/soc: '36'
[mqtt ] TRACE 2025/02/07 09:00:09 recv evcc/superb/soc: '53'
[mqtt ] TRACE 2025/02/07 09:00:09 recv evcc/niro/range: '110'
[mqtt ] TRACE 2025/02/07 09:00:09 recv evcc/superb/range: '18'
[mqtt ] TRACE 2025/02/07 09:01:09 recv evcc/niro/soc: '36'
[mqtt ] TRACE 2025/02/07 09:01:09 recv evcc/superb/soc: '53'
[mqtt ] TRACE 2025/02/07 09:01:09 recv evcc/niro/range: '110'
[mqtt ] TRACE 2025/02/07 09:01:09 recv evcc/superb/range: '18'
[mqtt ] TRACE 2025/02/07 09:02:09 recv evcc/niro/soc: '36'
[mqtt ] TRACE 2025/02/07 09:02:09 recv evcc/superb/soc: '53'
[mqtt ] TRACE 2025/02/07 09:02:09 recv evcc/niro/range: '110'
[mqtt ] TRACE 2025/02/07 09:02:09 recv evcc/superb/range: '18'
[mqtt ] TRACE 2025/02/07 09:03:09 recv evcc/niro/soc: '36'
[mqtt ] TRACE 2025/02/07 09:03:09 recv evcc/superb/soc: '53'
[mqtt ] TRACE 2025/02/07 09:03:09 recv evcc/niro/range: '110'
[mqtt ] TRACE 2025/02/07 09:03:09 recv evcc/superb/range: '18'
[mqtt ] TRACE 2025/02/07 09:04:09 recv evcc/niro/soc: '36'
[mqtt ] TRACE 2025/02/07 09:04:09 recv evcc/superb/soc: '53'
[mqtt ] TRACE 2025/02/07 09:04:09 recv evcc/niro/range: '110'
[mqtt ] TRACE 2025/02/07 09:04:09 recv evcc/superb/range: '18'
[mqtt ] TRACE 2025/02/07 09:05:09 recv evcc/niro/soc: '36'
[mqtt ] TRACE 2025/02/07 09:05:09 recv evcc/superb/soc: '53'
[mqtt ] TRACE 2025/02/07 09:05:09 recv evcc/niro/range: '110'
[mqtt ] TRACE 2025/02/07 09:05:09 recv evcc/superb/range: '18'
[mqtt ] TRACE 2025/02/07 09:06:09 recv evcc/niro/soc: '36'
[mqtt ] TRACE 2025/02/07 09:06:09 recv evcc/superb/soc: '53'
[mqtt ] TRACE 2025/02/07 09:06:09 recv evcc/niro/range: '110'
[mqtt ] TRACE 2025/02/07 09:06:09 recv evcc/superb/range: '18'
[mqtt ] TRACE 2025/02/07 09:07:09 recv evcc/niro/soc: '36'
[mqtt ] TRACE 2025/02/07 09:07:09 recv evcc/superb/soc: '53'
[mqtt ] TRACE 2025/02/07 09:07:09 recv evcc/niro/range: '110'
[mqtt ] TRACE 2025/02/07 09:07:09 recv evcc/superb/range: '18'
[mqtt ] TRACE 2025/02/07 09:08:09 recv evcc/niro/soc: '36'
[mqtt ] TRACE 2025/02/07 09:08:09 recv evcc/superb/soc: '53'
[mqtt ] TRACE 2025/02/07 09:08:09 recv evcc/niro/range: '110'
[mqtt ] TRACE 2025/02/07 09:08:09 recv evcc/superb/range: '18'
[mqtt ] TRACE 2025/02/07 09:09:09 recv evcc/niro/soc: '36'
[mqtt ] TRACE 2025/02/07 09:09:09 recv evcc/superb/soc: '53'
[mqtt ] TRACE 2025/02/07 09:09:09 recv evcc/niro/range: '110'
[mqtt ] TRACE 2025/02/07 09:09:09 recv evcc/superb/range: '18'
[mqtt ] TRACE 2025/02/07 09:10:09 recv evcc/niro/soc: '36'
[mqtt ] TRACE 2025/02/07 09:10:09 recv evcc/superb/soc: '53'
[mqtt ] TRACE 2025/02/07 09:10:09 recv evcc/niro/range: '110'
[mqtt ] TRACE 2025/02/07 09:10:09 recv evcc/superb/range: '18'
[mqtt ] TRACE 2025/02/07 09:11:09 recv evcc/niro/soc: '36'
[mqtt ] TRACE 2025/02/07 09:11:09 recv evcc/superb/soc: '53'
[mqtt ] TRACE 2025/02/07 09:11:09 recv evcc/niro/range: '110'
[mqtt ] TRACE 2025/02/07 09:11:09 recv evcc/superb/range: '18'
[mqtt ] TRACE 2025/02/07 09:12:09 recv evcc/niro/soc: '36'
[mqtt ] TRACE 2025/02/07 09:12:09 recv evcc/superb/soc: '53'
[mqtt ] TRACE 2025/02/07 09:12:09 recv evcc/niro/range: '110'
[mqtt ] TRACE 2025/02/07 09:12:09 recv evcc/superb/range: '18'
[mqtt ] TRACE 2025/02/07 09:13:09 recv evcc/niro/soc: '36'
[mqtt ] TRACE 2025/02/07 09:13:09 recv evcc/superb/soc: '53'
[mqtt ] TRACE 2025/02/07 09:13:09 recv evcc/niro/range: '110'
[mqtt ] TRACE 2025/02/07 09:13:09 recv evcc/superb/range: '18'
[mqtt ] TRACE 2025/02/07 09:14:09 recv evcc/niro/soc: '36'
[mqtt ] TRACE 2025/02/07 09:14:09 recv evcc/superb/soc: '53'
[mqtt ] TRACE 2025/02/07 09:14:09 recv evcc/niro/range: '110'
[mqtt ] TRACE 2025/02/07 09:14:09 recv evcc/superb/range: '18'
[mqtt ] TRACE 2025/02/07 09:15:09 recv evcc/niro/soc: '36'
[mqtt ] TRACE 2025/02/07 09:15:09 recv evcc/superb/soc: '53'
[mqtt ] TRACE 2025/02/07 09:15:09 recv evcc/niro/range: '110'
[mqtt ] TRACE 2025/02/07 09:15:09 recv evcc/superb/range: '18'
[mqtt ] TRACE 2025/02/07 09:16:09 recv evcc/niro/soc: '36'
[mqtt ] TRACE 2025/02/07 09:16:09 recv evcc/superb/soc: '53'
[mqtt ] TRACE 2025/02/07 09:16:09 recv evcc/niro/range: '110'
[mqtt ] TRACE 2025/02/07 09:16:09 recv evcc/superb/range: '18'
[mqtt ] TRACE 2025/02/07 09:17:09 recv evcc/niro/soc: '36'
[mqtt ] TRACE 2025/02/07 09:17:09 recv evcc/superb/soc: '53'
[mqtt ] TRACE 2025/02/07 09:17:09 recv evcc/niro/range: '110'
[mqtt ] TRACE 2025/02/07 09:17:09 recv evcc/superb/range: '18'
[mqtt ] TRACE 2025/02/07 09:18:09 recv evcc/niro/soc: '36'
[mqtt ] TRACE 2025/02/07 09:18:09 recv evcc/superb/soc: '53'
[mqtt ] TRACE 2025/02/07 09:18:09 recv evcc/niro/range: '110'
[mqtt ] TRACE 2025/02/07 09:18:09 recv evcc/superb/range: '18'
[mqtt ] TRACE 2025/02/07 09:19:09 recv evcc/niro/soc: '36'
[mqtt ] TRACE 2025/02/07 09:19:09 recv evcc/superb/soc: '53'
[mqtt ] TRACE 2025/02/07 09:19:09 recv evcc/niro/range: '110'
[mqtt ] TRACE 2025/02/07 09:19:09 recv evcc/superb/range: '18'
[mqtt ] TRACE 2025/02/07 09:20:09 recv evcc/niro/soc: '36'
[mqtt ] TRACE 2025/02/07 09:20:09 recv evcc/superb/soc: '53'
[mqtt ] TRACE 2025/02/07 09:20:09 recv evcc/niro/range: '110'
[mqtt ] TRACE 2025/02/07 09:20:09 recv evcc/superb/range: '18'
[mqtt ] TRACE 2025/02/07 09:21:09 recv evcc/niro/soc: '36'
[mqtt ] TRACE 2025/02/07 09:21:09 recv evcc/superb/soc: '53'
[mqtt ] TRACE 2025/02/07 09:21:09 recv evcc/niro/range: '110'
[mqtt ] TRACE 2025/02/07 09:21:09 recv evcc/superb/range: '18'
[mqtt ] TRACE 2025/02/07 09:22:09 recv evcc/niro/soc: '36'
[mqtt ] TRACE 2025/02/07 09:22:09 recv evcc/superb/soc: '53'
[mqtt ] TRACE 2025/02/07 09:22:09 recv evcc/niro/range: '110'
[mqtt ] TRACE 2025/02/07 09:22:09 recv evcc/superb/range: '18'
[mqtt ] TRACE 2025/02/07 09:23:09 recv evcc/niro/soc: '36'
[mqtt ] TRACE 2025/02/07 09:23:09 recv evcc/superb/soc: '53'
[mqtt ] TRACE 2025/02/07 09:23:09 recv evcc/niro/range: '110'
[mqtt ] TRACE 2025/02/07 09:23:09 recv evcc/superb/range: '18'
[mqtt ] TRACE 2025/02/07 09:24:09 recv evcc/niro/soc: '36'
[mqtt ] TRACE 2025/02/07 09:24:09 recv evcc/superb/soc: '53'
[mqtt ] TRACE 2025/02/07 09:24:09 recv evcc/niro/range: '110'
[mqtt ] TRACE 2025/02/07 09:24:09 recv evcc/superb/range: '18'
[mqtt ] TRACE 2025/02/07 09:25:09 recv evcc/niro/soc: '36'
[mqtt ] TRACE 2025/02/07 09:25:09 recv evcc/superb/soc: '53'
[mqtt ] TRACE 2025/02/07 09:25:09 recv evcc/niro/range: '110'
[mqtt ] TRACE 2025/02/07 09:25:09 recv evcc/superb/range: '18'
[mqtt ] TRACE 2025/02/07 09:26:09 recv evcc/niro/soc: '36'
[mqtt ] TRACE 2025/02/07 09:26:09 recv evcc/superb/soc: '53'
[mqtt ] TRACE 2025/02/07 09:26:09 recv evcc/niro/range: '110'
[mqtt ] TRACE 2025/02/07 09:26:09 recv evcc/superb/range: '18'
[mqtt ] TRACE 2025/02/07 09:27:09 recv evcc/niro/soc: '36'
[mqtt ] TRACE 2025/02/07 09:27:09 recv evcc/superb/soc: '53'
[mqtt ] TRACE 2025/02/07 09:27:09 recv evcc/niro/range: '110'
[mqtt ] TRACE 2025/02/07 09:27:09 recv evcc/superb/range: '18'
[mqtt ] TRACE 2025/02/07 09:28:09 recv evcc/niro/soc: '36'
[mqtt ] TRACE 2025/02/07 09:28:09 recv evcc/superb/soc: '53'
[mqtt ] TRACE 2025/02/07 09:28:09 recv evcc/niro/range: '110'
[mqtt ] TRACE 2025/02/07 09:28:09 recv evcc/superb/range: '18'
[mqtt ] TRACE 2025/02/07 09:29:09 recv evcc/niro/soc: '36'
[mqtt ] TRACE 2025/02/07 09:29:09 recv evcc/superb/soc: '53'
[mqtt ] TRACE 2025/02/07 09:29:09 recv evcc/niro/range: '110'
[mqtt ] TRACE 2025/02/07 09:29:09 recv evcc/superb/range: '18'
[mqtt ] TRACE 2025/02/07 09:30:09 recv evcc/niro/soc: '36'
[mqtt ] TRACE 2025/02/07 09:30:09 recv evcc/superb/soc: '53'
[mqtt ] TRACE 2025/02/07 09:30:09 recv evcc/niro/range: '110'
[mqtt ] TRACE 2025/02/07 09:30:09 recv evcc/superb/range: '18'
[mqtt ] TRACE 2025/02/07 09:31:09 recv evcc/niro/soc: '36'
[mqtt ] TRACE 2025/02/07 09:31:09 recv evcc/superb/soc: '53'
[mqtt ] TRACE 2025/02/07 09:31:09 recv evcc/niro/range: '110'
[mqtt ] TRACE 2025/02/07 09:31:09 recv evcc/superb/range: '18'
[mqtt ] TRACE 2025/02/07 09:32:09 recv evcc/niro/soc: '36'
[mqtt ] TRACE 2025/02/07 09:32:09 recv evcc/superb/soc: '53'
[mqtt ] TRACE 2025/02/07 09:32:09 recv evcc/niro/range: '110'
[mqtt ] TRACE 2025/02/07 09:32:09 recv evcc/superb/range: '18'

Nach einem Neustart von evcc wird dann der SOC richtig erkannt. (In der Datenbank wird der State vom SOC nicht vorgehalten, soweit ich das gesehen habe.)

[mqtt ] INFO 2025/02/07 09:38:14 connecting evcc at tcp://192.168.2.218:1883
[mqtt ] DEBUG 2025/02/07 09:38:14 tcp://192.168.2.218:1883 connected
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/title
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/mode
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/priority
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/minCurrent
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/maxCurrent
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/enableThreshold
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/disableThreshold
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/enableDelay
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/disableDelay
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/phasesConfigured
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/chargerPhases1p3p
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/phasesEnabled
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/phasesActive
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/phaseAction
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/phaseRemaining
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/pvAction
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/pvRemaining
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/chargerFeatureIntegratedDevice
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/chargerFeatureHeating
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/vehicleOdometer
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/vehicleName
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/vehicleSoc
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/vehicleRange
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/vehicleLimitSoc
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/effectivePriority
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/effectivePlanId
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/effectivePlanTime
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/effectivePlanSoc
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/effectiveMinCurrent
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/effectiveMaxCurrent
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/effectiveLimitSoc
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/vehicleDetectionActive
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/planEnergy
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/limitSoc
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/limitEnergy
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/planActive
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/batteryBoost
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/chargePower
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/chargeCurrents
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/chargeCurrents/l1
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/chargeCurrents/l2
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/chargeCurrents/l3
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/smartCostActive
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/chargeCurrent
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/sessionEnergy
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/sessionSolarPercentage
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/chargedEnergy
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/chargeDuration
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/chargeTotalImport
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/connectedDuration
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/vehicleWelcomeActive
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/connected
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/charging
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/enabled
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/planOverrun
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/chargerStatusReason
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/chargeRemainingDuration
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/chargeRemainingEnergy
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/sessionPricePerKWh
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/1/sessionPrice
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/title
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/mode
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/priority
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/minCurrent
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/maxCurrent
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/enableThreshold
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/disableThreshold
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/enableDelay
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/disableDelay
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/phasesConfigured
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/chargerPhases1p3p
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/phasesEnabled
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/phasesActive
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/phaseAction
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/phaseRemaining
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/pvAction
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/pvRemaining
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/chargerFeatureIntegratedDevice
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/chargerFeatureHeating
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/vehicleOdometer
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/vehicleName
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/vehicleSoc
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/vehicleRange
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/vehicleLimitSoc
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/effectivePriority
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/effectivePlanId
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/effectivePlanTime
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/effectivePlanSoc
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/effectiveMinCurrent
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/effectiveMaxCurrent
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/effectiveLimitSoc
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/vehicleDetectionActive
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/planEnergy
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/limitSoc
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/limitEnergy
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/planActive
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/batteryBoost
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/chargePower
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/chargeCurrents
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/chargeCurrents/l1
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/chargeCurrents/l2
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/chargeCurrents/l3
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/smartCostActive
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/chargeCurrent
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/sessionEnergy
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/sessionSolarPercentage
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/chargedEnergy
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/chargeDuration
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/chargeTotalImport
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/connectedDuration
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/chargerStatusReason
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/vehicleWelcomeActive
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/connected
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/charging
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/enabled
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/planOverrun
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/chargeRemainingEnergy
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/chargeRemainingDuration
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/sessionPricePerKWh
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/loadpoints/2/sessionPrice
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/vehicles
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/vehicles/superb/title
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/vehicles/superb/capacity
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/vehicles/superb/features
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/vehicles/superb/repeatingPlans
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/vehicles/superb/repeatingPlans/1/weekdays
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/vehicles/superb/repeatingPlans/1/weekdays/1
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/vehicles/superb/repeatingPlans/1/weekdays/2
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/vehicles/superb/repeatingPlans/1/weekdays/3
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/vehicles/superb/repeatingPlans/1/weekdays/4
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/vehicles/superb/repeatingPlans/1/weekdays/5
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/vehicles/superb/repeatingPlans/1/time
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/vehicles/superb/repeatingPlans/1/tz
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/vehicles/superb/repeatingPlans/1/soc
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/vehicles/superb/repeatingPlans/1/active
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/vehicles/kia/title
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/vehicles/kia/capacity
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/vehicles/kia/minSoc
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/vehicles/kia/features
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/vehicles/kia/repeatingPlans
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/vehicles/kia/repeatingPlans/1/weekdays
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/vehicles/kia/repeatingPlans/1/weekdays/1
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/vehicles/kia/repeatingPlans/1/weekdays/2
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/vehicles/kia/repeatingPlans/1/weekdays/3
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/vehicles/kia/repeatingPlans/1/weekdays/4
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/vehicles/kia/repeatingPlans/1/weekdays/5
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/vehicles/kia/repeatingPlans/1/time
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/vehicles/kia/repeatingPlans/1/tz
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/vehicles/kia/repeatingPlans/1/soc
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/vehicles/kia/repeatingPlans/1/active
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/updated
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/eebus
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/influx/insecure
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/interval
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/messaging
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/modbusproxy
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/mqtt/broker
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/mqtt/topic
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/mqtt/user
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/mqtt/clientID
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/network/schema
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/network/host
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/network/port
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/version
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/siteTitle
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/gridConfigured
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/pv
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/pv/1/power
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/pv/1/energy
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/pv/2/power
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/pv/2/energy
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/battery
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/battery/1/power
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/battery/1/capacity
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/battery/1/soc
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/battery/1/controllable
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/battery/1/energy
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/aux
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/ext
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/prioritySoc
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/bufferSoc
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/bufferStartSoc
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/batteryMode
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/batteryDischargeControl
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/residualPower
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/currency
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/smartCostType
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/batteryGridChargeActive
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/grid/power
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/grid/energy
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/grid/powers
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/grid/powers/1
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/grid/powers/2
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/grid/powers/3
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/grid/currents
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/grid/currents/1
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/grid/currents/2
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/grid/currents/3
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/pvPower
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/pvEnergy
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/batteryCapacity
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/batterySoc
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/batteryPower
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/batteryEnergy
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/homePower
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/greenShareHome
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/greenShareLoadpoints
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/tariffGrid
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/tariffPriceHome
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/tariffPriceLoadpoints
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/statistics/30d/chargedKWh
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/statistics/30d/avgPrice
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/statistics/30d/avgCo2
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/statistics/30d/solarPercentage
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/statistics/365d/solarPercentage
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/statistics/365d/chargedKWh
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/statistics/365d/avgPrice
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/statistics/365d/avgCo2
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/statistics/thisYear/solarPercentage
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/statistics/thisYear/chargedKWh
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/statistics/thisYear/avgPrice
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/statistics/thisYear/avgCo2
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/statistics/total/solarPercentage
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/statistics/total/chargedKWh
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/statistics/total/avgPrice
[mqtt ] TRACE 2025/02/07 09:38:16 delete: evcc/site/statistics/total/avgCo2
[mqtt ] TRACE 2025/02/07 09:39:09 recv evcc/niro/soc: '36'
[mqtt ] TRACE 2025/02/07 09:39:09 recv evcc/superb/soc: '53'
[mqtt ] TRACE 2025/02/07 09:39:09 recv evcc/niro/range: '110'
[mqtt ] TRACE 2025/02/07 09:39:09 recv evcc/superb/range: '18'
[mqtt ] TRACE 2025/02/07 09:40:09 recv evcc/niro/soc: '36'
[mqtt ] TRACE 2025/02/07 09:40:09 recv evcc/superb/soc: '53'
[mqtt ] TRACE 2025/02/07 09:40:09 recv evcc/niro/range: '110'
[mqtt ] TRACE 2025/02/07 09:40:09 recv evcc/superb/range: '18'
[mqtt ] TRACE 2025/02/07 09:41:09 recv evcc/niro/soc: '36'
[mqtt ] TRACE 2025/02/07 09:41:09 recv evcc/superb/soc: '53'
[mqtt ] TRACE 2025/02/07 09:41:09 recv evcc/niro/range: '110'
[mqtt ] TRACE 2025/02/07 09:41:09 recv evcc/superb/range: '18'

@andig
Copy link
Member

andig commented Feb 7, 2025

Die Logschnipsel helfen nicht da nirgendwo ersichtlich ist, welcher/ dass ein falscher vehicle soc verwendet würde. Ich mache zu bis es ein passendes Logfile gibt (loadpoint auf debug)

@andig andig closed this as completed Feb 7, 2025
@ThomasWetzel
Copy link
Author

Hier ist das gesamte Logfile auf Trace:

[site ] DEBUG 2025/02/07 13:31:17 ----
[openwb-2.0] TRACE 2025/02/07 13:31:17 modbus: send 11 22 00 00 00 06 01 04 27 74 00 02
[sma ] TRACE 2025/02/07 13:31:17 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[openwb-2.0] TRACE 2025/02/07 13:31:17 modbus: recv 11 22 00 00 00 07 01 04 04 00 00 00 00
[lp-2 ] DEBUG 2025/02/07 13:31:17 charge power: 0W
[openwb-2.0] TRACE 2025/02/07 13:31:17 modbus: send 11 23 00 00 00 06 01 04 27 7b 00 03
[openwb-2.0] TRACE 2025/02/07 13:31:17 modbus: recv 11 23 00 00 00 09 01 04 06 00 00 00 00 00 00
[openwb-2.0] TRACE 2025/02/07 13:31:17 modbus: send 11 24 00 00 00 06 01 04 27 d8 00 02
[lp-2 ] DEBUG 2025/02/07 13:31:17 charge currents: [0 0 0]A
[openwb-2.0] TRACE 2025/02/07 13:31:17 modbus: recv 11 24 00 00 00 07 01 04 04 00 00 0a 7d
[lp-1 ] DEBUG 2025/02/07 13:31:17 charge power: 2685W
[openwb-2.0] TRACE 2025/02/07 13:31:17 modbus: send 11 25 00 00 00 06 01 04 27 df 00 03
[openwb-2.0] TRACE 2025/02/07 13:31:17 modbus: recv 11 25 00 00 00 09 01 04 06 02 57 02 54 00 00
[lp-1 ] DEBUG 2025/02/07 13:31:17 charge currents: [5.99 5.96 0]A
[site ] DEBUG 2025/02/07 13:31:17 grid power: 1368W
[solar-tripower] TRACE 2025/02/07 13:31:17 modbus: send 03 a5 00 00 00 06 03 04 78 37 00 02
[site ] DEBUG 2025/02/07 13:31:17 grid powers: [883 -386 871]W
[site ] DEBUG 2025/02/07 13:31:17 grid currents: [4.28 -2.07 4.2]A
[solar-tripower] TRACE 2025/02/07 13:31:17 modbus: recv 03 a5 00 00 00 07 03 04 04 00 00 06 75
[site ] DEBUG 2025/02/07 13:31:17 pv 2 power: 1653W
[solar-tripower] TRACE 2025/02/07 13:31:17 modbus: send 03 a6 00 00 00 06 03 03 77 31 00 04
[solar-tripower] TRACE 2025/02/07 13:31:17 modbus: recv 03 a6 00 00 00 0b 03 03 08 00 00 00 00 01 0b b1 b3
[solar-se-battery] TRACE 2025/02/07 13:31:17 modbus: send 0c bf 00 00 00 06 03 04 7a a3 00 02
[solar-se-battery] TRACE 2025/02/07 13:31:17 modbus: recv 0c bf 00 00 00 07 03 04 04 00 00 00 00
[solar-se-battery] TRACE 2025/02/07 13:31:17 modbus: send 0c c0 00 00 00 06 03 04 7a a1 00 02
[solar-se-battery] TRACE 2025/02/07 13:31:17 modbus: recv 0c c0 00 00 00 07 03 04 04 00 00 00 00
[site ] DEBUG 2025/02/07 13:31:17 battery 1 power: 0W
[solar-se-pv] TRACE 2025/02/07 13:31:17 modbus: send 0c c1 00 00 00 06 03 03 78 35 00 02
[solar-se-pv] TRACE 2025/02/07 13:31:17 modbus: recv 0c c1 00 00 00 07 03 03 04 00 00 01 48
[solar-se-pv] TRACE 2025/02/07 13:31:17 modbus: send 0c c2 00 00 00 06 03 03 78 f1 00 02
[solar-se-pv] TRACE 2025/02/07 13:31:17 modbus: recv 0c c2 00 00 00 07 03 03 04 00 00 02 a2
[site ] DEBUG 2025/02/07 13:31:17 pv 1 power: 1002W
[solar-se-battery] TRACE 2025/02/07 13:31:17 modbus: send 0c c3 00 00 00 06 03 03 7a a9 00 04
[solar-se-battery] TRACE 2025/02/07 13:31:17 modbus: recv 0c c3 00 00 00 0b 03 03 08 00 00 00 00 00 34 cc 00
[solar-se-battery] TRACE 2025/02/07 13:31:17 modbus: send 0c c4 00 00 00 06 03 03 78 7d 00 02
[solar-se-battery] TRACE 2025/02/07 13:31:17 modbus: recv 0c c4 00 00 00 07 03 03 04 00 00 00 06
[site ] DEBUG 2025/02/07 13:31:17 battery 1 soc: 6%
[solar-se-pv] TRACE 2025/02/07 13:31:17 modbus: send 0c c5 00 00 00 06 03 03 77 31 00 04
[solar-se-pv] TRACE 2025/02/07 13:31:17 modbus: recv 0c c5 00 00 00 0b 03 03 08 00 00 00 00 00 a7 52 f2
[site ] DEBUG 2025/02/07 13:31:17 pv power: 2655W
[site ] DEBUG 2025/02/07 13:31:17 site power: 1368W
[lp-1 ] DEBUG 2025/02/07 13:31:17 detected active phases: 2p
[openwb-2.0] TRACE 2025/02/07 13:31:17 modbus: send 11 26 00 00 00 06 01 04 27 da 00 02
[openwb-2.0] TRACE 2025/02/07 13:31:17 modbus: recv 11 26 00 00 00 07 01 04 04 00 43 1e 2e
[openwb-2.0] TRACE 2025/02/07 13:31:17 modbus: send 11 27 00 00 00 06 01 04 27 da 00 02
[openwb-2.0] TRACE 2025/02/07 13:31:17 modbus: recv 11 27 00 00 00 07 01 04 04 00 43 1e 2e
[lp-1 ] DEBUG 2025/02/07 13:31:17 charge total import: 4398.638kWh
[openwb-2.0] TRACE 2025/02/07 13:31:17 modbus: send 11 28 00 00 00 06 01 04 27 e7 00 01
[openwb-2.0] TRACE 2025/02/07 13:31:17 modbus: recv 11 28 00 00 00 05 01 04 02 00 01
[lp-1 ] DEBUG 2025/02/07 13:31:17 charger status: C
[openwb-2.0] TRACE 2025/02/07 13:31:17 modbus: send 11 29 00 00 00 06 01 04 28 14 00 0a
[openwb-2.0] TRACE 2025/02/07 13:31:17 modbus: recv 11 29 00 00 00 17 01 04 14 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[lp-1 ] DEBUG 2025/02/07 13:31:17 soc estimated: 89.15% (vehicle: 70.00%)
[lp-1 ] DEBUG 2025/02/07 13:31:17 vehicle soc: 89%
[lp-1 ] DEBUG 2025/02/07 13:31:17 vehicle range: 234km
[lp-1 ] DEBUG 2025/02/07 13:31:18 !! pvScalePhases DOWN activePhases: 2, available power: 1316W, scalable: true
[lp-1 ] DEBUG 2025/02/07 13:31:18 available power 1316W < 2760W min 2p threshold
[lp-1 ] DEBUG 2025/02/07 13:31:18 phase scale1p in 0s
[openwb-2.0] TRACE 2025/02/07 13:31:18 modbus: send 11 2a 00 00 00 06 01 06 28 28 00 01
[openwb-2.0] TRACE 2025/02/07 13:31:18 modbus: recv 11 2a 00 00 00 06 01 06 28 28 00 01
[openwb-2.0] TRACE 2025/02/07 13:31:18 modbus: send 11 2b 00 00 00 06 01 06 28 29 00 01
[openwb-2.0] TRACE 2025/02/07 13:31:18 modbus: recv 11 2b 00 00 00 06 01 06 28 29 00 01
[lp-1 ] DEBUG 2025/02/07 13:31:18 switched phases: 1p
[lp-1 ] DEBUG 2025/02/07 13:31:18 phase timer inactive
[lp-1 ] DEBUG 2025/02/07 13:31:18 pv charge current: 0.05A = 6A + -5.95A (1368W @ 1p)
[lp-1 ] DEBUG 2025/02/07 13:31:18 projected site power 1368W >= 0W disable threshold
[lp-1 ] DEBUG 2025/02/07 13:31:18 pv disable in 2m0s
[lp-1 ] DEBUG 2025/02/07 13:31:18 pv disable timer remaining: 2m0s
[sma ] TRACE 2025/02/07 13:31:18 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:31:19 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:31:20 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:31:21 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:31:22 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:31:23 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:31:24 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:31:25 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:31:26 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:31:27 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:31:28 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:31:29 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:31:30 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:31:31 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:31:32 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:31:33 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:31:34 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:31:35 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:31:36 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:31:37 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:31:38 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:31:39 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:31:40 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:31:41 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:31:42 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:31:43 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:31:44 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:31:45 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:31:45 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:31:46 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:31:47 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[site ] DEBUG 2025/02/07 13:31:47 ----
[openwb-2.0] TRACE 2025/02/07 13:31:47 modbus: send 11 2c 00 00 00 06 01 04 27 d8 00 02
[openwb-2.0] TRACE 2025/02/07 13:31:47 modbus: recv 11 2c 00 00 00 07 01 04 04 00 00 0a 64
[lp-1 ] DEBUG 2025/02/07 13:31:47 charge power: 2660W
[openwb-2.0] TRACE 2025/02/07 13:31:47 modbus: send 11 2d 00 00 00 06 01 04 27 df 00 03
[openwb-2.0] TRACE 2025/02/07 13:31:47 modbus: recv 11 2d 00 00 00 09 01 04 06 00 40 02 59 02 40
[openwb-2.0] TRACE 2025/02/07 13:31:47 modbus: send 11 2e 00 00 00 06 01 04 27 74 00 02
[lp-1 ] DEBUG 2025/02/07 13:31:47 charge currents: [0.64 6.01 5.76]A
[openwb-2.0] TRACE 2025/02/07 13:31:47 modbus: recv 11 2e 00 00 00 07 01 04 04 00 00 00 00
[lp-2 ] DEBUG 2025/02/07 13:31:47 charge power: 0W
[openwb-2.0] TRACE 2025/02/07 13:31:47 modbus: send 11 2f 00 00 00 06 01 04 27 7b 00 03
[openwb-2.0] TRACE 2025/02/07 13:31:47 modbus: recv 11 2f 00 00 00 09 01 04 06 00 00 00 00 00 00
[lp-2 ] DEBUG 2025/02/07 13:31:47 charge currents: [0 0 0]A
[site ] DEBUG 2025/02/07 13:31:47 grid power: 1286W
[site ] DEBUG 2025/02/07 13:31:47 grid powers: [854 948 -516]W
[site ] DEBUG 2025/02/07 13:31:47 grid currents: [4.18 4.46 -2.66]A
[solar-tripower] TRACE 2025/02/07 13:31:47 modbus: send 03 a7 00 00 00 06 03 04 78 37 00 02
[solar-se-pv] TRACE 2025/02/07 13:31:47 modbus: send 0c c6 00 00 00 06 03 03 78 35 00 02
[solar-tripower] TRACE 2025/02/07 13:31:47 modbus: recv 03 a7 00 00 00 07 03 04 04 00 00 06 c5
[site ] DEBUG 2025/02/07 13:31:47 pv 2 power: 1733W
[solar-tripower] TRACE 2025/02/07 13:31:47 modbus: send 03 a8 00 00 00 06 03 03 77 31 00 04
[solar-tripower] TRACE 2025/02/07 13:31:47 modbus: recv 03 a8 00 00 00 0b 03 03 08 00 00 00 00 01 0b b1 c1
[solar-se-pv] TRACE 2025/02/07 13:31:47 modbus: recv 0c c6 00 00 00 07 03 03 04 00 00 01 56
[solar-se-pv] TRACE 2025/02/07 13:31:47 modbus: send 0c c7 00 00 00 06 03 03 78 f1 00 02
[solar-se-pv] TRACE 2025/02/07 13:31:47 modbus: recv 0c c7 00 00 00 07 03 03 04 00 00 02 c8
[site ] DEBUG 2025/02/07 13:31:47 pv 1 power: 1054W
[solar-se-battery] TRACE 2025/02/07 13:31:47 modbus: send 0c c8 00 00 00 06 03 04 7a a3 00 02
[solar-se-battery] TRACE 2025/02/07 13:31:47 modbus: recv 0c c8 00 00 00 07 03 04 04 00 00 00 00
[solar-se-battery] TRACE 2025/02/07 13:31:47 modbus: send 0c c9 00 00 00 06 03 04 7a a1 00 02
[solar-se-battery] TRACE 2025/02/07 13:31:47 modbus: recv 0c c9 00 00 00 07 03 04 04 00 00 00 00
[site ] DEBUG 2025/02/07 13:31:47 battery 1 power: 0W
[solar-se-pv] TRACE 2025/02/07 13:31:47 modbus: send 0c ca 00 00 00 06 03 03 77 31 00 04
[solar-se-pv] TRACE 2025/02/07 13:31:47 modbus: recv 0c ca 00 00 00 0b 03 03 08 00 00 00 00 00 a7 52 f5
[site ] DEBUG 2025/02/07 13:31:47 pv power: 2787W
[solar-se-battery] TRACE 2025/02/07 13:31:47 modbus: send 0c cb 00 00 00 06 03 03 7a a9 00 04
[solar-se-battery] TRACE 2025/02/07 13:31:47 modbus: recv 0c cb 00 00 00 0b 03 03 08 00 00 00 00 00 34 cc 00
[solar-se-battery] TRACE 2025/02/07 13:31:47 modbus: send 0c cc 00 00 00 06 03 03 78 7d 00 02
[solar-se-battery] TRACE 2025/02/07 13:31:47 modbus: recv 0c cc 00 00 00 07 03 03 04 00 00 00 06
[site ] DEBUG 2025/02/07 13:31:47 battery 1 soc: 6%
[site ] DEBUG 2025/02/07 13:31:47 site power: 1286W
[openwb-2.0] TRACE 2025/02/07 13:31:47 modbus: send 11 30 00 00 00 06 01 04 27 76 00 02
[openwb-2.0] TRACE 2025/02/07 13:31:47 modbus: recv 11 30 00 00 00 07 01 04 04 00 48 53 5a
[lp-2 ] DEBUG 2025/02/07 13:31:47 charge total import: 4739.930kWh
[openwb-2.0] TRACE 2025/02/07 13:31:47 modbus: send 11 31 00 00 00 06 01 04 27 83 00 01
[openwb-2.0] TRACE 2025/02/07 13:31:47 modbus: recv 11 31 00 00 00 05 01 04 02 00 00
[openwb-2.0] TRACE 2025/02/07 13:31:47 modbus: send 11 32 00 00 00 06 01 04 27 82 00 01
[openwb-2.0] TRACE 2025/02/07 13:31:47 modbus: recv 11 32 00 00 00 05 01 04 02 00 01
[lp-2 ] DEBUG 2025/02/07 13:31:47 charger status: B
[openwb-2.0] TRACE 2025/02/07 13:31:47 modbus: send 11 33 00 00 00 06 01 04 27 b0 00 0a
[openwb-2.0] TRACE 2025/02/07 13:31:47 modbus: recv 11 33 00 00 00 17 01 04 14 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[openwb-2.0] TRACE 2025/02/07 13:31:47 modbus: send 11 34 00 00 00 06 01 04 27 83 00 01
[openwb-2.0] TRACE 2025/02/07 13:31:47 modbus: recv 11 34 00 00 00 05 01 04 02 00 00
[openwb-2.0] TRACE 2025/02/07 13:31:47 modbus: send 11 35 00 00 00 06 01 04 27 82 00 01
[openwb-2.0] TRACE 2025/02/07 13:31:47 modbus: recv 11 35 00 00 00 05 01 04 02 00 01
[lp-2 ] DEBUG 2025/02/07 13:31:47 plan: charge 0s between 0001-01-01 00:53:28 +0053 LMT until 2025-02-10 07:30:00 +0100 CET (power: 11040W, avg cost: NaN)
[lp-2 ] DEBUG 2025/02/07 13:31:47 !! pvScalePhases DOWN activePhases: 1, available power: -1286W, scalable: false
[lp-2 ] DEBUG 2025/02/07 13:31:47 !! pvScalePhases UP maxPhases: 3, available power: -1286W, scalable: false
[lp-2 ] DEBUG 2025/02/07 13:31:47 !! pvScalePhases EXIT
[lp-2 ] DEBUG 2025/02/07 13:31:47 pv charge current: 0A = 0A + -5.59A (1286W @ 1p)
[sma ] TRACE 2025/02/07 13:31:48 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:31:49 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:31:50 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:31:51 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:31:52 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:31:53 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:31:54 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:31:55 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:31:56 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:31:57 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:31:58 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:31:59 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:00 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:01 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:02 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:03 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:04 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:05 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:06 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:07 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:08 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:09 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:10 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[mqtt ] TRACE 2025/02/07 13:32:10 recv evcc/niro/soc: '70'
[mqtt ] TRACE 2025/02/07 13:32:10 recv evcc/superb/soc: '7'
[mqtt ] TRACE 2025/02/07 13:32:10 recv evcc/niro/range: '234'
[mqtt ] TRACE 2025/02/07 13:32:10 recv evcc/superb/range: '1'
[sma ] TRACE 2025/02/07 13:32:11 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:12 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:13 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:14 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:15 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:16 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:17 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:17 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[site ] DEBUG 2025/02/07 13:32:17 ----
[openwb-2.0] TRACE 2025/02/07 13:32:17 modbus: send 11 36 00 00 00 06 01 04 27 74 00 02
[openwb-2.0] TRACE 2025/02/07 13:32:17 modbus: recv 11 36 00 00 00 07 01 04 04 00 00 00 00
[lp-2 ] DEBUG 2025/02/07 13:32:17 charge power: 0W
[openwb-2.0] TRACE 2025/02/07 13:32:17 modbus: send 11 37 00 00 00 06 01 04 27 7b 00 03
[openwb-2.0] TRACE 2025/02/07 13:32:17 modbus: recv 11 37 00 00 00 09 01 04 06 00 00 00 00 00 00
[lp-2 ] DEBUG 2025/02/07 13:32:17 charge currents: [0 0 0]A
[openwb-2.0] TRACE 2025/02/07 13:32:17 modbus: send 11 38 00 00 00 06 01 04 27 d8 00 02
[openwb-2.0] TRACE 2025/02/07 13:32:17 modbus: recv 11 38 00 00 00 07 01 04 04 00 00 0a 62
[lp-1 ] DEBUG 2025/02/07 13:32:17 charge power: 2658W
[openwb-2.0] TRACE 2025/02/07 13:32:17 modbus: send 11 39 00 00 00 06 01 04 27 df 00 03
[openwb-2.0] TRACE 2025/02/07 13:32:17 modbus: recv 11 39 00 00 00 09 01 04 06 00 40 02 58 02 40
[lp-1 ] DEBUG 2025/02/07 13:32:17 charge currents: [0.64 6 5.76]A
[site ] DEBUG 2025/02/07 13:32:17 grid power: 1106W
[solar-se-battery] TRACE 2025/02/07 13:32:17 modbus: send 0c cd 00 00 00 06 03 04 7a a3 00 02
[site ] DEBUG 2025/02/07 13:32:17 grid powers: [813 862 -568]W
[site ] DEBUG 2025/02/07 13:32:17 grid currents: [4.02 4.09 -2.85]A
[solar-tripower] TRACE 2025/02/07 13:32:17 modbus: send 03 a9 00 00 00 06 03 04 78 37 00 02
[solar-tripower] TRACE 2025/02/07 13:32:17 modbus: recv 03 a9 00 00 00 07 03 04 04 00 00 06 f1
[site ] DEBUG 2025/02/07 13:32:17 pv 2 power: 1777W
[solar-tripower] TRACE 2025/02/07 13:32:17 modbus: send 03 aa 00 00 00 06 03 03 77 31 00 04
[solar-tripower] TRACE 2025/02/07 13:32:17 modbus: recv 03 aa 00 00 00 0b 03 03 08 00 00 00 00 01 0b b1 d0
[solar-se-battery] TRACE 2025/02/07 13:32:17 modbus: recv 0c cd 00 00 00 07 03 04 04 00 00 00 00
[solar-se-battery] TRACE 2025/02/07 13:32:17 modbus: send 0c ce 00 00 00 06 03 04 7a a1 00 02
[solar-se-battery] TRACE 2025/02/07 13:32:17 modbus: recv 0c ce 00 00 00 07 03 04 04 00 00 00 00
[site ] DEBUG 2025/02/07 13:32:17 battery 1 power: 0W
[solar-se-pv] TRACE 2025/02/07 13:32:17 modbus: send 0c cf 00 00 00 06 03 03 78 35 00 02
[solar-se-pv] TRACE 2025/02/07 13:32:17 modbus: recv 0c cf 00 00 00 07 03 03 04 00 00 01 65
[solar-se-pv] TRACE 2025/02/07 13:32:17 modbus: send 0c d0 00 00 00 06 03 03 78 f1 00 02
[solar-se-pv] TRACE 2025/02/07 13:32:17 modbus: recv 0c d0 00 00 00 07 03 03 04 00 00 03 08
[site ] DEBUG 2025/02/07 13:32:17 pv 1 power: 1133W
[solar-se-battery] TRACE 2025/02/07 13:32:17 modbus: send 0c d1 00 00 00 06 03 03 7a a9 00 04
[solar-se-battery] TRACE 2025/02/07 13:32:17 modbus: recv 0c d1 00 00 00 0b 03 03 08 00 00 00 00 00 34 cc 00
[solar-se-battery] TRACE 2025/02/07 13:32:17 modbus: send 0c d2 00 00 00 06 03 03 78 7d 00 02
[solar-se-battery] TRACE 2025/02/07 13:32:17 modbus: recv 0c d2 00 00 00 07 03 03 04 00 00 00 06
[site ] DEBUG 2025/02/07 13:32:17 battery 1 soc: 6%
[solar-se-pv] TRACE 2025/02/07 13:32:17 modbus: send 0c d3 00 00 00 06 03 03 77 31 00 04
[solar-se-pv] TRACE 2025/02/07 13:32:17 modbus: recv 0c d3 00 00 00 0b 03 03 08 00 00 00 00 00 a7 52 fd
[site ] DEBUG 2025/02/07 13:32:17 pv power: 2910W
[site ] DEBUG 2025/02/07 13:32:17 site power: 1106W
[openwb-2.0] TRACE 2025/02/07 13:32:17 modbus: send 11 3a 00 00 00 06 01 04 27 da 00 02
[openwb-2.0] TRACE 2025/02/07 13:32:17 modbus: recv 11 3a 00 00 00 07 01 04 04 00 43 1e 4e
[openwb-2.0] TRACE 2025/02/07 13:32:17 modbus: send 11 3b 00 00 00 06 01 04 27 da 00 02
[openwb-2.0] TRACE 2025/02/07 13:32:17 modbus: recv 11 3b 00 00 00 07 01 04 04 00 43 1e 4e
[lp-1 ] DEBUG 2025/02/07 13:32:17 charge total import: 4398.670kWh
[openwb-2.0] TRACE 2025/02/07 13:32:17 modbus: send 11 3c 00 00 00 06 01 04 27 e7 00 01
[openwb-2.0] TRACE 2025/02/07 13:32:17 modbus: recv 11 3c 00 00 00 05 01 04 02 00 01
[lp-1 ] DEBUG 2025/02/07 13:32:17 charger status: C
[openwb-2.0] TRACE 2025/02/07 13:32:17 modbus: send 11 3d 00 00 00 06 01 04 28 14 00 0a
[openwb-2.0] TRACE 2025/02/07 13:32:17 modbus: recv 11 3d 00 00 00 17 01 04 14 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[lp-1 ] DEBUG 2025/02/07 13:32:17 soc estimated: 89.29% (vehicle: 70.00%)
[lp-1 ] DEBUG 2025/02/07 13:32:17 vehicle soc: 89%
[lp-1 ] DEBUG 2025/02/07 13:32:17 vehicle range: 234km
[lp-1 ] DEBUG 2025/02/07 13:32:17 pv charge current: 1.19A = 6A + -4.81A (1106W @ 1p)
[lp-1 ] DEBUG 2025/02/07 13:32:17 projected site power 1106W >= 0W disable threshold
[lp-1 ] DEBUG 2025/02/07 13:32:17 pv disable in 1m0s
[lp-1 ] DEBUG 2025/02/07 13:32:17 pv disable timer remaining: 1m0s
[sma ] TRACE 2025/02/07 13:32:18 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:19 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:20 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:21 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:22 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:23 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:24 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:25 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:26 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:27 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:28 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:29 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:30 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:31 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:32 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:33 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:34 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:35 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:36 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:37 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:38 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:39 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:40 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:41 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:42 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:43 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:44 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:45 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:46 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:47 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[site ] DEBUG 2025/02/07 13:32:47 ----
[openwb-2.0] TRACE 2025/02/07 13:32:47 modbus: send 11 3e 00 00 00 06 01 04 27 74 00 02
[openwb-2.0] TRACE 2025/02/07 13:32:47 modbus: recv 11 3e 00 00 00 07 01 04 04 00 00 00 00
[lp-2 ] DEBUG 2025/02/07 13:32:47 charge power: 0W
[openwb-2.0] TRACE 2025/02/07 13:32:47 modbus: send 11 3f 00 00 00 06 01 04 27 7b 00 03
[openwb-2.0] TRACE 2025/02/07 13:32:47 modbus: recv 11 3f 00 00 00 09 01 04 06 00 00 00 00 00 00
[lp-2 ] DEBUG 2025/02/07 13:32:47 charge currents: [0 0 0]A
[openwb-2.0] TRACE 2025/02/07 13:32:47 modbus: send 11 40 00 00 00 06 01 04 27 d8 00 02
[openwb-2.0] TRACE 2025/02/07 13:32:47 modbus: recv 11 40 00 00 00 07 01 04 04 00 00 0a 5f
[lp-1 ] DEBUG 2025/02/07 13:32:47 charge power: 2655W
[openwb-2.0] TRACE 2025/02/07 13:32:47 modbus: send 11 41 00 00 00 06 01 04 27 df 00 03
[openwb-2.0] TRACE 2025/02/07 13:32:47 modbus: recv 11 41 00 00 00 09 01 04 06 00 40 02 58 02 41
[lp-1 ] DEBUG 2025/02/07 13:32:47 charge currents: [0.64 6 5.77]A
[site ] DEBUG 2025/02/07 13:32:47 grid power: 996W
[solar-tripower] TRACE 2025/02/07 13:32:47 modbus: send 03 ab 00 00 00 06 03 04 78 37 00 02
[site ] DEBUG 2025/02/07 13:32:47 grid powers: [781 815 -600]W
[site ] DEBUG 2025/02/07 13:32:47 grid currents: [3.89 3.91 -2.98]A
[solar-tripower] TRACE 2025/02/07 13:32:47 modbus: recv 03 ab 00 00 00 07 03 04 04 00 00 07 0d
[site ] DEBUG 2025/02/07 13:32:47 pv 2 power: 1805W
[solar-tripower] TRACE 2025/02/07 13:32:47 modbus: send 03 ac 00 00 00 06 03 03 77 31 00 04
[solar-tripower] TRACE 2025/02/07 13:32:47 modbus: recv 03 ac 00 00 00 0b 03 03 08 00 00 00 00 01 0b b1 df
[solar-se-battery] TRACE 2025/02/07 13:32:47 modbus: send 0c d4 00 00 00 06 03 04 7a a3 00 02
[solar-se-battery] TRACE 2025/02/07 13:32:47 modbus: recv 0c d4 00 00 00 07 03 04 04 00 00 00 00
[solar-se-battery] TRACE 2025/02/07 13:32:47 modbus: send 0c d5 00 00 00 06 03 04 7a a1 00 02
[solar-se-battery] TRACE 2025/02/07 13:32:47 modbus: recv 0c d5 00 00 00 07 03 04 04 00 00 00 00
[site ] DEBUG 2025/02/07 13:32:47 battery 1 power: 0W
[solar-se-pv] TRACE 2025/02/07 13:32:47 modbus: send 0c d6 00 00 00 06 03 03 78 35 00 02
[solar-se-pv] TRACE 2025/02/07 13:32:47 modbus: recv 0c d6 00 00 00 07 03 03 04 00 00 01 69
[solar-se-pv] TRACE 2025/02/07 13:32:47 modbus: send 0c d7 00 00 00 06 03 03 78 f1 00 02
[solar-se-pv] TRACE 2025/02/07 13:32:47 modbus: recv 0c d7 00 00 00 07 03 03 04 00 00 03 26
[site ] DEBUG 2025/02/07 13:32:47 pv 1 power: 1167W
[solar-se-battery] TRACE 2025/02/07 13:32:47 modbus: send 0c d8 00 00 00 06 03 03 7a a9 00 04
[solar-se-battery] TRACE 2025/02/07 13:32:47 modbus: recv 0c d8 00 00 00 0b 03 03 08 00 00 00 00 00 34 cc 00
[solar-se-battery] TRACE 2025/02/07 13:32:47 modbus: send 0c d9 00 00 00 06 03 03 78 7d 00 02
[solar-se-battery] TRACE 2025/02/07 13:32:47 modbus: recv 0c d9 00 00 00 07 03 03 04 00 00 00 06
[site ] DEBUG 2025/02/07 13:32:47 battery 1 soc: 6%
[solar-se-pv] TRACE 2025/02/07 13:32:47 modbus: send 0c da 00 00 00 06 03 03 77 31 00 04
[solar-se-pv] TRACE 2025/02/07 13:32:47 modbus: recv 0c da 00 00 00 0b 03 03 08 00 00 00 00 00 a7 53 06
[site ] DEBUG 2025/02/07 13:32:47 pv power: 2972W
[site ] DEBUG 2025/02/07 13:32:47 site power: 996W
[openwb-2.0] TRACE 2025/02/07 13:32:47 modbus: send 11 42 00 00 00 06 01 04 27 76 00 02
[openwb-2.0] TRACE 2025/02/07 13:32:47 modbus: recv 11 42 00 00 00 07 01 04 04 00 48 53 5a
[lp-2 ] DEBUG 2025/02/07 13:32:47 charge total import: 4739.930kWh
[openwb-2.0] TRACE 2025/02/07 13:32:47 modbus: send 11 43 00 00 00 06 01 04 27 83 00 01
[openwb-2.0] TRACE 2025/02/07 13:32:47 modbus: recv 11 43 00 00 00 05 01 04 02 00 00
[openwb-2.0] TRACE 2025/02/07 13:32:47 modbus: send 11 44 00 00 00 06 01 04 27 82 00 01
[openwb-2.0] TRACE 2025/02/07 13:32:47 modbus: recv 11 44 00 00 00 05 01 04 02 00 01
[lp-2 ] DEBUG 2025/02/07 13:32:47 charger status: B
[openwb-2.0] TRACE 2025/02/07 13:32:47 modbus: send 11 45 00 00 00 06 01 04 27 b0 00 0a
[openwb-2.0] TRACE 2025/02/07 13:32:47 modbus: recv 11 45 00 00 00 17 01 04 14 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[openwb-2.0] TRACE 2025/02/07 13:32:47 modbus: send 11 46 00 00 00 06 01 04 27 83 00 01
[openwb-2.0] TRACE 2025/02/07 13:32:47 modbus: recv 11 46 00 00 00 05 01 04 02 00 00
[openwb-2.0] TRACE 2025/02/07 13:32:47 modbus: send 11 47 00 00 00 06 01 04 27 82 00 01
[openwb-2.0] TRACE 2025/02/07 13:32:47 modbus: recv 11 47 00 00 00 05 01 04 02 00 01
[lp-2 ] DEBUG 2025/02/07 13:32:47 plan: charge 0s between 0001-01-01 00:53:28 +0053 LMT until 2025-02-10 07:30:00 +0100 CET (power: 11040W, avg cost: NaN)
[lp-2 ] DEBUG 2025/02/07 13:32:47 !! pvScalePhases DOWN activePhases: 1, available power: -996W, scalable: false
[lp-2 ] DEBUG 2025/02/07 13:32:47 !! pvScalePhases UP maxPhases: 3, available power: -996W, scalable: false
[lp-2 ] DEBUG 2025/02/07 13:32:47 !! pvScalePhases EXIT
[lp-2 ] DEBUG 2025/02/07 13:32:47 pv charge current: 0A = 0A + -4.33A (996W @ 1p)
[sma ] TRACE 2025/02/07 13:32:48 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:48 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:49 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:50 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:51 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:52 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:53 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:54 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:55 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:56 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:57 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:58 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:32:59 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:00 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:01 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:02 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:03 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:04 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:05 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:06 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:07 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:08 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:09 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:10 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[mqtt ] TRACE 2025/02/07 13:33:10 recv evcc/niro/soc: '70'
[mqtt ] TRACE 2025/02/07 13:33:10 recv evcc/superb/soc: '7'
[mqtt ] TRACE 2025/02/07 13:33:10 recv evcc/niro/range: '234'
[mqtt ] TRACE 2025/02/07 13:33:10 recv evcc/superb/range: '1'
[sma ] TRACE 2025/02/07 13:33:11 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:12 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:13 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:14 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:15 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:16 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:17 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[site ] DEBUG 2025/02/07 13:33:17 ----
[openwb-2.0] TRACE 2025/02/07 13:33:17 modbus: send 11 48 00 00 00 06 01 04 27 74 00 02
[openwb-2.0] TRACE 2025/02/07 13:33:17 modbus: recv 11 48 00 00 00 07 01 04 04 00 00 00 00
[lp-2 ] DEBUG 2025/02/07 13:33:17 charge power: 0W
[openwb-2.0] TRACE 2025/02/07 13:33:17 modbus: send 11 49 00 00 00 06 01 04 27 7b 00 03
[openwb-2.0] TRACE 2025/02/07 13:33:17 modbus: recv 11 49 00 00 00 09 01 04 06 00 00 00 00 00 00
[openwb-2.0] TRACE 2025/02/07 13:33:17 modbus: send 11 4a 00 00 00 06 01 04 27 d8 00 02
[lp-2 ] DEBUG 2025/02/07 13:33:17 charge currents: [0 0 0]A
[openwb-2.0] TRACE 2025/02/07 13:33:17 modbus: recv 11 4a 00 00 00 07 01 04 04 00 00 0a 5f
[lp-1 ] DEBUG 2025/02/07 13:33:17 charge power: 2655W
[openwb-2.0] TRACE 2025/02/07 13:33:17 modbus: send 11 4b 00 00 00 06 01 04 27 df 00 03
[openwb-2.0] TRACE 2025/02/07 13:33:17 modbus: recv 11 4b 00 00 00 09 01 04 06 00 40 02 57 02 40
[lp-1 ] DEBUG 2025/02/07 13:33:17 charge currents: [0.64 5.99 5.76]A
[site ] DEBUG 2025/02/07 13:33:17 grid power: 934W
[solar-tripower] TRACE 2025/02/07 13:33:17 modbus: send 03 ad 00 00 00 06 03 04 78 37 00 02
[site ] DEBUG 2025/02/07 13:33:17 grid powers: [794 841 -701]W
[site ] DEBUG 2025/02/07 13:33:17 grid currents: [3.95 4.02 -3.34]A
[solar-tripower] TRACE 2025/02/07 13:33:17 modbus: recv 03 ad 00 00 00 07 03 04 04 00 00 06 fd
[site ] DEBUG 2025/02/07 13:33:17 pv 2 power: 1789W
[solar-tripower] TRACE 2025/02/07 13:33:17 modbus: send 03 ae 00 00 00 06 03 03 77 31 00 04
[solar-tripower] TRACE 2025/02/07 13:33:17 modbus: recv 03 ae 00 00 00 0b 03 03 08 00 00 00 00 01 0b b1 ee
[solar-se-battery] TRACE 2025/02/07 13:33:17 modbus: send 0c db 00 00 00 06 03 04 7a a3 00 02
[solar-se-battery] TRACE 2025/02/07 13:33:17 modbus: recv 0c db 00 00 00 07 03 04 04 00 00 00 00
[solar-se-battery] TRACE 2025/02/07 13:33:17 modbus: send 0c dc 00 00 00 06 03 04 7a a1 00 02
[solar-se-battery] TRACE 2025/02/07 13:33:17 modbus: recv 0c dc 00 00 00 07 03 04 04 00 00 00 00
[site ] DEBUG 2025/02/07 13:33:17 battery 1 power: 0W
[solar-se-pv] TRACE 2025/02/07 13:33:17 modbus: send 0c dd 00 00 00 06 03 03 78 35 00 02
[solar-se-pv] TRACE 2025/02/07 13:33:17 modbus: recv 0c dd 00 00 00 07 03 03 04 00 00 01 78
[solar-se-pv] TRACE 2025/02/07 13:33:17 modbus: send 0c de 00 00 00 06 03 03 78 f1 00 02
[solar-se-pv] TRACE 2025/02/07 13:33:17 modbus: recv 0c de 00 00 00 07 03 03 04 00 00 03 5a
[site ] DEBUG 2025/02/07 13:33:17 pv 1 power: 1234W
[solar-se-battery] TRACE 2025/02/07 13:33:17 modbus: send 0c df 00 00 00 06 03 03 7a a9 00 04
[solar-se-battery] TRACE 2025/02/07 13:33:17 modbus: recv 0c df 00 00 00 0b 03 03 08 00 00 00 00 00 34 cc 00
[solar-se-battery] TRACE 2025/02/07 13:33:17 modbus: send 0c e0 00 00 00 06 03 03 78 7d 00 02
[solar-se-battery] TRACE 2025/02/07 13:33:17 modbus: recv 0c e0 00 00 00 07 03 03 04 00 00 00 06
[site ] DEBUG 2025/02/07 13:33:17 battery 1 soc: 6%
[solar-se-pv] TRACE 2025/02/07 13:33:17 modbus: send 0c e1 00 00 00 06 03 03 77 31 00 04
[solar-se-pv] TRACE 2025/02/07 13:33:17 modbus: recv 0c e1 00 00 00 0b 03 03 08 00 00 00 00 00 a7 53 0e
[site ] DEBUG 2025/02/07 13:33:17 pv power: 3023W
[site ] DEBUG 2025/02/07 13:33:17 site power: 934W
[lp-1 ] DEBUG 2025/02/07 13:33:17 detected active phases: 2p
[openwb-2.0] TRACE 2025/02/07 13:33:17 modbus: send 11 4c 00 00 00 06 01 04 27 da 00 02
[openwb-2.0] TRACE 2025/02/07 13:33:17 modbus: recv 11 4c 00 00 00 07 01 04 04 00 43 1e 7b
[openwb-2.0] TRACE 2025/02/07 13:33:17 modbus: send 11 4d 00 00 00 06 01 04 27 da 00 02
[openwb-2.0] TRACE 2025/02/07 13:33:17 modbus: recv 11 4d 00 00 00 07 01 04 04 00 43 1e 7b
[lp-1 ] DEBUG 2025/02/07 13:33:17 charge total import: 4398.715kWh
[openwb-2.0] TRACE 2025/02/07 13:33:17 modbus: send 11 4e 00 00 00 06 01 04 27 e7 00 01
[openwb-2.0] TRACE 2025/02/07 13:33:17 modbus: recv 11 4e 00 00 00 05 01 04 02 00 01
[lp-1 ] DEBUG 2025/02/07 13:33:17 charger status: C
[openwb-2.0] TRACE 2025/02/07 13:33:17 modbus: send 11 4f 00 00 00 06 01 04 28 14 00 0a
[openwb-2.0] TRACE 2025/02/07 13:33:17 modbus: recv 11 4f 00 00 00 17 01 04 14 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[lp-1 ] DEBUG 2025/02/07 13:33:17 soc estimated: 89.49% (vehicle: 70.00%)
[lp-1 ] DEBUG 2025/02/07 13:33:17 vehicle soc: 89%
[lp-1 ] DEBUG 2025/02/07 13:33:17 vehicle range: 234km
[lp-1 ] WARN 2025/02/07 13:33:17 charger logic error: phases mismatch (got 3 measured, expected 1)
[lp-1 ] DEBUG 2025/02/07 13:33:17 !! pvScalePhases DOWN activePhases: 3, available power: 1721W, scalable: true
[lp-1 ] DEBUG 2025/02/07 13:33:17 available power 1721W < 4140W min 3p threshold
[lp-1 ] DEBUG 2025/02/07 13:33:17 start phase scale1p timer
[lp-1 ] DEBUG 2025/02/07 13:33:17 phase scale1p in 3m0s
[lp-1 ] DEBUG 2025/02/07 13:33:17 !! pvScalePhases UP maxPhases: 3, available power: 1721W, scalable: false
[lp-1 ] DEBUG 2025/02/07 13:33:17 !! pvScalePhases EXIT
[lp-1 ] DEBUG 2025/02/07 13:33:17 pv charge current: 4.65A = 6A + -1.35A (934W @ 3p)
[lp-1 ] DEBUG 2025/02/07 13:33:17 pv disable timer reset
[lp-1 ] DEBUG 2025/02/07 13:33:17 pv timer inactive
[sma ] TRACE 2025/02/07 13:33:18 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:19 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:19 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:20 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:21 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:22 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:23 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:24 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:25 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:26 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:27 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:28 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:29 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:30 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:31 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:32 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:33 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:34 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:35 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:36 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:37 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:38 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:39 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:40 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:41 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:42 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:43 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:44 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:45 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:46 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:47 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[site ] DEBUG 2025/02/07 13:33:47 ----
[openwb-2.0] TRACE 2025/02/07 13:33:47 modbus: send 11 50 00 00 00 06 01 04 27 74 00 02
[openwb-2.0] TRACE 2025/02/07 13:33:47 modbus: recv 11 50 00 00 00 07 01 04 04 00 00 00 00
[lp-2 ] DEBUG 2025/02/07 13:33:47 charge power: 0W
[openwb-2.0] TRACE 2025/02/07 13:33:47 modbus: send 11 51 00 00 00 06 01 04 27 7b 00 03
[openwb-2.0] TRACE 2025/02/07 13:33:47 modbus: recv 11 51 00 00 00 09 01 04 06 00 00 00 00 00 00
[openwb-2.0] TRACE 2025/02/07 13:33:47 modbus: send 11 52 00 00 00 06 01 04 27 d8 00 02
[lp-2 ] DEBUG 2025/02/07 13:33:47 charge currents: [0 0 0]A
[openwb-2.0] TRACE 2025/02/07 13:33:47 modbus: recv 11 52 00 00 00 07 01 04 04 00 00 0a 63
[lp-1 ] DEBUG 2025/02/07 13:33:47 charge power: 2659W
[openwb-2.0] TRACE 2025/02/07 13:33:47 modbus: send 11 53 00 00 00 06 01 04 27 df 00 03
[openwb-2.0] TRACE 2025/02/07 13:33:47 modbus: recv 11 53 00 00 00 09 01 04 06 00 40 02 58 02 42
[lp-1 ] DEBUG 2025/02/07 13:33:47 charge currents: [0.64 6 5.78]A
[site ] DEBUG 2025/02/07 13:33:47 grid power: 966W
[solar-tripower] TRACE 2025/02/07 13:33:47 modbus: send 03 af 00 00 00 06 03 04 78 37 00 02
[site ] DEBUG 2025/02/07 13:33:47 grid powers: [798 848 -680]W
[site ] DEBUG 2025/02/07 13:33:47 grid currents: [3.96 4.04 -3.27]A
[solar-tripower] TRACE 2025/02/07 13:33:47 modbus: recv 03 af 00 00 00 07 03 04 04 00 00 06 d5
[site ] DEBUG 2025/02/07 13:33:47 pv 2 power: 1749W
[solar-tripower] TRACE 2025/02/07 13:33:47 modbus: send 03 b0 00 00 00 06 03 03 77 31 00 04
[solar-tripower] TRACE 2025/02/07 13:33:47 modbus: recv 03 b0 00 00 00 0b 03 03 08 00 00 00 00 01 0b b1 fc
[solar-se-battery] TRACE 2025/02/07 13:33:47 modbus: send 0c e2 00 00 00 06 03 04 7a a3 00 02
[solar-se-battery] TRACE 2025/02/07 13:33:47 modbus: recv 0c e2 00 00 00 07 03 04 04 00 00 00 00
[solar-se-battery] TRACE 2025/02/07 13:33:47 modbus: send 0c e3 00 00 00 06 03 04 7a a1 00 02
[solar-se-battery] TRACE 2025/02/07 13:33:47 modbus: recv 0c e3 00 00 00 07 03 04 04 00 00 00 00
[site ] DEBUG 2025/02/07 13:33:47 battery 1 power: 0W
[solar-se-pv] TRACE 2025/02/07 13:33:47 modbus: send 0c e4 00 00 00 06 03 03 78 35 00 02
[solar-se-pv] TRACE 2025/02/07 13:33:47 modbus: recv 0c e4 00 00 00 07 03 03 04 00 00 01 6d
[solar-se-pv] TRACE 2025/02/07 13:33:47 modbus: send 0c e5 00 00 00 06 03 03 78 f1 00 02
[solar-se-pv] TRACE 2025/02/07 13:33:47 modbus: recv 0c e5 00 00 00 07 03 03 04 00 00 03 65
[site ] DEBUG 2025/02/07 13:33:47 pv 1 power: 1234W
[solar-se-battery] TRACE 2025/02/07 13:33:47 modbus: send 0c e6 00 00 00 06 03 03 7a a9 00 04
[solar-se-battery] TRACE 2025/02/07 13:33:47 modbus: recv 0c e6 00 00 00 0b 03 03 08 00 00 00 00 00 34 cc 00
[solar-se-battery] TRACE 2025/02/07 13:33:47 modbus: send 0c e7 00 00 00 06 03 03 78 7d 00 02
[solar-se-battery] TRACE 2025/02/07 13:33:47 modbus: recv 0c e7 00 00 00 07 03 03 04 00 00 00 06
[site ] DEBUG 2025/02/07 13:33:47 battery 1 soc: 6%
[solar-se-pv] TRACE 2025/02/07 13:33:47 modbus: send 0c e8 00 00 00 06 03 03 77 31 00 04
[solar-se-pv] TRACE 2025/02/07 13:33:47 modbus: recv 0c e8 00 00 00 0b 03 03 08 00 00 00 00 00 a7 53 18
[site ] DEBUG 2025/02/07 13:33:47 pv power: 2983W
[site ] DEBUG 2025/02/07 13:33:47 site power: 966W
[openwb-2.0] TRACE 2025/02/07 13:33:47 modbus: send 11 54 00 00 00 06 01 04 27 76 00 02
[openwb-2.0] TRACE 2025/02/07 13:33:47 modbus: recv 11 54 00 00 00 07 01 04 04 00 48 53 5a
[lp-2 ] DEBUG 2025/02/07 13:33:47 charge total import: 4739.930kWh
[openwb-2.0] TRACE 2025/02/07 13:33:47 modbus: send 11 55 00 00 00 06 01 04 27 83 00 01
[openwb-2.0] TRACE 2025/02/07 13:33:47 modbus: recv 11 55 00 00 00 05 01 04 02 00 00
[openwb-2.0] TRACE 2025/02/07 13:33:47 modbus: send 11 56 00 00 00 06 01 04 27 82 00 01
[openwb-2.0] TRACE 2025/02/07 13:33:47 modbus: recv 11 56 00 00 00 05 01 04 02 00 01
[lp-2 ] DEBUG 2025/02/07 13:33:47 charger status: B
[openwb-2.0] TRACE 2025/02/07 13:33:47 modbus: send 11 57 00 00 00 06 01 04 27 b0 00 0a
[openwb-2.0] TRACE 2025/02/07 13:33:47 modbus: recv 11 57 00 00 00 17 01 04 14 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[openwb-2.0] TRACE 2025/02/07 13:33:47 modbus: send 11 58 00 00 00 06 01 04 27 83 00 01
[openwb-2.0] TRACE 2025/02/07 13:33:47 modbus: recv 11 58 00 00 00 05 01 04 02 00 00
[openwb-2.0] TRACE 2025/02/07 13:33:47 modbus: send 11 59 00 00 00 06 01 04 27 82 00 01
[openwb-2.0] TRACE 2025/02/07 13:33:47 modbus: recv 11 59 00 00 00 05 01 04 02 00 01
[lp-2 ] DEBUG 2025/02/07 13:33:47 plan: charge 0s between 0001-01-01 00:53:28 +0053 LMT until 2025-02-10 07:30:00 +0100 CET (power: 11040W, avg cost: NaN)
[lp-2 ] DEBUG 2025/02/07 13:33:47 !! pvScalePhases DOWN activePhases: 1, available power: -966W, scalable: false
[lp-2 ] DEBUG 2025/02/07 13:33:47 !! pvScalePhases UP maxPhases: 3, available power: -966W, scalable: false
[lp-2 ] DEBUG 2025/02/07 13:33:47 !! pvScalePhases EXIT
[lp-2 ] DEBUG 2025/02/07 13:33:47 pv charge current: 0A = 0A + -4.2A (966W @ 1p)
[sma ] TRACE 2025/02/07 13:33:48 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:49 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:50 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:50 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:51 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:52 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:53 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:54 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:55 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:56 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:57 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:58 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:33:59 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:00 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:01 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:02 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:03 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:04 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:05 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:06 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:07 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:08 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:09 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:10 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[mqtt ] TRACE 2025/02/07 13:34:10 recv evcc/niro/soc: '70'
[mqtt ] TRACE 2025/02/07 13:34:10 recv evcc/superb/soc: '7'
[mqtt ] TRACE 2025/02/07 13:34:10 recv evcc/niro/range: '234'
[mqtt ] TRACE 2025/02/07 13:34:10 recv evcc/superb/range: '1'
[sma ] TRACE 2025/02/07 13:34:11 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:12 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:13 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:14 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:15 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:16 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:17 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[site ] DEBUG 2025/02/07 13:34:17 ----
[openwb-2.0] TRACE 2025/02/07 13:34:17 modbus: send 11 5a 00 00 00 06 01 04 27 74 00 02
[openwb-2.0] TRACE 2025/02/07 13:34:17 modbus: recv 11 5a 00 00 00 07 01 04 04 00 00 00 00
[lp-2 ] DEBUG 2025/02/07 13:34:17 charge power: 0W
[openwb-2.0] TRACE 2025/02/07 13:34:17 modbus: send 11 5b 00 00 00 06 01 04 27 7b 00 03
[openwb-2.0] TRACE 2025/02/07 13:34:17 modbus: recv 11 5b 00 00 00 09 01 04 06 00 00 00 00 00 00
[lp-2 ] DEBUG 2025/02/07 13:34:17 charge currents: [0 0 0]A
[openwb-2.0] TRACE 2025/02/07 13:34:17 modbus: send 11 5c 00 00 00 06 01 04 27 d8 00 02
[openwb-2.0] TRACE 2025/02/07 13:34:17 modbus: recv 11 5c 00 00 00 07 01 04 04 00 00 0a 60
[lp-1 ] DEBUG 2025/02/07 13:34:17 charge power: 2656W
[openwb-2.0] TRACE 2025/02/07 13:34:17 modbus: send 11 5d 00 00 00 06 01 04 27 df 00 03
[openwb-2.0] TRACE 2025/02/07 13:34:17 modbus: recv 11 5d 00 00 00 09 01 04 06 00 3f 02 58 02 42
[lp-1 ] DEBUG 2025/02/07 13:34:17 charge currents: [0.63 6 5.78]A
[site ] DEBUG 2025/02/07 13:34:17 grid power: 988W
[site ] DEBUG 2025/02/07 13:34:17 grid powers: [815 839 -667]W
[site ] DEBUG 2025/02/07 13:34:17 grid currents: [4.03 4 -3.22]A
[solar-tripower] TRACE 2025/02/07 13:34:17 modbus: send 03 b1 00 00 00 06 03 04 78 37 00 02
[solar-tripower] TRACE 2025/02/07 13:34:17 modbus: recv 03 b1 00 00 00 07 03 04 04 00 00 06 af
[site ] DEBUG 2025/02/07 13:34:17 pv 2 power: 1711W
[solar-tripower] TRACE 2025/02/07 13:34:17 modbus: send 03 b2 00 00 00 06 03 03 77 31 00 04
[solar-tripower] TRACE 2025/02/07 13:34:17 modbus: recv 03 b2 00 00 00 0b 03 03 08 00 00 00 00 01 0b b2 0b
[solar-se-battery] TRACE 2025/02/07 13:34:17 modbus: send 0c e9 00 00 00 06 03 04 7a a3 00 02
[solar-se-battery] TRACE 2025/02/07 13:34:17 modbus: recv 0c e9 00 00 00 07 03 04 04 00 00 00 00
[solar-se-battery] TRACE 2025/02/07 13:34:17 modbus: send 0c ea 00 00 00 06 03 04 7a a1 00 02
[solar-se-battery] TRACE 2025/02/07 13:34:17 modbus: recv 0c ea 00 00 00 07 03 04 04 00 00 00 00
[site ] DEBUG 2025/02/07 13:34:17 battery 1 power: 0W
[solar-se-pv] TRACE 2025/02/07 13:34:17 modbus: send 0c eb 00 00 00 06 03 03 78 35 00 02
[solar-se-pv] TRACE 2025/02/07 13:34:17 modbus: recv 0c eb 00 00 00 07 03 03 04 00 00 01 6e
[solar-se-pv] TRACE 2025/02/07 13:34:17 modbus: send 0c ec 00 00 00 06 03 03 78 f1 00 02
[solar-se-pv] TRACE 2025/02/07 13:34:17 modbus: recv 0c ec 00 00 00 07 03 03 04 00 00 03 5e
[site ] DEBUG 2025/02/07 13:34:17 pv 1 power: 1228W
[solar-se-battery] TRACE 2025/02/07 13:34:17 modbus: send 0c ed 00 00 00 06 03 03 7a a9 00 04
[solar-se-battery] TRACE 2025/02/07 13:34:17 modbus: recv 0c ed 00 00 00 0b 03 03 08 00 00 00 00 00 34 cc 00
[solar-se-battery] TRACE 2025/02/07 13:34:17 modbus: send 0c ee 00 00 00 06 03 03 78 7d 00 02
[solar-se-battery] TRACE 2025/02/07 13:34:17 modbus: recv 0c ee 00 00 00 07 03 03 04 00 00 00 06
[site ] DEBUG 2025/02/07 13:34:17 battery 1 soc: 6%
[solar-se-pv] TRACE 2025/02/07 13:34:17 modbus: send 0c ef 00 00 00 06 03 03 77 31 00 04
[solar-se-pv] TRACE 2025/02/07 13:34:17 modbus: recv 0c ef 00 00 00 0b 03 03 08 00 00 00 00 00 a7 53 21
[site ] DEBUG 2025/02/07 13:34:17 pv power: 2939W
[site ] DEBUG 2025/02/07 13:34:17 site power: 988W
[lp-1 ] DEBUG 2025/02/07 13:34:17 detected active phases: 2p
[openwb-2.0] TRACE 2025/02/07 13:34:17 modbus: send 11 5e 00 00 00 06 01 04 27 da 00 02
[openwb-2.0] TRACE 2025/02/07 13:34:17 modbus: recv 11 5e 00 00 00 07 01 04 04 00 43 1e a7
[openwb-2.0] TRACE 2025/02/07 13:34:17 modbus: send 11 5f 00 00 00 06 01 04 27 da 00 02
[openwb-2.0] TRACE 2025/02/07 13:34:17 modbus: recv 11 5f 00 00 00 07 01 04 04 00 43 1e a7
[lp-1 ] DEBUG 2025/02/07 13:34:17 charge total import: 4398.759kWh
[openwb-2.0] TRACE 2025/02/07 13:34:17 modbus: send 11 60 00 00 00 06 01 04 27 e7 00 01
[openwb-2.0] TRACE 2025/02/07 13:34:17 modbus: recv 11 60 00 00 00 05 01 04 02 00 01
[lp-1 ] DEBUG 2025/02/07 13:34:17 charger status: C
[openwb-2.0] TRACE 2025/02/07 13:34:17 modbus: send 11 61 00 00 00 06 01 04 28 14 00 0a
[openwb-2.0] TRACE 2025/02/07 13:34:17 modbus: recv 11 61 00 00 00 17 01 04 14 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[lp-1 ] DEBUG 2025/02/07 13:34:17 soc estimated: 89.69% (vehicle: 70.00%)
[lp-1 ] DEBUG 2025/02/07 13:34:17 vehicle soc: 90%
[lp-1 ] DEBUG 2025/02/07 13:34:17 vehicle range: 234km
[lp-1 ] DEBUG 2025/02/07 13:34:17 !! pvScalePhases DOWN activePhases: 2, available power: 1668W, scalable: true
[lp-1 ] DEBUG 2025/02/07 13:34:17 available power 1668W < 2760W min 2p threshold
[lp-1 ] DEBUG 2025/02/07 13:34:17 phase scale1p in 2m0s
[lp-1 ] DEBUG 2025/02/07 13:34:17 !! pvScalePhases UP maxPhases: 2, available power: 1668W, scalable: false
[lp-1 ] DEBUG 2025/02/07 13:34:17 !! pvScalePhases EXIT
[lp-1 ] DEBUG 2025/02/07 13:34:17 pv charge current: 3.85A = 6A + -2.15A (988W @ 2p)
[sma ] TRACE 2025/02/07 13:34:18 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:19 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:20 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:21 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:21 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:22 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:23 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:24 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:25 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:26 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:27 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:28 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:29 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:30 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:31 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:32 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:33 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:34 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:35 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:36 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:37 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:38 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:39 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:40 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:41 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:42 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:43 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:44 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:45 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:46 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:47 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[site ] DEBUG 2025/02/07 13:34:47 ----
[openwb-2.0] TRACE 2025/02/07 13:34:47 modbus: send 11 62 00 00 00 06 01 04 27 74 00 02
[openwb-2.0] TRACE 2025/02/07 13:34:47 modbus: recv 11 62 00 00 00 07 01 04 04 00 00 00 00
[lp-2 ] DEBUG 2025/02/07 13:34:47 charge power: 0W
[openwb-2.0] TRACE 2025/02/07 13:34:47 modbus: send 11 63 00 00 00 06 01 04 27 7b 00 03
[openwb-2.0] TRACE 2025/02/07 13:34:47 modbus: recv 11 63 00 00 00 09 01 04 06 00 00 00 00 00 00
[lp-2 ] DEBUG 2025/02/07 13:34:47 charge currents: [0 0 0]A
[openwb-2.0] TRACE 2025/02/07 13:34:47 modbus: send 11 64 00 00 00 06 01 04 27 d8 00 02
[openwb-2.0] TRACE 2025/02/07 13:34:47 modbus: recv 11 64 00 00 00 07 01 04 04 00 00 0a 64
[lp-1 ] DEBUG 2025/02/07 13:34:47 charge power: 2660W
[openwb-2.0] TRACE 2025/02/07 13:34:47 modbus: send 11 65 00 00 00 06 01 04 27 df 00 03
[openwb-2.0] TRACE 2025/02/07 13:34:47 modbus: recv 11 65 00 00 00 09 01 04 06 00 40 02 59 02 42
[lp-1 ] DEBUG 2025/02/07 13:34:47 charge currents: [0.64 6.01 5.78]A
[site ] DEBUG 2025/02/07 13:34:47 grid power: 1045W
[site ] DEBUG 2025/02/07 13:34:47 grid powers: [830 853 -639]W
[site ] DEBUG 2025/02/07 13:34:47 grid currents: [4.08 4.06 -3.11]A
[solar-tripower] TRACE 2025/02/07 13:34:47 modbus: send 03 b3 00 00 00 06 03 04 78 37 00 02
[solar-tripower] TRACE 2025/02/07 13:34:47 modbus: recv 03 b3 00 00 00 07 03 04 04 00 00 06 83
[site ] DEBUG 2025/02/07 13:34:47 pv 2 power: 1667W
[solar-tripower] TRACE 2025/02/07 13:34:47 modbus: send 03 b4 00 00 00 06 03 03 77 31 00 04
[solar-tripower] TRACE 2025/02/07 13:34:47 modbus: recv 03 b4 00 00 00 0b 03 03 08 00 00 00 00 01 0b b2 19
[solar-se-battery] TRACE 2025/02/07 13:34:47 modbus: send 0c f0 00 00 00 06 03 04 7a a3 00 02
[solar-se-battery] TRACE 2025/02/07 13:34:47 modbus: recv 0c f0 00 00 00 07 03 04 04 00 00 00 00
[solar-se-battery] TRACE 2025/02/07 13:34:47 modbus: send 0c f1 00 00 00 06 03 04 7a a1 00 02
[solar-se-battery] TRACE 2025/02/07 13:34:47 modbus: recv 0c f1 00 00 00 07 03 04 04 00 00 00 00
[site ] DEBUG 2025/02/07 13:34:47 battery 1 power: 0W
[solar-se-pv] TRACE 2025/02/07 13:34:47 modbus: send 0c f2 00 00 00 06 03 03 78 35 00 02
[solar-se-pv] TRACE 2025/02/07 13:34:47 modbus: recv 0c f2 00 00 00 07 03 03 04 00 00 01 5d
[solar-se-pv] TRACE 2025/02/07 13:34:47 modbus: send 0c f3 00 00 00 06 03 03 78 f1 00 02
[solar-se-pv] TRACE 2025/02/07 13:34:47 modbus: recv 0c f3 00 00 00 07 03 03 04 00 00 03 4e
[site ] DEBUG 2025/02/07 13:34:47 pv 1 power: 1195W
[solar-se-battery] TRACE 2025/02/07 13:34:47 modbus: send 0c f4 00 00 00 06 03 03 7a a9 00 04
[solar-se-battery] TRACE 2025/02/07 13:34:47 modbus: recv 0c f4 00 00 00 0b 03 03 08 00 00 00 00 00 34 cc 00
[solar-se-battery] TRACE 2025/02/07 13:34:47 modbus: send 0c f5 00 00 00 06 03 03 78 7d 00 02
[solar-se-battery] TRACE 2025/02/07 13:34:47 modbus: recv 0c f5 00 00 00 07 03 03 04 00 00 00 06
[site ] DEBUG 2025/02/07 13:34:47 battery 1 soc: 6%
[solar-se-pv] TRACE 2025/02/07 13:34:47 modbus: send 0c f6 00 00 00 06 03 03 77 31 00 04
[solar-se-pv] TRACE 2025/02/07 13:34:47 modbus: recv 0c f6 00 00 00 0b 03 03 08 00 00 00 00 00 a7 53 2a
[site ] DEBUG 2025/02/07 13:34:47 pv power: 2862W
[site ] DEBUG 2025/02/07 13:34:47 site power: 1045W
[openwb-2.0] TRACE 2025/02/07 13:34:47 modbus: send 11 66 00 00 00 06 01 04 27 76 00 02
[openwb-2.0] TRACE 2025/02/07 13:34:47 modbus: recv 11 66 00 00 00 07 01 04 04 00 48 53 5a
[lp-2 ] DEBUG 2025/02/07 13:34:47 charge total import: 4739.930kWh
[openwb-2.0] TRACE 2025/02/07 13:34:47 modbus: send 11 67 00 00 00 06 01 04 27 83 00 01
[openwb-2.0] TRACE 2025/02/07 13:34:47 modbus: recv 11 67 00 00 00 05 01 04 02 00 00
[openwb-2.0] TRACE 2025/02/07 13:34:47 modbus: send 11 68 00 00 00 06 01 04 27 82 00 01
[openwb-2.0] TRACE 2025/02/07 13:34:47 modbus: recv 11 68 00 00 00 05 01 04 02 00 01
[lp-2 ] DEBUG 2025/02/07 13:34:47 charger status: B
[openwb-2.0] TRACE 2025/02/07 13:34:47 modbus: send 11 69 00 00 00 06 01 04 27 b0 00 0a
[openwb-2.0] TRACE 2025/02/07 13:34:47 modbus: recv 11 69 00 00 00 17 01 04 14 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[openwb-2.0] TRACE 2025/02/07 13:34:47 modbus: send 11 6a 00 00 00 06 01 04 27 83 00 01
[openwb-2.0] TRACE 2025/02/07 13:34:47 modbus: recv 11 6a 00 00 00 05 01 04 02 00 00
[openwb-2.0] TRACE 2025/02/07 13:34:47 modbus: send 11 6b 00 00 00 06 01 04 27 82 00 01
[openwb-2.0] TRACE 2025/02/07 13:34:47 modbus: recv 11 6b 00 00 00 05 01 04 02 00 01
[lp-2 ] DEBUG 2025/02/07 13:34:47 plan: charge 0s between 0001-01-01 00:53:28 +0053 LMT until 2025-02-10 07:30:00 +0100 CET (power: 11040W, avg cost: NaN)
[lp-2 ] DEBUG 2025/02/07 13:34:47 !! pvScalePhases DOWN activePhases: 1, available power: -1045W, scalable: false
[lp-2 ] DEBUG 2025/02/07 13:34:47 !! pvScalePhases UP maxPhases: 3, available power: -1045W, scalable: false
[lp-2 ] DEBUG 2025/02/07 13:34:47 !! pvScalePhases EXIT
[lp-2 ] DEBUG 2025/02/07 13:34:47 pv charge current: 0A = 0A + -4.54A (1045W @ 1p)
[sma ] TRACE 2025/02/07 13:34:48 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:49 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:50 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:51 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:52 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:52 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:53 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:54 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:55 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:56 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:57 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:58 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:34:59 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:00 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:01 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:02 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:03 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:04 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:05 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:06 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:07 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:08 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:09 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:10 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[mqtt ] TRACE 2025/02/07 13:35:10 recv evcc/niro/soc: '70'
[mqtt ] TRACE 2025/02/07 13:35:10 recv evcc/superb/soc: '7'
[mqtt ] TRACE 2025/02/07 13:35:10 recv evcc/niro/range: '234'
[mqtt ] TRACE 2025/02/07 13:35:10 recv evcc/superb/range: '1'
[sma ] TRACE 2025/02/07 13:35:11 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:12 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:13 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:14 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:15 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:16 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:17 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[site ] DEBUG 2025/02/07 13:35:17 ----
[openwb-2.0] TRACE 2025/02/07 13:35:17 modbus: send 11 6c 00 00 00 06 01 04 27 74 00 02
[openwb-2.0] TRACE 2025/02/07 13:35:17 modbus: recv 11 6c 00 00 00 07 01 04 04 00 00 00 00
[lp-2 ] DEBUG 2025/02/07 13:35:17 charge power: 0W
[openwb-2.0] TRACE 2025/02/07 13:35:17 modbus: send 11 6d 00 00 00 06 01 04 27 7b 00 03
[openwb-2.0] TRACE 2025/02/07 13:35:17 modbus: recv 11 6d 00 00 00 09 01 04 06 00 00 00 00 00 00
[openwb-2.0] TRACE 2025/02/07 13:35:17 modbus: send 11 6e 00 00 00 06 01 04 27 d8 00 02
[lp-2 ] DEBUG 2025/02/07 13:35:17 charge currents: [0 0 0]A
[openwb-2.0] TRACE 2025/02/07 13:35:17 modbus: recv 11 6e 00 00 00 07 01 04 04 00 00 0a 66
[lp-1 ] DEBUG 2025/02/07 13:35:17 charge power: 2662W
[openwb-2.0] TRACE 2025/02/07 13:35:17 modbus: send 11 6f 00 00 00 06 01 04 27 df 00 03
[openwb-2.0] TRACE 2025/02/07 13:35:17 modbus: recv 11 6f 00 00 00 09 01 04 06 00 3f 02 58 02 42
[lp-1 ] DEBUG 2025/02/07 13:35:17 charge currents: [0.63 6 5.78]A
[site ] DEBUG 2025/02/07 13:35:17 grid power: 1118W
[solar-tripower] TRACE 2025/02/07 13:35:17 modbus: send 03 b5 00 00 00 06 03 04 78 37 00 02
[site ] DEBUG 2025/02/07 13:35:17 grid powers: [862 880 -624]W
[site ] DEBUG 2025/02/07 13:35:17 grid currents: [4.21 4.17 -3.05]A
[solar-tripower] TRACE 2025/02/07 13:35:17 modbus: recv 03 b5 00 00 00 07 03 04 04 00 00 06 75
[site ] DEBUG 2025/02/07 13:35:17 pv 2 power: 1653W
[solar-tripower] TRACE 2025/02/07 13:35:17 modbus: send 03 b6 00 00 00 06 03 03 77 31 00 04
[solar-tripower] TRACE 2025/02/07 13:35:17 modbus: recv 03 b6 00 00 00 0b 03 03 08 00 00 00 00 01 0b b2 27
[solar-se-battery] TRACE 2025/02/07 13:35:17 modbus: send 0c f7 00 00 00 06 03 04 7a a3 00 02
[solar-se-battery] TRACE 2025/02/07 13:35:17 modbus: recv 0c f7 00 00 00 07 03 04 04 00 00 00 00
[solar-se-battery] TRACE 2025/02/07 13:35:17 modbus: send 0c f8 00 00 00 06 03 04 7a a1 00 02
[solar-se-battery] TRACE 2025/02/07 13:35:17 modbus: recv 0c f8 00 00 00 07 03 04 04 00 00 00 00
[site ] DEBUG 2025/02/07 13:35:17 battery 1 power: 0W
[solar-se-pv] TRACE 2025/02/07 13:35:17 modbus: send 0c f9 00 00 00 06 03 03 78 35 00 02
[solar-se-pv] TRACE 2025/02/07 13:35:17 modbus: recv 0c f9 00 00 00 07 03 03 04 00 00 01 5d
[solar-se-pv] TRACE 2025/02/07 13:35:17 modbus: send 0c fa 00 00 00 06 03 03 78 f1 00 02
[solar-se-pv] TRACE 2025/02/07 13:35:17 modbus: recv 0c fa 00 00 00 07 03 03 04 00 00 03 3a
[site ] DEBUG 2025/02/07 13:35:17 pv 1 power: 1175W
[solar-se-battery] TRACE 2025/02/07 13:35:17 modbus: send 0c fb 00 00 00 06 03 03 7a a9 00 04
[solar-se-battery] TRACE 2025/02/07 13:35:17 modbus: recv 0c fb 00 00 00 0b 03 03 08 00 00 00 00 00 34 cc 00
[solar-se-pv] TRACE 2025/02/07 13:35:17 modbus: send 0c fc 00 00 00 06 03 03 77 31 00 04
[solar-se-pv] TRACE 2025/02/07 13:35:17 modbus: recv 0c fc 00 00 00 0b 03 03 08 00 00 00 00 00 a7 53 32
[site ] DEBUG 2025/02/07 13:35:17 pv power: 2828W
[solar-se-battery] TRACE 2025/02/07 13:35:17 modbus: send 0c fd 00 00 00 06 03 03 78 7d 00 02
[solar-se-battery] TRACE 2025/02/07 13:35:17 modbus: recv 0c fd 00 00 00 07 03 03 04 00 00 00 06
[site ] DEBUG 2025/02/07 13:35:17 battery 1 soc: 6%
[site ] DEBUG 2025/02/07 13:35:17 site power: 1118W
[lp-1 ] DEBUG 2025/02/07 13:35:17 detected active phases: 2p
[openwb-2.0] TRACE 2025/02/07 13:35:17 modbus: send 11 70 00 00 00 06 01 04 27 da 00 02
[openwb-2.0] TRACE 2025/02/07 13:35:17 modbus: recv 11 70 00 00 00 07 01 04 04 00 43 1e d5
[openwb-2.0] TRACE 2025/02/07 13:35:17 modbus: send 11 71 00 00 00 06 01 04 27 da 00 02
[openwb-2.0] TRACE 2025/02/07 13:35:17 modbus: recv 11 71 00 00 00 07 01 04 04 00 43 1e d5
[lp-1 ] DEBUG 2025/02/07 13:35:17 charge total import: 4398.805kWh
[openwb-2.0] TRACE 2025/02/07 13:35:17 modbus: send 11 72 00 00 00 06 01 04 27 e7 00 01
[openwb-2.0] TRACE 2025/02/07 13:35:17 modbus: recv 11 72 00 00 00 05 01 04 02 00 01
[lp-1 ] DEBUG 2025/02/07 13:35:17 charger status: C
[openwb-2.0] TRACE 2025/02/07 13:35:17 modbus: send 11 73 00 00 00 06 01 04 28 14 00 0a
[openwb-2.0] TRACE 2025/02/07 13:35:17 modbus: recv 11 73 00 00 00 17 01 04 14 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[lp-1 ] DEBUG 2025/02/07 13:35:17 soc estimated: 89.90% (vehicle: 70.00%)
[lp-1 ] DEBUG 2025/02/07 13:35:17 vehicle soc: 90%
[lp-1 ] DEBUG 2025/02/07 13:35:17 vehicle range: 234km
[lp-1 ] DEBUG 2025/02/07 13:35:17 !! pvScalePhases DOWN activePhases: 2, available power: 1544W, scalable: true
[lp-1 ] DEBUG 2025/02/07 13:35:17 available power 1544W < 2760W min 2p threshold
[lp-1 ] DEBUG 2025/02/07 13:35:17 phase scale1p in 1m0s
[lp-1 ] DEBUG 2025/02/07 13:35:17 !! pvScalePhases UP maxPhases: 2, available power: 1544W, scalable: false
[lp-1 ] DEBUG 2025/02/07 13:35:17 !! pvScalePhases EXIT
[lp-1 ] DEBUG 2025/02/07 13:35:17 pv charge current: 3.57A = 6A + -2.43A (1118W @ 2p)
[sma ] TRACE 2025/02/07 13:35:18 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:19 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:20 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:21 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:22 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:23 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:23 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:24 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:25 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:26 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:27 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:28 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:29 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:30 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:31 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:32 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:33 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:34 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:35 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:36 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:37 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:38 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:39 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:40 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:41 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:42 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:43 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:44 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:45 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:46 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:47 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[site ] DEBUG 2025/02/07 13:35:47 ----
[openwb-2.0] TRACE 2025/02/07 13:35:47 modbus: send 11 74 00 00 00 06 01 04 27 74 00 02
[openwb-2.0] TRACE 2025/02/07 13:35:47 modbus: recv 11 74 00 00 00 07 01 04 04 00 00 00 00
[lp-2 ] DEBUG 2025/02/07 13:35:47 charge power: 0W
[openwb-2.0] TRACE 2025/02/07 13:35:47 modbus: send 11 75 00 00 00 06 01 04 27 d8 00 02
[openwb-2.0] TRACE 2025/02/07 13:35:47 modbus: recv 11 75 00 00 00 07 01 04 04 00 00 0a 66
[lp-1 ] DEBUG 2025/02/07 13:35:47 charge power: 2662W
[openwb-2.0] TRACE 2025/02/07 13:35:47 modbus: send 11 76 00 00 00 06 01 04 27 df 00 03
[openwb-2.0] TRACE 2025/02/07 13:35:47 modbus: recv 11 76 00 00 00 09 01 04 06 00 40 02 57 02 40
[openwb-2.0] TRACE 2025/02/07 13:35:47 modbus: send 11 77 00 00 00 06 01 04 27 7b 00 03
[lp-1 ] DEBUG 2025/02/07 13:35:47 charge currents: [0.64 5.99 5.76]A
[openwb-2.0] TRACE 2025/02/07 13:35:47 modbus: recv 11 77 00 00 00 09 01 04 06 00 00 00 00 00 00
[lp-2 ] DEBUG 2025/02/07 13:35:47 charge currents: [0 0 0]A
[site ] DEBUG 2025/02/07 13:35:47 grid power: 1241W
[site ] DEBUG 2025/02/07 13:35:47 grid powers: [868 904 -531]W
[site ] DEBUG 2025/02/07 13:35:47 grid currents: [4.22 4.25 -2.71]A
[solar-se-battery] TRACE 2025/02/07 13:35:47 modbus: send 0c fe 00 00 00 06 03 04 7a a3 00 02
[solar-tripower] TRACE 2025/02/07 13:35:47 modbus: send 03 b7 00 00 00 06 03 04 78 37 00 02
[solar-tripower] TRACE 2025/02/07 13:35:47 modbus: recv 03 b7 00 00 00 07 03 04 04 00 00 06 5d
[site ] DEBUG 2025/02/07 13:35:47 pv 2 power: 1629W
[solar-tripower] TRACE 2025/02/07 13:35:47 modbus: send 03 b8 00 00 00 06 03 03 77 31 00 04
[solar-tripower] TRACE 2025/02/07 13:35:47 modbus: recv 03 b8 00 00 00 0b 03 03 08 00 00 00 00 01 0b b2 34
[solar-se-battery] TRACE 2025/02/07 13:35:47 modbus: recv 0c fe 00 00 00 07 03 04 04 00 00 00 00
[solar-se-battery] TRACE 2025/02/07 13:35:47 modbus: send 0c ff 00 00 00 06 03 04 7a a1 00 02
[solar-se-battery] TRACE 2025/02/07 13:35:47 modbus: recv 0c ff 00 00 00 07 03 04 04 00 00 00 00
[site ] DEBUG 2025/02/07 13:35:47 battery 1 power: 0W
[solar-se-pv] TRACE 2025/02/07 13:35:47 modbus: send 0d 00 00 00 00 06 03 03 78 35 00 02
[solar-se-pv] TRACE 2025/02/07 13:35:47 modbus: recv 0d 00 00 00 00 07 03 03 04 00 00 01 4e
[solar-se-pv] TRACE 2025/02/07 13:35:47 modbus: send 0d 01 00 00 00 06 03 03 78 f1 00 02
[solar-se-pv] TRACE 2025/02/07 13:35:47 modbus: recv 0d 01 00 00 00 07 03 03 04 00 00 03 22
[site ] DEBUG 2025/02/07 13:35:47 pv 1 power: 1136W
[solar-se-battery] TRACE 2025/02/07 13:35:47 modbus: send 0d 02 00 00 00 06 03 03 7a a9 00 04
[solar-se-battery] TRACE 2025/02/07 13:35:47 modbus: recv 0d 02 00 00 00 0b 03 03 08 00 00 00 00 00 34 cc 00
[solar-se-battery] TRACE 2025/02/07 13:35:47 modbus: send 0d 03 00 00 00 06 03 03 78 7d 00 02
[solar-se-battery] TRACE 2025/02/07 13:35:47 modbus: recv 0d 03 00 00 00 07 03 03 04 00 00 00 06
[site ] DEBUG 2025/02/07 13:35:47 battery 1 soc: 6%
[solar-se-pv] TRACE 2025/02/07 13:35:47 modbus: send 0d 04 00 00 00 06 03 03 77 31 00 04
[solar-se-pv] TRACE 2025/02/07 13:35:47 modbus: recv 0d 04 00 00 00 0b 03 03 08 00 00 00 00 00 a7 53 3b
[site ] DEBUG 2025/02/07 13:35:47 pv power: 2765W
[site ] DEBUG 2025/02/07 13:35:47 site power: 1241W
[openwb-2.0] TRACE 2025/02/07 13:35:47 modbus: send 11 78 00 00 00 06 01 04 27 76 00 02
[openwb-2.0] TRACE 2025/02/07 13:35:47 modbus: recv 11 78 00 00 00 07 01 04 04 00 48 53 5a
[lp-2 ] DEBUG 2025/02/07 13:35:47 charge total import: 4739.930kWh
[openwb-2.0] TRACE 2025/02/07 13:35:47 modbus: send 11 79 00 00 00 06 01 04 27 83 00 01
[openwb-2.0] TRACE 2025/02/07 13:35:47 modbus: recv 11 79 00 00 00 05 01 04 02 00 00
[openwb-2.0] TRACE 2025/02/07 13:35:47 modbus: send 11 7a 00 00 00 06 01 04 27 82 00 01
[openwb-2.0] TRACE 2025/02/07 13:35:47 modbus: recv 11 7a 00 00 00 05 01 04 02 00 01
[lp-2 ] DEBUG 2025/02/07 13:35:47 charger status: B
[openwb-2.0] TRACE 2025/02/07 13:35:47 modbus: send 11 7b 00 00 00 06 01 04 27 b0 00 0a
[openwb-2.0] TRACE 2025/02/07 13:35:47 modbus: recv 11 7b 00 00 00 17 01 04 14 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[openwb-2.0] TRACE 2025/02/07 13:35:47 modbus: send 11 7c 00 00 00 06 01 04 27 83 00 01
[openwb-2.0] TRACE 2025/02/07 13:35:47 modbus: recv 11 7c 00 00 00 05 01 04 02 00 00
[openwb-2.0] TRACE 2025/02/07 13:35:47 modbus: send 11 7d 00 00 00 06 01 04 27 82 00 01
[openwb-2.0] TRACE 2025/02/07 13:35:47 modbus: recv 11 7d 00 00 00 05 01 04 02 00 01
[lp-2 ] DEBUG 2025/02/07 13:35:47 plan: charge 0s between 0001-01-01 00:53:28 +0053 LMT until 2025-02-10 07:30:00 +0100 CET (power: 11040W, avg cost: NaN)
[lp-2 ] DEBUG 2025/02/07 13:35:47 !! pvScalePhases DOWN activePhases: 1, available power: -1241W, scalable: false
[lp-2 ] DEBUG 2025/02/07 13:35:47 !! pvScalePhases UP maxPhases: 3, available power: -1241W, scalable: false
[lp-2 ] DEBUG 2025/02/07 13:35:47 !! pvScalePhases EXIT
[lp-2 ] DEBUG 2025/02/07 13:35:47 pv charge current: 0A = 0A + -5.4A (1241W @ 1p)
[sma ] TRACE 2025/02/07 13:35:48 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:49 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:50 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:51 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:52 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:53 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:54 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:54 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:55 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:56 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:57 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:58 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:35:59 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:36:00 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:36:01 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:36:02 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:36:03 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:36:04 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:36:05 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:36:06 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:36:07 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:36:08 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:36:09 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:36:10 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[mqtt ] TRACE 2025/02/07 13:36:10 recv evcc/niro/soc: '70'
[mqtt ] TRACE 2025/02/07 13:36:10 recv evcc/superb/soc: '7'
[mqtt ] TRACE 2025/02/07 13:36:10 recv evcc/niro/range: '234'
[mqtt ] TRACE 2025/02/07 13:36:10 recv evcc/superb/range: '1'
[sma ] TRACE 2025/02/07 13:36:11 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:36:12 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:36:13 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:36:14 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:36:15 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:36:16 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:36:17 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[site ] DEBUG 2025/02/07 13:36:17 ----
[openwb-2.0] TRACE 2025/02/07 13:36:17 modbus: send 11 7e 00 00 00 06 01 04 27 74 00 02
[openwb-2.0] TRACE 2025/02/07 13:36:17 modbus: recv 11 7e 00 00 00 07 01 04 04 00 00 00 00
[lp-2 ] DEBUG 2025/02/07 13:36:17 charge power: 0W
[openwb-2.0] TRACE 2025/02/07 13:36:17 modbus: send 11 7f 00 00 00 06 01 04 27 7b 00 03
[openwb-2.0] TRACE 2025/02/07 13:36:17 modbus: recv 11 7f 00 00 00 09 01 04 06 00 00 00 00 00 00
[lp-2 ] DEBUG 2025/02/07 13:36:17 charge currents: [0 0 0]A
[openwb-2.0] TRACE 2025/02/07 13:36:17 modbus: send 11 80 00 00 00 06 01 04 27 d8 00 02
[openwb-2.0] TRACE 2025/02/07 13:36:17 modbus: recv 11 80 00 00 00 07 01 04 04 00 00 0a 66
[lp-1 ] DEBUG 2025/02/07 13:36:17 charge power: 2662W
[openwb-2.0] TRACE 2025/02/07 13:36:17 modbus: send 11 81 00 00 00 06 01 04 27 df 00 03
[openwb-2.0] TRACE 2025/02/07 13:36:17 modbus: recv 11 81 00 00 00 09 01 04 06 00 40 02 57 02 40
[lp-1 ] DEBUG 2025/02/07 13:36:17 charge currents: [0.64 5.99 5.76]A
[site ] DEBUG 2025/02/07 13:36:17 grid power: 1310W
[site ] DEBUG 2025/02/07 13:36:17 grid powers: [882 920 -492]W
[site ] DEBUG 2025/02/07 13:36:17 grid currents: [4.28 4.32 -2.58]A
[solar-tripower] TRACE 2025/02/07 13:36:17 modbus: send 03 b9 00 00 00 06 03 04 78 37 00 02
[solar-tripower] TRACE 2025/02/07 13:36:17 modbus: recv 03 b9 00 00 00 07 03 04 04 00 00 06 50
[site ] DEBUG 2025/02/07 13:36:17 pv 2 power: 1616W
[solar-tripower] TRACE 2025/02/07 13:36:17 modbus: send 03 ba 00 00 00 06 03 03 77 31 00 04
[solar-tripower] TRACE 2025/02/07 13:36:17 modbus: recv 03 ba 00 00 00 0b 03 03 08 00 00 00 00 01 0b b2 42
[solar-se-battery] TRACE 2025/02/07 13:36:17 modbus: send 0d 05 00 00 00 06 03 04 7a a3 00 02
[solar-se-battery] TRACE 2025/02/07 13:36:17 modbus: recv 0d 05 00 00 00 07 03 04 04 00 00 00 00
[solar-se-battery] TRACE 2025/02/07 13:36:17 modbus: send 0d 06 00 00 00 06 03 04 7a a1 00 02
[solar-se-battery] TRACE 2025/02/07 13:36:17 modbus: recv 0d 06 00 00 00 07 03 04 04 00 00 00 00
[site ] DEBUG 2025/02/07 13:36:17 battery 1 power: 0W
[solar-se-pv] TRACE 2025/02/07 13:36:17 modbus: send 0d 07 00 00 00 06 03 03 78 35 00 02
[solar-se-pv] TRACE 2025/02/07 13:36:17 modbus: recv 0d 07 00 00 00 07 03 03 04 00 00 01 4e
[solar-se-pv] TRACE 2025/02/07 13:36:17 modbus: send 0d 08 00 00 00 06 03 03 78 f1 00 02
[solar-se-pv] TRACE 2025/02/07 13:36:17 modbus: recv 0d 08 00 00 00 07 03 03 04 00 00 03 06
[site ] DEBUG 2025/02/07 13:36:17 pv 1 power: 1108W
[solar-se-battery] TRACE 2025/02/07 13:36:17 modbus: send 0d 09 00 00 00 06 03 03 7a a9 00 04
[solar-se-battery] TRACE 2025/02/07 13:36:17 modbus: recv 0d 09 00 00 00 0b 03 03 08 00 00 00 00 00 34 cc 00
[solar-se-battery] TRACE 2025/02/07 13:36:17 modbus: send 0d 0a 00 00 00 06 03 03 78 7d 00 02
[solar-se-battery] TRACE 2025/02/07 13:36:17 modbus: recv 0d 0a 00 00 00 07 03 03 04 00 00 00 06
[site ] DEBUG 2025/02/07 13:36:17 battery 1 soc: 6%
[solar-se-pv] TRACE 2025/02/07 13:36:17 modbus: send 0d 0b 00 00 00 06 03 03 77 31 00 04
[solar-se-pv] TRACE 2025/02/07 13:36:17 modbus: recv 0d 0b 00 00 00 0b 03 03 08 00 00 00 00 00 a7 53 43
[site ] DEBUG 2025/02/07 13:36:17 pv power: 2724W
[site ] DEBUG 2025/02/07 13:36:17 site power: 1310W
[lp-1 ] DEBUG 2025/02/07 13:36:17 detected active phases: 2p
[openwb-2.0] TRACE 2025/02/07 13:36:17 modbus: send 11 82 00 00 00 06 01 04 27 da 00 02
[openwb-2.0] TRACE 2025/02/07 13:36:17 modbus: recv 11 82 00 00 00 07 01 04 04 00 43 1f 00
[openwb-2.0] TRACE 2025/02/07 13:36:17 modbus: send 11 83 00 00 00 06 01 04 27 da 00 02
[openwb-2.0] TRACE 2025/02/07 13:36:17 modbus: recv 11 83 00 00 00 07 01 04 04 00 43 1f 00
[lp-1 ] DEBUG 2025/02/07 13:36:17 charge total import: 4398.848kWh
[openwb-2.0] TRACE 2025/02/07 13:36:17 modbus: send 11 84 00 00 00 06 01 04 27 e7 00 01
[openwb-2.0] TRACE 2025/02/07 13:36:17 modbus: recv 11 84 00 00 00 05 01 04 02 00 01
[lp-1 ] DEBUG 2025/02/07 13:36:17 charger status: C
[openwb-2.0] TRACE 2025/02/07 13:36:17 modbus: send 11 85 00 00 00 06 01 04 28 14 00 0a
[openwb-2.0] TRACE 2025/02/07 13:36:17 modbus: recv 11 85 00 00 00 17 01 04 14 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[lp-1 ] DEBUG 2025/02/07 13:36:17 soc estimated: 90.09% (vehicle: 70.00%)
[lp-1 ] DEBUG 2025/02/07 13:36:17 vehicle soc: 90%
[lp-1 ] DEBUG 2025/02/07 13:36:17 vehicle range: 234km
[lp-1 ] DEBUG 2025/02/07 13:36:17 !! pvScalePhases DOWN activePhases: 2, available power: 1352W, scalable: true
[lp-1 ] DEBUG 2025/02/07 13:36:17 available power 1352W < 2760W min 2p threshold
[lp-1 ] DEBUG 2025/02/07 13:36:17 phase scale1p in 0s
[lp-1 ] DEBUG 2025/02/07 13:36:17 !! pvScalePhases UP maxPhases: 2, available power: 1352W, scalable: false
[lp-1 ] DEBUG 2025/02/07 13:36:17 !! pvScalePhases EXIT
[lp-1 ] DEBUG 2025/02/07 13:36:17 pv charge current: 3.15A = 6A + -2.85A (1310W @ 2p)
[sma ] TRACE 2025/02/07 13:36:18 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:36:19 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:36:20 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:36:21 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:36:22 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:36:23 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]
[sma ] TRACE 2025/02/07 13:36:24 recv 10.2.201.120: [proto.GroupPacketEntry, proto.SmaNet2PacketEntry]

Und dazu das Resultat des State-Endpoints:

{
"result": {
"auth": {},
"aux": [],
"battery": [
{
"power": 0,
"energy": 3460.096,
"capacity": 0,
"soc": 6,
"controllable": true
}
],
"batteryCapacity": 1,
"batteryDischargeControl": false,
"batteryEnergy": 3460.096,
"batteryGridChargeActive": false,
"batteryMode": "unknown",
"batteryPower": 0,
"batterySoc": 6,
"bufferSoc": 0,
"bufferStartSoc": 0,
"currency": "EUR",
"eebus": false,
"ext": [],
"fatal": null,
"greenShareHome": 1,
"greenShareLoadpoints": 0.547,
"grid": {
"power": 1181.3,
"energy": 7005.806,
"powers": [
835.6,
853.6,
-507.8
],
"currents": [
4.151,
4.103,
-2.662
]
},
"gridConfigured": true,
"hems": {},
"homePower": 1340.3,
"influx": {
"url": "",
"database": "",
"org": "",
"user": "",
"insecure": false
},
"interval": 30,
"loadpoints": [
{
"batteryBoost": false,
"chargeCurrent": 6,
"chargeCurrents": [
0.63,
5.9,
5.77
],
"chargeDuration": 14040,
"chargePower": 2606,
"chargeRemainingDuration": 3236,
"chargeRemainingEnergy": 2220.118,
"chargeTotalImport": 4398.848,
"chargedEnergy": 12222,
"chargerFeatureHeating": false,
"chargerFeatureIntegratedDevice": false,
"chargerIcon": null,
"chargerPhases1p3p": true,
"chargerPhysicalPhases": null,
"chargerStatusReason": "unknown",
"charging": true,
"connected": true,
"connectedDuration": 0,
"disableDelay": 180,
"disableThreshold": 0,
"effectiveLimitSoc": 100,
"effectiveMaxCurrent": 16,
"effectiveMinCurrent": 6,
"effectivePlanId": 2,
"effectivePlanSoc": 50,
"effectivePlanTime": "2025-02-10T08:00:00+01:00",
"effectivePriority": 0,
"enableDelay": 60,
"enableThreshold": 0,
"enabled": true,
"limitEnergy": 0,
"limitSoc": 0,
"maxCurrent": 16,
"minCurrent": 6,
"mode": "pv",
"phaseAction": "scale1p",
"phaseRemaining": 0,
"phasesActive": 2,
"phasesConfigured": 0,
"phasesEnabled": 3,
"planActive": false,
"planEnergy": 0,
"planOverrun": 0,
"planProjectedEnd": null,
"planProjectedStart": null,
"planTime": null,
"priority": 0,
"pvAction": "inactive",
"pvRemaining": 0,
"sessionCo2PerKWh": null,
"sessionEnergy": 12222,
"sessionPrice": 0.537,
"sessionPricePerKWh": 0.044,
"sessionSolarPercentage": 84.867,
"smartCostActive": false,
"smartCostNextStart": null,
"title": "Kia",
"vehicleClimaterActive": null,
"vehicleDetectionActive": false,
"vehicleLimitSoc": 0,
"vehicleName": "kia",
"vehicleOdometer": 0,
"vehicleRange": 234,
"vehicleSoc": 90.087,
"vehicleWelcomeActive": false
},
{
"batteryBoost": false,
"chargeCurrent": 0,
"chargeCurrents": [
0,
0,
0
],
"chargeDuration": 0,
"chargePower": 0,
"chargeRemainingEnergy": 25833.333,
"chargeTotalImport": 4739.93,
"chargedEnergy": 0,
"chargerFeatureHeating": false,
"chargerFeatureIntegratedDevice": false,
"chargerIcon": null,
"chargerPhases1p3p": true,
"chargerPhysicalPhases": null,
"chargerStatusReason": "unknown",
"charging": false,
"connected": true,
"connectedDuration": 0,
"disableDelay": 180,
"disableThreshold": 0,
"effectiveLimitSoc": 100,
"effectiveMaxCurrent": 16,
"effectiveMinCurrent": 6,
"effectivePlanId": 2,
"effectivePlanSoc": 50,
"effectivePlanTime": "2025-02-10T07:30:00+01:00",
"effectivePriority": 0,
"enableDelay": 60,
"enableThreshold": 0,
"enabled": false,
"limitEnergy": 0,
"limitSoc": 0,
"maxCurrent": 16,
"minCurrent": 6,
"mode": "pv",
"phaseAction": "inactive",
"phaseRemaining": 0,
"phasesActive": 1,
"phasesConfigured": 0,
"phasesEnabled": 1,
"planActive": false,
"planEnergy": 0,
"planOverrun": 0,
"planProjectedEnd": null,
"planProjectedStart": null,
"planTime": null,
"priority": 0,
"pvAction": "inactive",
"pvRemaining": 0,
"sessionCo2PerKWh": null,
"sessionEnergy": 0,
"sessionPrice": null,
"sessionPricePerKWh": null,
"sessionSolarPercentage": 0,
"smartCostActive": false,
"smartCostNextStart": null,
"title": "Superb",
"vehicleClimaterActive": null,
"vehicleDetectionActive": false,
"vehicleLimitSoc": 0,
"vehicleName": "superb",
"vehicleOdometer": 0,
"vehicleRange": 1,
"vehicleSoc": 7,
"vehicleWelcomeActive": false
}
],
"messaging": true,
"modbusproxy": null,
"mqtt": {
"broker": "192.168.2.218:1883",
"topic": "evcc",
"user": "homeassistant",
"clientID": "evcc"
},
"network": {
"schema": "http",
"host": "evcc.local",
"port": 7070
},
"prioritySoc": 0,
"pv": [
{
"power": 1117,
"energy": 10965.835000000001
},
{
"power": 1648,
"energy": 17543.759000000002
}
],
"pvEnergy": 28509.594,
"pvPower": 2765,
"residualPower": 0,
"siteTitle": "Zu Hause",
"smartCostType": "priceforecast",
"sponsor": {
"name": "",
"expiresAt": "0001-01-01T00:00:00Z"
},
"statistics": {
"30d": {
"avgCo2": 0,
"avgPrice": 0.23355287230737382,
"chargedKWh": 243.85599999999795,
"solarPercentage": 54.23664610684996
},
"365d": {
"avgCo2": 0,
"avgPrice": 0.23355287230737382,
"chargedKWh": 243.85599999999795,
"solarPercentage": 54.23664610684996
},
"thisYear": {
"avgCo2": 0,
"avgPrice": 0.23355287230737382,
"chargedKWh": 243.85599999999795,
"solarPercentage": 54.23664610684996
},
"total": {
"avgCo2": 0,
"avgPrice": 0.23355287230737382,
"chargedKWh": 243.85599999999795,
"solarPercentage": 54.23664610684996
}
},
"tariffGrid": 0.279,
"tariffPriceHome": 0,
"tariffPriceLoadpoints": 0.126,
"vehicles": {
"kia": {
"title": "Kia",
"capacity": 64,
"minSoc": 30,
"repeatingPlans": [
{
"weekdays": [
1,
2,
3,
4,
5
],
"time": "08:00",
"tz": "Europe/Berlin",
"soc": 50,
"active": true
}
]
},
"superb": {
"title": "Superb",
"capacity": 25,
"repeatingPlans": [
{
"weekdays": [
1,
2,
3,
4,
5
],
"time": "07:30",
"tz": "Europe/Berlin",
"soc": 50,
"active": true
}
]
}
},
"version": "0.133.0"
}
}

Beim vehicleSoc wird über 90 ausgegeben, wobei 70 auf dem Topic evcc/niro/soc gepublisht wurde.

@ThomasWetzel
Copy link
Author

Ich denke, der Unterschied kommt daher, dass das EstimatedSoc angezeigt wird.

Das kommt aus der Zeile

soc estimated: 90.09% (vehicle: 70.00%)

Vielleicht liegt es ja daran, das die Schätzung herangezogen wird?

@ThomasWetzel
Copy link
Author

Irgendwie ist der Estimator der Meinung, dass die vorhandenen Werte keinen richtigen Sinn mehr ergeben und dann wird der SOC ermittelt, anstatt den vehicleSoc zu verwenden:

if s.estimate && s.virtualCapacity > 0 {
socDelta := s.vehicleSoc - s.prevSoc
energyDelta := max(chargedEnergy, 0) - s.prevChargedEnergy

	if socDelta != 0 || energyDelta < 0

wenn dies der Fall ist, dann wird der Soc berechnet:

} else {
s.vehicleSoc = min(*fetchedSoc+energyDelta/s.energyPerSocStep, 100)
s.log.DEBUG.Printf("soc estimated: %.2f%% (vehicle: %.2f%%)", s.vehicleSoc, *fetchedSoc)
}

Der Wert kommt anscheinend richtig vom MQTT, aber entweder ist socDelta nicht genau 0 oder das energyDelta kleiner als 0.

Was könnte das für eine Ursache haben?

@ThomasWetzel
Copy link
Author

Ich glaube, den Grund für das Phänome gefunden zu haben:

Das Batterie-Level wird alle 30 Minuten abgefragt.
In dieser Zeit wird das Auto aber weiter fleißig geladen.

Nun kommt der Code an die Stelle, wo überprüft wird, ob das Auto die geladene Energie berücksichtigt.
Gibt es hier eine Differenz, wird auf den Fallback zurückgegriffen und die geschätzte Ladung angezeigt, anstatt auf den Vehicle-Wert zu vertrauen.

Das führt dazu, dass das Auto voller geschätzt wird, als es tatsächlich ist.

Wenn noch die chargedEnergy und die prevChargedEnergy getraced werden könnte, wären wir schlauer. :-)

Vielen Dank im übrigen für das tolle Projekt.

@ThomasWetzel
Copy link
Author

Noch eine Erkenntnis:

nach einiger Zeit ist socDiff > 10 und energyDiff > 0

und danach ist die Berechnung wieder intakt, wie man hier sieht:

hier geht der Ladestand schlagartig von 95% auf 77% (richtiger Wert) runter:

[lp-1 ] DEBUG 2025/02/07 14:03:17 pv disable timer remaining: 1m0s
[lp-1 ] DEBUG 2025/02/07 14:03:47 charge power: 2632W
[lp-1 ] DEBUG 2025/02/07 14:03:47 charge currents: [0.63 5.94 5.88]A
[lp-1 ] DEBUG 2025/02/07 14:04:17 charge power: 2629W
[lp-1 ] DEBUG 2025/02/07 14:04:17 charge currents: [0.63 5.92 5.87]A
[lp-1 ] DEBUG 2025/02/07 14:04:17 charge total import: 4399.992kWh
[lp-1 ] DEBUG 2025/02/07 14:04:17 charger status: C
[lp-1 ] DEBUG 2025/02/07 14:04:17 soc estimated: 95.20% (vehicle: 70.00%)
[lp-1 ] DEBUG 2025/02/07 14:04:17 vehicle soc: 95%
[lp-1 ] DEBUG 2025/02/07 14:04:17 vehicle range: 234km
[lp-1 ] DEBUG 2025/02/07 14:04:17 pv charge current: 0A = 6A + -9.61A (2209W @ 1p)
[lp-1 ] DEBUG 2025/02/07 14:04:17 projected site power 2209W >= 0W disable threshold
[lp-1 ] DEBUG 2025/02/07 14:04:17 pv disable in 0s
[lp-1 ] DEBUG 2025/02/07 14:04:17 pv disable timer remaining: 0s
[lp-1 ] DEBUG 2025/02/07 14:04:47 charge power: 2632W
[lp-1 ] DEBUG 2025/02/07 14:04:47 charge currents: [0.63 5.93 5.87]A
[lp-1 ] DEBUG 2025/02/07 14:05:17 charge power: 2632W
[lp-1 ] DEBUG 2025/02/07 14:05:17 charge currents: [0.63 5.93 5.86]A
[lp-1 ] DEBUG 2025/02/07 14:05:17 detected active phases: 2p
[lp-1 ] DEBUG 2025/02/07 14:05:17 charge total import: 4400.036kWh
[lp-1 ] DEBUG 2025/02/07 14:05:17 charger status: C
[lp-1 ] DEBUG 2025/02/07 14:05:17 soc gradient updated: soc: 77.0%, socDiff: 41.0%, energyDiff: 13302Wh, energyPerSocStep: 324.4Wh, virtualCapacity: 32444Wh
[lp-1 ] DEBUG 2025/02/07 14:05:17 vehicle soc: 77%
[lp-1 ] DEBUG 2025/02/07 14:05:17 vehicle range: 261km
[lp-1 ] WARN 2025/02/07 14:05:17 charger logic error: phases mismatch (got 3 measured, expected 1)
[lp-1 ] DEBUG 2025/02/07 14:05:17 !! pvScalePhases DOWN activePhases: 3, available power: 369W, scalable: true
[lp-1 ] DEBUG 2025/02/07 14:05:17 available power 369W < 4140W min 3p threshold
[lp-1 ] DEBUG 2025/02/07 14:05:17 start phase scale1p timer
[lp-1 ] DEBUG 2025/02/07 14:05:17 phase scale1p in 3m0s
[lp-1 ] DEBUG 2025/02/07 14:05:17 !! pvScalePhases UP maxPhases: 3, available power: 369W, scalable: false
[lp-1 ] DEBUG 2025/02/07 14:05:17 !! pvScalePhases EXIT
[lp-1 ] DEBUG 2025/02/07 14:05:17 pv charge current: 2.72A = 6A + -3.28A (2263W @ 3p)
[lp-1 ] DEBUG 2025/02/07 14:05:17 pv disable timer reset
[lp-1 ] DEBUG 2025/02/07 14:05:17 pv timer inactive
[lp-1 ] DEBUG 2025/02/07 14:05:47 charge power: 2631W
[lp-1 ] DEBUG 2025/02/07 14:05:47 charge currents: [0.63 5.94 5.88]A
[lp-1 ] DEBUG 2025/02/07 14:06:17 charge power: 2633W
[lp-1 ] DEBUG 2025/02/07 14:06:17 charge currents: [0.63 5.95 5.88]A
[lp-1 ] DEBUG 2025/02/07 14:06:17 detected active phases: 2p
[lp-1 ] DEBUG 2025/02/07 14:06:17 charge total import: 4400.081kWh
[lp-1 ] DEBUG 2025/02/07 14:06:17 charger status: C
[lp-1 ] DEBUG 2025/02/07 14:06:17 soc estimated: 77.14% (vehicle: 77.00%)
[lp-1 ] DEBUG 2025/02/07 14:06:17 vehicle soc: 77%
[lp-1 ] DEBUG 2025/02/07 14:06:17 vehicle range: 261km

@andig
Copy link
Member

andig commented Feb 7, 2025

Mach doch mal den Estimator aus. Der kommt vmtl. nicht mit dem Zeitverhalten der soc-Sprünge klar.

@ThomasWetzel
Copy link
Author

Werde ich machen.

Der Estimator ist ja eine prima Sache, wenn er aber 20% zu viel Ladung berechnet wird, führt das im Endeffekt zu einem Aha-Effekt, wenn das Auto doch nicht geladen ist.

@ThomasWetzel
Copy link
Author

Dumme Frage:

Wo kann ich in meiner Konfiguration estimate: false setzen?

Ich habe es auf SOC-Level, Loadpoint und vehicle probiert.

Jeweils wurde mir gemeldet, dass die Konfiguration nicht gültig ist.

@mfuchs1984
Copy link
Contributor

mfuchs1984 commented Feb 7, 2025

@ThomasWetzel
Copy link
Author

Merci.

So wird die Konfiguration akzeptiert.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants