evcc-io / evcc

Sonne tanken ☀️🚘
https://evcc.io
MIT License
3.32k stars 606 forks source link

PV-Überschuss-Laden schwankt bei konstanter PV-Leistung und konstantem Hausverbrauch um etwa 400W #14212

Closed An-Wi closed 3 months ago

An-Wi commented 3 months ago

Describe the bug

PV-Leistung: 6.000 W (konstant) Hausverbrauch: 1.100 W (konstant) Ladeleistung: 4.900 - 5.300 W (variiert ohne erkennbaren Grund)

Bei Ladeleistung 4.900 W ist kaum Netzbezug (nur im Rahmen von "residualPower: -100") Bei Ladeleistung 5.300 W ist dann Netzbezug von ca. 400-500W, der anschließend aber sofort durch Reduktion der Ladeleistung (auf erneut 4.900 W) entsprechend wieder auf ca. 0-100W absinkt.

Frage: Warum wird die Ladeleistung kurzzeitig auf 5.300W erhöht? Ich erkenne keinen plausiblen Grund im Log. Zeitstempel: 12:32:16 und 12:33:56

Steps to reproduce

1. 2. 3. ...

Configuration details

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

interval: 20s   #25s #30s # control cycle interval

# database configuration for persisting charge sessions and settings
# database:
#   type: sqlite
#   dsn: <path-to-db-file>

# sponsor token enables optional features (request at https://sponsor.evcc.io)
sponsortoken: ***

# telemetry enables aggregated statistics
#
# Telemetry allows collecting usage data (grid and green energy, charge power).
# Data is aggregated, no individual charging sessions are tracked. The collected,
# anonymous data can be retrieved using https://api.evcc.io.
#
# See https://github.com/evcc-io/evcc/pull/4343 or details.
#
# For time being, this is only available to sponsors, hence data is associated with
# the sponsor token's identity.
#
# telemetry: true

# log settings
log: info   
levels:
  site: debug
  lp-1: debug #trace
  lp-2: debug
  cache: error
  db: trace #error
  #nissan: debug #trace
  nissan: trace
  script: debug

# modbus proxy for allowing external programs to reuse the evcc modbus connection
# each entry will start a proxy instance at the given port speaking Modbus TCP and
# relaying to the given modbus downstream device (either TCP or RTU, RS485 or TCP)
modbusproxy:
  #  - port: 5200
  #    uri: solar-edge:502
  #    # rtu: true
  #    # readonly: true

# meter definitions
# name can be freely chosen and is used as reference when assigning meters to site and loadpoints
# for documentation see https://docs.evcc.io/docs/devices/meters
meters:
  - name: grid1
    type: template
    template: tq-em 
    usage: grid  
    host: 192.168.115.10  
    port: 80  
    password: ***
    # power: Power # default value, optionally override
    # energy: Sum # default value, optionally override
  - name: pv1
    type: custom
    power:
        source: script
        cmd: /fupcService/pvCurrentPower.bat
        timeout: 5s

# charger definitions
# name can be freely chosen and is used as reference when assigning charger to vehicle
# for documentation see https://docs.evcc.io/docs/devices/chargers
chargers:
  - name: wallbox1
    type: template
    template: dadapower
    #Modbus TCP
    modbus: tcpip
    id: 1
    host: 192.168.115.11
    port: 502

# vehicle definitions
# name can be freely chosen and is used as reference when assigning vehicle to loadpoint
# for documentation see https://docs.evcc.io/docs/devices/vehicles
vehicles:
  - name: ev1
    type: template
    #template: nissan 
    template: nissan-ariya
    title: Ariya  
    user: ***
    password: ***
    vin: JN1***
    capacity: 87  # kWh
    cache: 5m   #default: 15m
    identifiers:
    - N-0402fb013d4903-card1
    - N-04038101c00303-card2

    # onIdentify: # set defaults when vehicle is identified
    #   mode: minpv # enable PV-charging when vehicle is identified
    #   minSoc: 20 # immediately charge to 0% regardless of mode unless "off" (disabled)
    #   targetSoc: 90 # limit charge to 90%

# site describes the EVU connection, PV and home battery
site:
  title: ev ↯ charge control  # display name for UI
  meters:
    grid: grid1 # grid meter
    pv: pv1
    # pv:
    #   - pv # list of pv inverters/ meters
    # battery:
    #   - battery # list of battery meters
    # aux:
    #   - aux # list of auxiliary meters for adjusting grid operating point
  residualPower: -100    #-200   #0 # additional household usage margin
  # prioritySoc: 0 # give home battery priority up to this soc (empty to disable)
  # bufferSoc: 0 # continue charging on battery above soc (0 to disable)
  # bufferStartSoc: 0 # start charging on battery above soc (0 to disable)
  maxGridSupplyWhileBatteryCharging: 0 # ignore battery charging if AC consumption is above this value
  # smartCostLimit: 0 # set cost limit for automatic charging in PV mode

# loadpoint describes the charger, charge meter and connected vehicle
loadpoints:
  - title: Einfahrt # display name for UI
    charger: wallbox1 # charger
    # meter: charge # charge meter
    mode: pv   # minpv  # set default charge mode, use "off" to disable by default if charger is publicly available
    vehicle: ev1 # set default vehicle (disables vehicle detection)
    # resetOnDisconnect: true # set defaults when vehicle disconnects
    phases: 0   #3   #0 # electrical connection (normal charger: default 3 for 3 phase, 1p3p charger: 0 for "auto" or 1/3 for fixed phases)
    # minCurrent: 6 # minimum charge current (default 6A)
    # maxCurrent: 16 # maximum charge current (default 16A)

    # remaining settings are experts-only and best left at default values
    priority: 0 # relative priority for concurrent charging in PV mode with multiple loadpoints (higher values have higher priority)
    soc:
      # polling defines usage of the vehicle APIs
      # Modifying the default settings it NOT recommended. It MAY deplete your vehicle's battery
      # or lead to vehicle manufacturer banning you from API use. USE AT YOUR OWN RISK.
      poll:
        # poll mode defines under which condition the vehicle API is called:
        #   charging: update vehicle ONLY when charging (this is the recommended default)
        #   connected: update vehicle when connected (not only charging), interval defines how often
        #   always: always update vehicle regardless of connection state, interval defines how often (only supported for single vehicle)
        mode: always    #charging
        # poll interval defines how often the vehicle API may be polled if NOT charging
        interval: 60m
      estimate: true # set false to disable interpolating between api updates (not recommended)
    enable: # pv mode enable behavior
      delay: 2m         #1m # threshold must be exceeded for this long
      threshold: -800   #0 # grid power threshold (in Watts, negative=export). If zero, export must exceed minimum charge power to enable
    disable: # pv mode disable behavior
      delay: 5m         # 3m # threshold must be exceeded for this long
      threshold: 500    #0 # maximum import power (W)
    guardDuration: 10m # 5m # switch charger contactor not more often than this (default 5m)

  # tariffs are the fixed or variable tariffs
tariffs:
  currency: EUR # three letter ISO-4217 currency code (default EUR)
  grid:
    # either static grid price (or price zones)
    type: fixed
    price: 0.2797  #0.312 #0.355 # EUR/kWh
    zones:
      - days: Mo-So
        hours: 0-6
        price: 0.2797 #0.312 #0.2455 # EUR/kWh
      - days: Mo-So
        hours: 22-0
        price: 0.2797 #0.312 #0.2455 # EUR/kWh

    # or variable tariffs
    # type: tibber
    # token: "476c477d8a039529478ebd690d35ddd80e3308ffc49b59c65b142321aee963a4" # access token
    # homeid: "cc83e83e-8cbf-4595-9bf7-c3cf192f7d9c" # optional if multiple homes associated to account

    # type: awattar
    # region: de # optional, choose at for Austria
    # charges: # optional, additional charges per kWh
    # tax: # optional, additional tax (0.1 for 10%)

    # type: octopusenergy
    # tariff: AGILE-FLEX-22-11-25 # Tariff code
    # region: A # optional

    # type: elering # Nordpool
    # region: ee # or lt, lv, fi
    # charges: # optional, additional charges per kWh
    # tax: # optional, additional tax (0.1 for 10%)

    # type: energinet # Energinet using the price in DKK
    # region: dk1 # or dk2
    # charges: # optional, additional charges per kWh
    # tax: # optional, additional tax (0.1 for 10%)
  feedin:
    # rate for feeding excess (pv) energy to the grid
    type: fixed
    price: 0.1427 # EUR/kWh

    # type: octopusenergy
    # tariff: AGILE-FLEX-22-11-25 # Tariff code
    # region: A # optional
  co2:
    # co2 tariff provides co2 intensity forecast and is for co2-optimized target charging if no variable grid tariff is specified
    type: grünstromindex # GrünStromIndex (Germany only)
    zip: "07552"

    # type: electricitymaps # https://app.electricitymaps.com/map
    # uri: <uri>
    # token: <token>
    # zone: DE

    # type: ngeso # National Grid Electricity System Operator data (United Kingdom only) https://carbonintensity.org.uk/
    # provides national data if both region and postcode are omitted - do not supply both at the same time!
    # region: 1 # optional, coarser than using a postcode - see https://api.carbonintensity.org.uk/ for full list
    # postcode: SW1A1AA # optional

# mqtt message broker
mqtt:
  # broker: localhost:1883
  # topic: evcc # root topic for publishing, set empty to disable
  # user:
  # password:

# influx database
influx:
  # url: http://localhost:8086
  # database: evcc
  # user:
  # password:

# eebus credentials
eebus:
  # uri: # :4712
  # interfaces: # limit eebus to specific network interfaces
  # - en0
  # certificate: # local signed certificate, required, can be generated via `evcc eebus-cert`
  #   public: # public key
  #   private: # private key

# push messages
messaging:
  events:
    start: # charge start event
      title: Charge started
      msg: Started charging in "${mode}" mode
    stop: # charge stop event
      title: Charge finished
      msg: Finished charging ${chargedEnergy:%.1fk}kWh in ${chargeDuration}.
    connect: # vehicle connect event
      title: Car connected
      msg: "Car connected at ${pvPower:%.1fk}kW PV"
    disconnect: # vehicle connected event
      title: Car disconnected
      msg: Car disconnected after ${connectedDuration}
    soc: # vehicle soc update event
      title: Soc updated
      msg: Battery charged to ${vehicleSoc:%.0f}%
    guest: # vehicle could not be identified
      title: Unknown vehicle
      msg: Unknown vehicle, guest connected?
  services:
  # - type: pushover
  #   app: # app id
  #   recipients:
  #   - # list of recipient ids
  # - type: telegram
  #   token: # bot id
  #   chats:
  #   - # list of chat ids
  # - type: email
  #   uri: smtp://<user>:<password>@<host>:<port>/?fromAddress=<from>&toAddresses=<to>
  # - type: ntfy
  #   uri: https://<host>/<topics>
  #   priority: <priority>
  #   tags: <tags>

Log details

[site ] DEBUG 2024/06/06 12:30:56 ----
[lp-1 ] DEBUG 2024/06/06 12:30:56 charge power: 4898W
[lp-1 ] DEBUG 2024/06/06 12:30:56 charge currents: [6.95 6.9 6.91]A
[script] DEBUG 2024/06/06 12:30:56 /fupcService/pvCurrentPower.bat: 6068
[site ] DEBUG 2024/06/06 12:30:56 pv power: 6068W
[site ] DEBUG 2024/06/06 12:30:57 grid meter: 17W
[site ] DEBUG 2024/06/06 12:30:57 grid currents: [1.6 1.27 1.9]A
[site ] DEBUG 2024/06/06 12:30:57 site power: -83W
[lp-1 ] DEBUG 2024/06/06 12:30:57 detected active phases: 3p
[lp-1 ] DEBUG 2024/06/06 12:30:57 !! session: chargeRater.chargedEnergy=17.6 - chargedAtStartup=0.0
[lp-1 ] DEBUG 2024/06/06 12:30:57 charge total import: 5033.490kWh
[lp-1 ] DEBUG 2024/06/06 12:30:57 charger status: C
[lp-1 ] DEBUG 2024/06/06 12:30:57 soc estimated: 44.03% (vehicle: 44.00%)
[lp-1 ] DEBUG 2024/06/06 12:30:57 vehicle soc: 44%
[lp-1 ] DEBUG 2024/06/06 12:30:57 vehicle range: 242km
[lp-1 ] DEBUG 2024/06/06 12:30:57 pv charge current: 7.56A = 7.44A + 0.121A (-83W @ 3p)
[lp-1 ] DEBUG 2024/06/06 12:30:57 max charge current: 7.56A
[site ] DEBUG 2024/06/06 12:31:16 ----
[lp-1 ] DEBUG 2024/06/06 12:31:16 charge power: 4899W
[lp-1 ] DEBUG 2024/06/06 12:31:16 charge currents: [6.96 6.9 6.91]A
[script] DEBUG 2024/06/06 12:31:16 /fupcService/pvCurrentPower.bat: 6066
[site ] DEBUG 2024/06/06 12:31:16 pv power: 6066W
[site ] DEBUG 2024/06/06 12:31:17 grid meter: 12W
[site ] DEBUG 2024/06/06 12:31:17 grid currents: [1.61 1.24 1.91]A
[site ] DEBUG 2024/06/06 12:31:17 site power: -88W
[lp-1 ] DEBUG 2024/06/06 12:31:17 detected active phases: 3p
[lp-1 ] DEBUG 2024/06/06 12:31:17 !! session: chargeRater.chargedEnergy=17.6 - chargedAtStartup=0.0
[lp-1 ] DEBUG 2024/06/06 12:31:17 charge total import: 5033.517kWh
[lp-1 ] DEBUG 2024/06/06 12:31:17 charger status: C
[lp-1 ] DEBUG 2024/06/06 12:31:17 soc estimated: 44.06% (vehicle: 44.00%)
[lp-1 ] DEBUG 2024/06/06 12:31:17 vehicle soc: 44%
[lp-1 ] DEBUG 2024/06/06 12:31:17 vehicle range: 242km
[lp-1 ] DEBUG 2024/06/06 12:31:17 pv charge current: 7.68A = 7.56A + 0.128A (-88W @ 3p)
[lp-1 ] DEBUG 2024/06/06 12:31:17 max charge current: 7.68A
[site ] DEBUG 2024/06/06 12:31:36 ----
[lp-1 ] DEBUG 2024/06/06 12:31:36 charge power: 4897W
[lp-1 ] DEBUG 2024/06/06 12:31:36 charge currents: [6.94 6.91 6.89]A
[script] DEBUG 2024/06/06 12:31:36 /fupcService/pvCurrentPower.bat: 6066
[site ] DEBUG 2024/06/06 12:31:36 pv power: 6066W
[site ] DEBUG 2024/06/06 12:31:37 grid meter: 51W
[site ] DEBUG 2024/06/06 12:31:37 grid currents: [1.58 1.23 1.96]A
[site ] DEBUG 2024/06/06 12:31:37 site power: -49W
[lp-1 ] DEBUG 2024/06/06 12:31:37 detected active phases: 3p
[lp-1 ] DEBUG 2024/06/06 12:31:37 !! session: chargeRater.chargedEnergy=17.6 - chargedAtStartup=0.0
[lp-1 ] DEBUG 2024/06/06 12:31:37 charge total import: 5033.545kWh
[lp-1 ] DEBUG 2024/06/06 12:31:37 charger status: C
[lp-1 ] DEBUG 2024/06/06 12:31:37 soc estimated: 44.09% (vehicle: 44.00%)
[lp-1 ] DEBUG 2024/06/06 12:31:37 vehicle soc: 44%
[lp-1 ] DEBUG 2024/06/06 12:31:37 vehicle range: 242km
[lp-1 ] DEBUG 2024/06/06 12:31:37 pv charge current: 7.76A = 7.68A + 0.0713A (-49W @ 3p)
[lp-1 ] DEBUG 2024/06/06 12:31:37 max charge current: 7.76A
[site ] DEBUG 2024/06/06 12:31:56 ----
[lp-1 ] DEBUG 2024/06/06 12:31:56 charge power: 4898W
[lp-1 ] DEBUG 2024/06/06 12:31:56 charge currents: [6.95 6.9 6.89]A
[script] DEBUG 2024/06/06 12:31:57 /fupcService/pvCurrentPower.bat: 6056
[site ] DEBUG 2024/06/06 12:31:57 pv power: 6056W
[site ] DEBUG 2024/06/06 12:31:57 grid meter: 18W
[site ] DEBUG 2024/06/06 12:31:57 grid currents: [1.63 1.28 1.92]A
[site ] DEBUG 2024/06/06 12:31:57 site power: -82W
[lp-1 ] DEBUG 2024/06/06 12:31:57 detected active phases: 3p
[lp-1 ] DEBUG 2024/06/06 12:31:57 !! session: chargeRater.chargedEnergy=17.7 - chargedAtStartup=0.0
[lp-1 ] DEBUG 2024/06/06 12:31:57 charge total import: 5033.572kWh
[lp-1 ] DEBUG 2024/06/06 12:31:57 charger status: C
[lp-1 ] DEBUG 2024/06/06 12:31:57 soc estimated: 44.11% (vehicle: 44.00%)
[lp-1 ] DEBUG 2024/06/06 12:31:57 vehicle soc: 44%
[lp-1 ] DEBUG 2024/06/06 12:31:57 vehicle range: 242km
[lp-1 ] DEBUG 2024/06/06 12:31:57 pv charge current: 7.88A = 7.76A + 0.12A (-82W @ 3p)
[lp-1 ] DEBUG 2024/06/06 12:31:57 max charge current: 7.88A
[site ] DEBUG 2024/06/06 12:32:16 ----
[lp-1 ] DEBUG 2024/06/06 12:32:16 charge power: 5290W
[lp-1 ] DEBUG 2024/06/06 12:32:16 charge currents: [7.51 7.46 7.45]A
[script] DEBUG 2024/06/06 12:32:16 /fupcService/pvCurrentPower.bat: 6056
[site ] DEBUG 2024/06/06 12:32:16 pv power: 6056W
[site ] DEBUG 2024/06/06 12:32:17 grid meter: 423W
[site ] DEBUG 2024/06/06 12:32:17 grid currents: [1.29 1.18 2.37]A
[site ] DEBUG 2024/06/06 12:32:17 site power: 323W
[lp-1 ] DEBUG 2024/06/06 12:32:17 detected active phases: 3p
[lp-1 ] DEBUG 2024/06/06 12:32:17 !! session: chargeRater.chargedEnergy=17.7 - chargedAtStartup=0.0
[lp-1 ] DEBUG 2024/06/06 12:32:17 charge total import: 5033.601kWh
[lp-1 ] DEBUG 2024/06/06 12:32:17 charger status: C
[lp-1 ] DEBUG 2024/06/06 12:32:17 soc estimated: 44.14% (vehicle: 44.00%)
[lp-1 ] DEBUG 2024/06/06 12:32:17 vehicle soc: 44%
[lp-1 ] DEBUG 2024/06/06 12:32:17 vehicle range: 242km
[lp-1 ] DEBUG 2024/06/06 12:32:17 pv charge current: 7.41A = 7.88A + -0.468A (323W @ 3p)
[lp-1 ] DEBUG 2024/06/06 12:32:17 max charge current: 7.41A
[site ] DEBUG 2024/06/06 12:32:36 ----
[lp-1 ] DEBUG 2024/06/06 12:32:36 charge power: 4904W
[lp-1 ] DEBUG 2024/06/06 12:32:36 charge currents: [6.95 6.91 6.91]A
[script] DEBUG 2024/06/06 12:32:36 /fupcService/pvCurrentPower.bat: 6019
[site ] DEBUG 2024/06/06 12:32:36 pv power: 6019W
[site ] DEBUG 2024/06/06 12:32:37 grid meter: 0W
[site ] DEBUG 2024/06/06 12:32:37 grid currents: [1.65 1.32 1.91]A
[site ] DEBUG 2024/06/06 12:32:37 site power: -100W
[lp-1 ] DEBUG 2024/06/06 12:32:37 detected active phases: 3p
[lp-1 ] DEBUG 2024/06/06 12:32:37 !! session: chargeRater.chargedEnergy=17.7 - chargedAtStartup=0.0
[lp-1 ] DEBUG 2024/06/06 12:32:37 charge total import: 5033.628kWh
[lp-1 ] DEBUG 2024/06/06 12:32:37 charger status: C
[lp-1 ] DEBUG 2024/06/06 12:32:37 soc estimated: 44.17% (vehicle: 44.00%)
[lp-1 ] DEBUG 2024/06/06 12:32:37 vehicle soc: 44%
[lp-1 ] DEBUG 2024/06/06 12:32:37 vehicle range: 242km
[lp-1 ] DEBUG 2024/06/06 12:32:37 pv charge current: 7.55A = 7.41A + 0.145A (-100W @ 3p)
[lp-1 ] DEBUG 2024/06/06 12:32:37 max charge current: 7.55A
[site ] DEBUG 2024/06/06 12:32:56 ----
[lp-1 ] DEBUG 2024/06/06 12:32:56 charge power: 4902W
[lp-1 ] DEBUG 2024/06/06 12:32:56 charge currents: [6.95 6.9 6.91]A
[script] DEBUG 2024/06/06 12:32:56 /fupcService/pvCurrentPower.bat: 6028
[site ] DEBUG 2024/06/06 12:32:56 pv power: 6028W
[site ] DEBUG 2024/06/06 12:32:57 grid meter: 36W
[site ] DEBUG 2024/06/06 12:32:57 grid currents: [1.56 1.26 1.94]A
[site ] DEBUG 2024/06/06 12:32:57 site power: -64W
[lp-1 ] DEBUG 2024/06/06 12:32:57 detected active phases: 3p
[lp-1 ] DEBUG 2024/06/06 12:32:57 !! session: chargeRater.chargedEnergy=17.7 - chargedAtStartup=0.0
[lp-1 ] DEBUG 2024/06/06 12:32:57 charge total import: 5033.655kWh
[lp-1 ] DEBUG 2024/06/06 12:32:57 charger status: C
[lp-1 ] DEBUG 2024/06/06 12:32:57 soc estimated: 44.20% (vehicle: 44.00%)
[lp-1 ] DEBUG 2024/06/06 12:32:57 vehicle soc: 44%
[lp-1 ] DEBUG 2024/06/06 12:32:57 vehicle range: 242km
[lp-1 ] DEBUG 2024/06/06 12:32:57 pv charge current: 7.64A = 7.55A + 0.0929A (-64W @ 3p)
[lp-1 ] DEBUG 2024/06/06 12:32:57 max charge current: 7.64A
[site ] DEBUG 2024/06/06 12:33:16 ----
[lp-1 ] DEBUG 2024/06/06 12:33:16 charge power: 4902W
[lp-1 ] DEBUG 2024/06/06 12:33:16 charge currents: [6.93 6.9 6.91]A
[script] DEBUG 2024/06/06 12:33:16 /fupcService/pvCurrentPower.bat: 6066
[site ] DEBUG 2024/06/06 12:33:16 pv power: 6066W
[site ] DEBUG 2024/06/06 12:33:17 grid meter: 13W
[site ] DEBUG 2024/06/06 12:33:17 grid currents: [1.64 1.29 1.93]A
[site ] DEBUG 2024/06/06 12:33:17 site power: -87W
[lp-1 ] DEBUG 2024/06/06 12:33:17 detected active phases: 3p
[lp-1 ] DEBUG 2024/06/06 12:33:17 !! session: chargeRater.chargedEnergy=17.8 - chargedAtStartup=0.0
[lp-1 ] DEBUG 2024/06/06 12:33:17 charge total import: 5033.682kWh
[lp-1 ] DEBUG 2024/06/06 12:33:17 charger status: C
[lp-1 ] DEBUG 2024/06/06 12:33:17 soc estimated: 44.23% (vehicle: 44.00%)
[lp-1 ] DEBUG 2024/06/06 12:33:17 vehicle soc: 44%
[lp-1 ] DEBUG 2024/06/06 12:33:17 vehicle range: 242km
[lp-1 ] DEBUG 2024/06/06 12:33:17 pv charge current: 7.77A = 7.64A + 0.126A (-87W @ 3p)
[lp-1 ] DEBUG 2024/06/06 12:33:17 max charge current: 7.77A
[site ] DEBUG 2024/06/06 12:33:36 ----
[lp-1 ] DEBUG 2024/06/06 12:33:36 charge power: 4901W
[lp-1 ] DEBUG 2024/06/06 12:33:36 charge currents: [6.93 6.9 6.9]A
[script] DEBUG 2024/06/06 12:33:36 /fupcService/pvCurrentPower.bat: 6066
[site ] DEBUG 2024/06/06 12:33:36 pv power: 6066W
[site ] DEBUG 2024/06/06 12:33:37 grid meter: 13W
[site ] DEBUG 2024/06/06 12:33:37 grid currents: [1.62 1.32 1.92]A
[site ] DEBUG 2024/06/06 12:33:37 site power: -87W
[lp-1 ] DEBUG 2024/06/06 12:33:37 detected active phases: 3p
[lp-1 ] DEBUG 2024/06/06 12:33:37 !! session: chargeRater.chargedEnergy=17.8 - chargedAtStartup=0.0
[lp-1 ] DEBUG 2024/06/06 12:33:37 charge total import: 5033.710kWh
[lp-1 ] DEBUG 2024/06/06 12:33:37 charger status: C
[lp-1 ] DEBUG 2024/06/06 12:33:37 soc estimated: 44.26% (vehicle: 44.00%)
[lp-1 ] DEBUG 2024/06/06 12:33:37 vehicle soc: 44%
[lp-1 ] DEBUG 2024/06/06 12:33:37 vehicle range: 242km
[lp-1 ] DEBUG 2024/06/06 12:33:37 pv charge current: 7.9A = 7.77A + 0.126A (-87W @ 3p)
[lp-1 ] DEBUG 2024/06/06 12:33:37 max charge current: 7.9A
[site ] DEBUG 2024/06/06 12:33:56 ----
[lp-1 ] DEBUG 2024/06/06 12:33:56 charge power: 5290W
[lp-1 ] DEBUG 2024/06/06 12:33:56 charge currents: [7.49 7.45 7.45]A
[script] DEBUG 2024/06/06 12:33:56 /fupcService/pvCurrentPower.bat: 6071
[site ] DEBUG 2024/06/06 12:33:56 pv power: 6071W
[site ] DEBUG 2024/06/06 12:33:57 grid meter: 423W
[site ] DEBUG 2024/06/06 12:33:57 grid currents: [1.27 1.18 2.35]A
[site ] DEBUG 2024/06/06 12:33:57 site power: 323W
[lp-1 ] DEBUG 2024/06/06 12:33:57 detected active phases: 3p
[lp-1 ] DEBUG 2024/06/06 12:33:57 !! session: chargeRater.chargedEnergy=17.8 - chargedAtStartup=0.0
[lp-1 ] DEBUG 2024/06/06 12:33:57 charge total import: 5033.739kWh
[lp-1 ] DEBUG 2024/06/06 12:33:57 charger status: C
[lp-1 ] DEBUG 2024/06/06 12:33:57 soc estimated: 44.29% (vehicle: 44.00%)
[lp-1 ] DEBUG 2024/06/06 12:33:57 vehicle soc: 44%
[lp-1 ] DEBUG 2024/06/06 12:33:57 vehicle range: 242km
[lp-1 ] DEBUG 2024/06/06 12:33:57 pv charge current: 7.43A = 7.9A + -0.469A (323W @ 3p)
[lp-1 ] DEBUG 2024/06/06 12:33:57 max charge current: 7.43A
[site ] DEBUG 2024/06/06 12:34:16 ----
[lp-1 ] DEBUG 2024/06/06 12:34:16 charge power: 4900W
[lp-1 ] DEBUG 2024/06/06 12:34:16 charge currents: [6.93 6.9 6.89]A
[script] DEBUG 2024/06/06 12:34:17 /fupcService/pvCurrentPower.bat: 6071
[site ] DEBUG 2024/06/06 12:34:17 pv power: 6071W
[site ] DEBUG 2024/06/06 12:34:17 grid meter: 31W
[site ] DEBUG 2024/06/06 12:34:17 grid currents: [1.58 1.25 1.9]A
[site ] DEBUG 2024/06/06 12:34:17 site power: -69W
[lp-1 ] DEBUG 2024/06/06 12:34:17 detected active phases: 3p
[lp-1 ] DEBUG 2024/06/06 12:34:17 !! session: chargeRater.chargedEnergy=17.9 - chargedAtStartup=0.0
[lp-1 ] DEBUG 2024/06/06 12:34:17 charge total import: 5033.767kWh
[lp-1 ] DEBUG 2024/06/06 12:34:17 charger status: C
[lp-1 ] DEBUG 2024/06/06 12:34:17 soc estimated: 44.31% (vehicle: 44.00%)
[lp-1 ] DEBUG 2024/06/06 12:34:17 vehicle soc: 44%
[lp-1 ] DEBUG 2024/06/06 12:34:17 vehicle range: 242km
[lp-1 ] DEBUG 2024/06/06 12:34:17 pv charge current: 7.53A = 7.43A + 0.101A (-69W @ 3p)
[lp-1 ] DEBUG 2024/06/06 12:34:17 max charge current: 7.53A
[site ] DEBUG 2024/06/06 12:34:36 ----
[lp-1 ] DEBUG 2024/06/06 12:34:36 charge power: 4901W
[lp-1 ] DEBUG 2024/06/06 12:34:36 charge currents: [6.95 6.91 6.91]A
[script] DEBUG 2024/06/06 12:34:36 /fupcService/pvCurrentPower.bat: 6044
[site ] DEBUG 2024/06/06 12:34:36 pv power: 6044W
[site ] DEBUG 2024/06/06 12:34:37 grid meter: 23W
[site ] DEBUG 2024/06/06 12:34:37 grid currents: [1.58 1.25 1.89]A
[site ] DEBUG 2024/06/06 12:34:37 site power: -77W
[lp-1 ] DEBUG 2024/06/06 12:34:37 detected active phases: 3p
[lp-1 ] DEBUG 2024/06/06 12:34:37 !! session: chargeRater.chargedEnergy=17.9 - chargedAtStartup=0.0
[lp-1 ] DEBUG 2024/06/06 12:34:37 charge total import: 5033.794kWh
[lp-1 ] DEBUG 2024/06/06 12:34:37 charger status: C
[lp-1 ] DEBUG 2024/06/06 12:34:37 soc estimated: 44.34% (vehicle: 44.00%)
[lp-1 ] DEBUG 2024/06/06 12:34:37 vehicle soc: 44%
[lp-1 ] DEBUG 2024/06/06 12:34:37 vehicle range: 242km
[lp-1 ] DEBUG 2024/06/06 12:34:37 pv charge current: 7.64A = 7.53A + 0.111A (-77W @ 3p)
[lp-1 ] DEBUG 2024/06/06 12:34:37 max charge current: 7.64A

What type of operating system are you running?

Windows

Version

0.126.6

StefanSchoof commented 3 months ago

Eine mögliche Ursache ist das dein Auto oder Wallbox sich nicht mA genau steuern lassen. Siehe https://docs.evcc.io/docs/reference/configuration/vehicles#features-coarsecurrent

premultiply commented 3 months ago

Und mal bitte das Minus weglassen. ;)

residualpower: 100