Re: Feedback Nightly 101.1
Verfasst: Do Jan 12, 2023 7:31 am
Ich hab' weiterhin unterschiedliche (?) Probleme mit dem Abschalten im PV Modus, ich hab' mal einen eigenen Thread hierfür aufgemacht. viewtopic.php?p=78715#p78715
Nein, das ist kein Problem.
Die Exception hat darauf keinen Einfluss. Versuche beim nächsten Mal, auf 3phasig umzuschalten, kurz warten, dann wieder auf 1phasig umschalten. Dann sollte die Umschaltung funktionieren. Das wird mit der Überarbeitung des isss-Daemon verbesssert.
Die EVSE reagiert ab und an nicht schnell genug. Was zu der Exception führt. Das sollte aber keine Auswirkung auf die Funktionalität haben.vuffiraa hat geschrieben: ↑Di Jan 10, 2023 6:52 pmIch muß mich noch mal melden, vielleicht gibt es bei mir doch ein größeres Problem. Ich bin heute auf die Idee gekommen, mal in die Logs der Wallbox zu schauen, also OpenWB 1.9 als "nur Ladepunkt". Da gibt es im Ladepunkt Log einen Fehler, der sich regelmäßig wiederholt.vuffiraa hat geschrieben: ↑Mo Jan 09, 2023 8:43 pm Kleiner Nachtrag zu meine vorherigen Beitrag. Das Problem scheint der MQTT-Payload eines chargepoint/template zu sein.Die Exception tritt beim Einlesen des Elements plans im autolock-Element auf. Ohne dieses Element tritt die Exception nicht auf.Code: Alles auswählen
{"autolock": {"active": false, "plans": {}, "wait_for_charging_end": false}, "id": 1, "max_current_multi_phases": 32, "max_current_single_phase": 32, "name": "Standard Ladepunkt-Vorlage", "rfid_enabling": false, "valid_tags": []}
Eigentlich dachte ich zuerst, hier werden die Zeitpläne konfiguriert. Diese werden aber als eigenes autolock-Subtopic im Broker abgelegt.
Warum hat die Klasse Autolock im cargepoint.py das Feld plans?
VGIch konnte in meinen Backups sehen, dass der Fehler schon vor dem ersten Ladevorgang von gestern im Log stand, aber auch nicht schon immer. Eventuell liegt das erste Auftreten mit dem Einstellen der Wallbox als Ladepunkt für die OpenWB 2.0 zusammen.Code: Alles auswählen
**** REBOOT **** 2023-01-10 18:23:34,041 - {root:30} - ERROR - Loglevel: 0 2023-01-10 18:25:03,902 - {root:297} - ERROR - Fehler bei Ladepunkt 1 Traceback (most recent call last): File "/var/www/html/openWB/packages/modules/common/modbus.py", line 85, in __read_registers raise FaultState.error(__name__+" "+str(response)) modules.common.fault_state.FaultState: ('modules.common.modbus Modbus Error: [Input/Output] read failed: device reports readiness to read but returned no data (device disconnected or multiple access on port?)', <FaultStateLevel.ERROR: 2>) The above exception was the direct cause of the following exception: Traceback (most recent call last): File "/var/www/html/openWB/packages/modules/chargepoints/internal_openwb/chargepoint_module.py", line 111, in get_values plug_state, charge_state, self.set_current_evse = self.__client.evse_client.get_plug_charge_state() File "/var/www/html/openWB/packages/modules/common/evse.py", line 35, in get_plug_charge_state 1000, [ModbusDataType.UINT_16]*3, unit=self.id) File "/var/www/html/openWB/packages/modules/common/modbus.py", line 119, in read_holding_registers self.delegate.read_holding_registers, address, types, byteorder, wordorder, **kwargs File "/var/www/html/openWB/packages/modules/common/modbus.py", line 101, in __read_registers str(e)) from e modules.common.fault_state.FaultState: ("modules.common.modbus <class 'modules.common.fault_state.FaultState'> ('modules.common.modbus Modbus Error: [Input/Output] read failed: device reports readiness to read but returned no data (device disconnected or multiple access on port?)', <FaultStateLevel.ERROR: 2>)", <FaultStateLevel.ERROR: 2>) The above exception was the direct cause of the following exception: Traceback (most recent call last): File "/var/www/html/openWB/runs/isss.py", line 292, in update state, _ = self.module.get_values(phase_switch_cp_active) File "/var/www/html/openWB/packages/modules/chargepoints/internal_openwb/chargepoint_module.py", line 159, in get_values raise FaultState.error(__name__ + " " + str(type(e)) + " " + str(e)) from e modules.common.fault_state.FaultState: ('modules.chargepoints.internal_openwb.chargepoint_module <class \'modules.common.fault_state.FaultState\'> ("modules.common.modbus <class \'modules.common.fault_state.FaultState\'> (\'modules.common.modbus Modbus Error: [Input/Output] read failed: device reports readiness to read but returned no data (device disconnected or multiple access on port?)\', <FaultStateLevel.ERROR: 2>)", <FaultStateLevel.ERROR: 2>)', <FaultStateLevel.ERROR: 2>)
Ist das noch ein Konfigurationsproblem oder schon ein Hardwarefehler?
Code: Alles auswählen
2023-01-12 22:15:22,897 - {control.algorithm.algorithm:26} - {DEBUG:MainThread} - # Algorithmus-Start
2023-01-12 22:15:22,898 - {control.general:158} - {ERROR:MainThread} - Fehler im General-Modul
Traceback (most recent call last):
File "/var/www/html/openWB/packages/control/general.py", line 156, in get_phases_chargemode
return getattr(self.data.chargemode_config, chargemode).phases_to_use
TypeError: getattr(): attribute name must be string
2023-01-12 22:15:22,911 - {control.algorithm.algorithm:32} - {DEBUG:MainThread} - **Mindestrom setzen**
2023-01-12 22:15:22,918 - {control.algorithm.min_current:18} - {DEBUG:MainThread} - Mode-Tuple (<Chargemode.SCHEDULED_CHARGING: 'scheduled_charging'>, <Chargemode.PV_CHARGING: 'pv_charging'>, True), Zähler 0
2023-01-12 22:15:22,922 - {control.algorithm.algorithm:34} - {DEBUG:MainThread} - **Sollstrom setzen**
2023-01-12 22:15:22,953 - {control.counter:159} - {DEBUG:MainThread} - Überschuss zur PV-geführten Ladung: 0W
2023-01-12 22:15:22,954 - {control.counter:407} - {DEBUG:MainThread} - Zähler 0: Begrenzung der verbleibenden Leistung auf 0W
2023-01-12 22:15:22,955 - {control.chargepoint:349} - {INFO:MainThread} - LP 5: Die Ladung kann nicht gestartet werden, da die Einschaltschwelle 900W nicht erreicht wird.
2023-01-12 22:15:22,955 - {control.algorithm.algorithm:45} - {DEBUG:MainThread} - **Keine Leistung für PV-geführtes Laden übrig.**
2023-01-12 22:15:22,956 - {control.process:22} - {DEBUG:MainThread} - # Ladung starten.
2023-01-12 22:15:22,960 - {control.process:106} - {INFO:MainThread} - LP5: set current 0 A
2023-01-12 22:15:22,964 - {soc.modules.common.component_context:24} - {DEBUG:cp5} - Update Komponente ['Ladepunkt']
2023-01-12 22:15:22,972 - {soc.modules.common.component_context:24} - {DEBUG:cp11} - Update Komponente ['Ladepunkt']
2023-01-12 22:15:22,977 - {urllib3.connectionpool:227} - {DEBUG:cp5} - Starting new HTTP connection (1): 192.168.110.145:80
2023-01-12 22:15:22,999 - {urllib3.connectionpool:227} - {DEBUG:cp11} - Starting new HTTP connection (1): 192.168.110.82:80
2023-01-12 22:15:23,021 - {urllib3.connectionpool:452} - {DEBUG:cp5} - http://192.168.110.145:80 "GET /setCurrent?current=0 HTTP/1.1" 200 29
2023-01-12 22:15:23,025 - {soc.modules.common.req:11} - {DEBUG:cp5} - Get-Response: S0_set current to given value
2023-01-12 22:15:23,038 - {urllib3.connectionpool:452} - {DEBUG:cp11} - http://192.168.110.82:80 "GET /setCurrent?current=0 HTTP/1.1" 200 29
2023-01-12 22:15:23,044 - {soc.modules.common.req:11} - {DEBUG:cp11} - Get-Response: S0_set current to given value
2023-01-12 22:15:23,048 - {control.counter:141} - {DEBUG:MainThread} - 0W reservierte EVU-Leistung, 0W freigegebene EVU-Leistung
2023-01-12 22:15:23,401 - {schedule:660} - {DEBUG:MainThread} - Running job Job(interval=1, unit=minutes, do=update, args=(), kwargs={})
2023-01-12 22:15:30,605 - {schedule:660} - {DEBUG:MainThread} - Running job Job(interval=1, unit=minutes, do=handler10Sec, args=(), kwargs={})
2023-01-12 22:15:30,606 - {root:61} - {INFO:MainThread} - # ***Start***
2023-01-12 22:15:30,672 - {modules.devices.carlo_gavazzi.device:47} - {DEBUG:device0} - Start device reading {'component0': <modules.devices.carlo_gavazzi.counter.CarloGavazziCounter object at 0x7260c478>}
2023-01-12 22:15:30,672 - {soc.modules.common.component_context:51} - {DEBUG:device4} - Update Komponenten ['PV1_Süd_Json-WR']
2023-01-12 22:15:30,673 - {soc.modules.common.component_context:24} - {DEBUG:device0} - Update Komponente ['Carlo Gavazzi EVU-Punkt']
2023-01-12 22:15:30,673 - {soc.modules.common.component_context:51} - {DEBUG:device5} - Update Komponenten ['PV2_Dach_MQTT']
2023-01-12 22:15:30,680 - {urllib3.connectionpool:227} - {DEBUG:device4} - Starting new HTTP connection (1): 192.168.110.151:80
2023-01-12 22:15:30,681 - {soc.modules.common.component_context:24} - {DEBUG:cp5} - Update Komponente ['Ladepunkt']
2023-01-12 22:15:30,681 - {soc.modules.common.component_context:24} - {DEBUG:cp11} - Update Komponente ['Ladepunkt']
2023-01-12 22:15:30,682 - {modules.devices.mqtt.device:47} - {DEBUG:device5} - MQTT-Module müssen nicht ausgelesen werden.
2023-01-12 22:15:30,691 - {urllib3.connectionpool:227} - {DEBUG:cp5} - Starting new HTTP connection (1): 192.168.110.145:80
2023-01-12 22:15:30,697 - {urllib3.connectionpool:227} - {DEBUG:cp11} - Starting new HTTP connection (1): 192.168.110.82:80
2023-01-12 22:15:30,716 - {urllib3.connectionpool:452} - {DEBUG:cp11} - http://192.168.110.82:80 "GET /getParameters HTTP/1.1" 200 386
2023-01-12 22:15:30,718 - {soc.modules.common.req:11} - {DEBUG:cp11} - Get-Response: {"type":"parameters","list":[{"vehicleState":1,"evseState":false,"maxCurrent":32,"actualCurrent":0,"actualCurrentMA":0,"actualPower":0,"duration":0,"alwaysActive":true,"lastActionUser":"","lastActionUID":"","energy":0,"mileage":0,"meterReading":3896.29,"currentP1":0,"currentP2":0,"currentP3":0,"voltageP1":235.492,"voltageP2":235.77,"voltageP3":234.7839,"useMeter":true,"RFIDUID":""}]}
2023-01-12 22:15:30,719 - {soc.modules.common.store._api:26} - {DEBUG:cp11} - Raw data ChargepointState(voltages=[235.492, 235.77, 234.7839], currents=[0, 0, 0], power_factors=[0.0, 0.0, 0.0], imported=3896290.0, exported=0, power=0, phases_in_use=1, charge_state=False, plug_state=False, rfid=None)
2023-01-12 22:15:30,735 - {urllib3.connectionpool:452} - {DEBUG:cp5} - http://192.168.110.145:80 "GET /getParameters HTTP/1.1" 200 400
2023-01-12 22:15:30,738 - {soc.modules.common.req:11} - {DEBUG:cp5} - Get-Response: {"type":"parameters","list":[{"vehicleState":2,"evseState":false,"maxCurrent":20,"actualCurrent":0,"actualCurrentMA":0,"actualPower":0,"duration":933000,"alwaysActive":true,"lastActionUser":"API","lastActionUID":"API","energy":1,"mileage":5,"meterReading":2774.31,"currentP1":0,"currentP2":0,"currentP3":0,"voltageP1":234.9747,"voltageP2":235.6424,"voltageP3":234.3217,"useMeter":true,"RFIDUID":""}]}
2023-01-12 22:15:30,740 - {soc.modules.common.store._api:26} - {DEBUG:cp5} - Raw data ChargepointState(voltages=[234.9747, 235.6424, 234.3217], currents=[0, 0, 0], power_factors=[0.0, 0.0, 0.0], imported=2774310.0, exported=0, power=0, phases_in_use=1, charge_state=False, plug_state=True, rfid=None)
2023-01-12 22:15:30,804 - {modules.common.simcount._simcount:38} - {DEBUG:device0} - Previous state: SimCounterState(timestamp=1673558120.90692, power=526.3, imported=2182874.410525175, exported=1686828.9433132384)
2023-01-12 22:15:30,804 - {modules.common.simcount._calculate:13} - {DEBUG:device0} - time passed: 0.00274917, power1: 526.3, power2: 469.1
2023-01-12 22:15:30,805 - {modules.common.simcount._calculate:29} - {DEBUG:device0} - power did not change sign. Total energy: 1.36826
2023-01-12 22:15:30,805 - {modules.common.simcount._simcount:47} - {DEBUG:device0} - imported: 1.36826 Wh, exported: 0 Wh, new state: SimCounterState(timestamp=1673558130.8039267, power=469.1, imported=2182875.778786358, exported=1686828.9433132384)
2023-01-12 22:15:30,807 - {soc.modules.common.store._api:26} - {DEBUG:device0} - Raw data CounterState(voltages=[235.2, 235.5, 234.6], powers=[285.7, 63.5, 119.9], currents=[1.485, 0.457, 1.561], power_factors=[0.0, 0.0, 0.0], imported=2182875.778786358, exported=1686828.9433132384, power=469.1, frequency=50.0)
2023-01-12 22:15:30,860 - {urllib3.connectionpool:452} - {DEBUG:device4} - http://192.168.110.151:80 "GET /cm?cmnd=status%208 HTTP/1.1" 200 None
2023-01-12 22:15:30,865 - {soc.modules.common.req:11} - {DEBUG:device4} - Get-Response: {"StatusSNS":{"Time":"2023-01-12T22:15:31","ENERGY":{"TotalStartTime":"2021-08-15T19:55:58","Total":816.434,"Yesterday":0.121,"Today":0.060,"Power":0,"ApparentPower":0,"ReactivePower":0,"Factor":0.00,"Voltage":236,"Current":0.000}}}
2023-01-12 22:15:32,392 - {soc.modules.common.store._api:26} - {DEBUG:device4} - Raw data InverterState(currents=[0.0, 0.0, 0.0], power=-0.0, exported=816434.0, dc_power=None)
2023-01-12 22:15:32,399 - {soc.modules.common.component_context:24} - {DEBUG:cp5} - Update Komponente ['Ladepunkt']
2023-01-12 22:15:32,402 - {soc.modules.common.store._api:30} - {DEBUG:cp5} - Saving ChargepointState(voltages=[234.9747, 235.6424, 234.3217], currents=[0, 0, 0], power_factors=[0.0, 0.0, 0.0], imported=2774310.0, exported=0, power=0, phases_in_use=1, charge_state=False, plug_state=True, rfid=None)
2023-01-12 22:15:32,404 - {soc.modules.common.component_context:24} - {DEBUG:cp11} - Update Komponente ['Ladepunkt']
2023-01-12 22:15:32,407 - {soc.modules.common.store._api:30} - {DEBUG:cp11} - Saving ChargepointState(voltages=[235.492, 235.77, 234.7839], currents=[0, 0, 0], power_factors=[0.0, 0.0, 0.0], imported=3896290.0, exported=0, power=0, phases_in_use=1, charge_state=False, plug_state=False, rfid=None)
2023-01-12 22:15:32,415 - {soc.modules.common.component_context:24} - {DEBUG:component10} - Update Komponente ['PV1_Süd_Json-WR']
2023-01-12 22:15:32,418 - {soc.modules.common.store._api:26} - {DEBUG:component10} - Raw data InverterState(currents=[0.0, 0.0, 0.0], power=-0.0, exported=816434.0, dc_power=None)
2023-01-12 22:15:32,419 - {soc.modules.common.store._api:30} - {DEBUG:component10} - Saving InverterState(currents=[0.0, 0.0, 0.0], power=-0.0, exported=816434.0, dc_power=None)
2023-01-12 22:15:32,421 - {soc.modules.common.component_context:24} - {DEBUG:component12} - Update Komponente ['PV2_Dach_MQTT']
2023-01-12 22:15:32,589 - {soc.modules.common.component_context:24} - {DEBUG:component0} - Update Komponente ['Carlo Gavazzi EVU-Punkt']
2023-01-12 22:15:32,590 - {soc.modules.common.store._api:30} - {DEBUG:component0} - Saving CounterState(voltages=[235.2, 235.5, 234.6], powers=[285.7, 63.5, 119.9], currents=[1.485, 0.457, 1.561], power_factors=[0.0, 0.0, 0.0], imported=2182875.778786358, exported=1686828.9433132384, power=469.1, frequency=50.0)
2023-01-12 22:15:32,791 - {control.counter:87} - {DEBUG:MainThread} - Verbleibende Ströme an Zähler 0: [32.51, 33.54, 32.44]
2023-01-12 22:15:32,792 - {control.counter:116} - {DEBUG:MainThread} - Verbleibende Leistung an Zähler 0: 24530.9
2023-01-12 22:15:32,803 - {control.chargepoint:696} - {DEBUG:MainThread} - EV-Phasenzahl beschränkt die nutzbaren Phasen auf 1
2023-01-12 22:15:32,804 - {control.chargepoint:687} - {DEBUG:MainThread} - Phasenzahl Lademodus: 1
2023-01-12 22:15:32,805 - {control.ev:741} - {DEBUG:MainThread} - Plan-Nr. 1: Differenz zum Start -932.804773s, Dauer 0.0h, Termin heute verpasst: False
2023-01-12 22:15:32,805 - {control.ev:787} - {DEBUG:MainThread} - Verwendeter Plan: Zielladen
2023-01-12 22:15:32,810 - {control.ev:364} - {DEBUG:MainThread} - Änderung des Lademodus :False
2023-01-12 22:15:32,811 - {control.chargepoint:856} - {DEBUG:MainThread} - LP 5, EV: i3_60Ah_Nr.1 (EV-Nr.1): Theoretisch benötigter Strom 6A, Lademodus scheduled_charging, Submodus: Chargemode.PV_CHARGING, Phasen: 1, Priorität: True, max. Ist-Strom: 0
2023-01-12 22:15:32,814 - {control.chargepoint:349} - {INFO:MainThread} - LP 5: Falls vorhanden wird mit EVU-Überschuss geladen, da der Ziel-Soc bereits erreicht wurde.
2023-01-12 22:15:32,818 - {control.chargepoint:349} - {INFO:MainThread} - LP 11: Keine Ladung, da kein Auto angesteckt ist.
2023-01-12 22:15:32,827 - {control.data:297} - {DEBUG:MainThread} - all
{'get': {'power': 0}, 'config': {'configured': False}, 'set': {'charging_power_left': 0, 'switch_on_soc_reached': False}}
2023-01-12 22:15:32,830 - {control.data:270} - {DEBUG:MainThread} - cp_all_data
AllChargepointData(get=AllGet(daily_imported=9630.0, daily_exported=0, power=0, imported=6670600.0, exported=0))
2023-01-12 22:15:32,831 - {control.data:297} - {DEBUG:MainThread} - cp5
ChargepointData(get=Get(charge_state=False, connected_vehicle=ConnectedVehicle(config=ConnectedConfig(average_consumption=17, charge_template=0, chargemode='stop', current_plan=0, ev_template=0, priority=False), info=ConnectedInfo(id=0, name='Ladepunkt'), soc=70), currents=[0, 0, 0], daily_imported=9630.0, daily_exported=0, exported=0, fault_str='Kein Fehler.', fault_state=0, imported=2774310.0, phases_in_use=1, plug_state=True, power=0, rfid_timestamp=None, rfid=None, state_str='Falls vorhanden wird mit EVU-Überschuss geladen, da der Ziel-Soc bereits erreicht wurde.', voltages=[234.97, 235.64, 234.32]), set=Set(change_ev_permitted=[True, ''], charging_ev=1, charging_ev_prev=1, current=0, energy_to_charge=0, loadmanagement_available=True, log=Log(chargemode_log_entry='scheduled_charging', imported_at_mode_switch=2773300.0, imported_at_plugtime=2773300.0, imported_since_mode_switch=1000.0, imported_since_plugged=1010.0, range_charged=5.0, time_charged='0:15', timestamp_start_charging='01/12/2023, 21:47:02'), manual_lock=False, phases_to_use=1, plug_state_prev=True, plug_time='01/12/2023, 21:08:02', required_power=1380.0, rfid=None, target_current=0, charging_ev_data=<control.ev.Ev object at 0x71d85ec8>), config=Config(connection_module={'type': 'smartwb', 'name': 'smartWB / EVSE-Wifi (>= v1.x.x/v2.x.x)', 'configuration': {'ip_address': '192.168.110.145', 'timeout': 2}}, power_module={}, ev=1, name='smartWB WLAN 20A', type='smartwb', template=0, connected_phases=3, phase_1=1, auto_phase_switch_hw=False, control_pilot_interruption_hw=True, id=5))
2023-01-12 22:15:32,832 - {control.data:297} - {DEBUG:MainThread} - cp11
ChargepointData(get=Get(charge_state=False, connected_vehicle=ConnectedVehicle(config=ConnectedConfig(average_consumption=17, charge_template=0, chargemode='stop', current_plan=0, ev_template=0, priority=False), info=ConnectedInfo(id=0, name='Ladepunkt'), soc=72), currents=[0, 0, 0], daily_imported=0.0, daily_exported=0, exported=0, fault_str='Kein Fehler.', fault_state=0, imported=3896290.0, phases_in_use=1, plug_state=False, power=0, rfid_timestamp=None, rfid=None, state_str='Keine Ladung, da kein Auto angesteckt ist.', voltages=[235.49, 235.77, 234.78]), set=Set(change_ev_permitted=[True, ''], charging_ev=-1, charging_ev_prev=-1, current=0, energy_to_charge=0, loadmanagement_available=True, log=Log(chargemode_log_entry='_', imported_at_mode_switch=0, imported_at_plugtime=0, imported_since_mode_switch=0, imported_since_plugged=0, range_charged=0, time_charged='00:00', timestamp_start_charging=None), manual_lock=False, phases_to_use=1, plug_state_prev=False, plug_time=None, required_power=0, rfid=None, target_current=0, charging_ev_data=<control.ev.Ev object at 0x71d2bca0>), config=Config(connection_module={'type': 'smartwb', 'name': 'smartWB / EVSE-Wifi (>= v1.x.x/v2.x.x)', 'configuration': {'ip_address': '192.168.110.82', 'timeout': 2}}, power_module={}, ev=2, name='smartWB LAN 32A', type='smartwb', template=0, connected_phases=3, phase_1=1, auto_phase_switch_hw=False, control_pilot_interruption_hw=True, id=11))
2023-01-12 22:15:32,833 - {control.data:297} - {DEBUG:MainThread} - cpt0
CpTemplateData(autolock=Autolock(active=False, plans={'0': AutolockPlan(active=False, frequency=Frequency(selected='daily', once=['2021-11-01', '2021-11-05'], weekly=[False, False, False, False, False, False, False]), time=['07:00', '16:00'], name='Standard Autolock-Plan')}, wait_for_charging_end=False), id=0, max_current_multi_phases=32, max_current_single_phase=32, name='Standard Ladepunkt-Vorlage', rfid_enabling=False, valid_tags=[])
2023-01-12 22:15:32,838 - {control.data:297} - {DEBUG:MainThread} - counter0
{'set': {'reserved_surplus': 0, 'released_surplus': 0, 'raw_power_left': 24530.9, 'surplus_power_left': 0, 'consumption_left': 24017.8, 'raw_currents_left': [32.51, 33.54, 32.44]}, 'get': {'daily_exported': 0.0, 'daily_imported': 24888.7958314733, 'voltages': [235.2, 235.5, 234.6], 'currents': [1.49, 0.46, 1.56], 'powers': [285.7, 63.5, 119.9], 'power_factors': [0.0, 0.0, 0.0], 'imported': 2182875.778786358, 'exported': 1686828.9433132384, 'power': 469.1, 'frequency': 50.0, 'fault_str': 'Kein Fehler.', 'fault_state': 0}, 'config': {'max_currents': [35, 35, 35], 'max_total_power': 25000}}
2023-01-12 22:15:32,839 - {control.data:274} - {DEBUG:MainThread} - counter_all_data
CounterAllData(get=Get(hierarchy=[{'id': 0, 'type': 'counter', 'children': [{'id': 5, 'type': 'cp', 'children': []}, {'id': 11, 'type': 'cp', 'children': []}, {'id': 10, 'type': 'inverter', 'children': []}, {'id': 12, 'type': 'inverter', 'children': []}]}]), set=Set(loadmanagement_active=False, home_consumption=469.1, invalid_home_consumption=0, daily_yield_home_consumption=15552.7958314733))
2023-01-12 22:15:32,840 - {control.data:297} - {DEBUG:MainThread} - ct0
ChargeTemplateData(name='Standard-Ladeprofil-Vorlage', disable_after_unplug=False, prio=True, load_default=False, time_charging=TimeCharging(active=False, plans={'5': TimeChargingPlan(active=False, frequency=Frequency(selected='daily', once=['2021-11-01', '2021-11-05'], weekly=[False, False, False, False, False, False, False]), time=['06:45', '07:15'], name='Zeitladen-Standard', current=10, limit=Limit(selected='soc', amount=1000, soc=70))}), chargemode=Chargemode(selected='instant_charging', pv_charging=PvCharging(min_soc_current=12, min_current=0, feed_in_limit=False, min_soc=0, max_soc=90), scheduled_charging=ScheduledCharging(plans={'3': ScheduledChargingPlan(active=False, frequency=Frequency(selected='daily', once=['2021-11-01', '2021-11-05'], weekly=[False, False, False, False, False, False, False]), current=14, name='Zielladen-Standard', limit=ScheduledLimit(selected='soc', amount=10000, soc_limit=90, soc_scheduled=80), time='06:30')}), instant_charging=InstantCharging(current=14, limit=Limit(selected='soc', amount=7000, soc=85))))
2023-01-12 22:15:32,841 - {control.data:297} - {DEBUG:MainThread} - ct1
ChargeTemplateData(name='Ladeprofil 01', disable_after_unplug=False, prio=True, load_default=False, time_charging=TimeCharging(active=True, plans={'4': TimeChargingPlan(active=True, frequency=Frequency(selected='daily', once=['2022-11-20', '2022-11-20'], weekly=[False, False, False, False, False, False, False]), time=['22:15', '22:25'], name='Morgensladen', current=12, limit=Limit(selected='none', amount=1000, soc=90))}), chargemode=Chargemode(selected='scheduled_charging', pv_charging=PvCharging(min_soc_current=12, min_current=14, feed_in_limit=False, min_soc=20, max_soc=100), scheduled_charging=ScheduledCharging(plans={'1': ScheduledChargingPlan(active=True, frequency=Frequency(selected='daily', once=['2021-11-01', '2021-11-05'], weekly=[False, False, False, False, False, False, False]), current=14, name='Zielladen', limit=ScheduledLimit(selected='soc', amount=4000, soc_limit=95, soc_scheduled=70), time='22:00')}), instant_charging=InstantCharging(current=18, limit=Limit(selected='none', amount=6000, soc=90))))
2023-01-12 22:15:32,842 - {control.data:297} - {DEBUG:MainThread} - ev0
EvData(set=Set(ev_template=EvTemplate(data=EvTemplateData(name='Standard-Fahrzeug-Vorlage', max_current_multi_phases=16, max_phases=3, phase_switch_pause=2, prevent_phase_switch=False, prevent_charge_stop=False, control_pilot_interruption=False, control_pilot_interruption_duration=4, average_consump=17, min_current=6, max_current_single_phase=32, battery_capacity=82, nominal_difference=2), et_num=0)), control_parameter=ControlParameter(required_current=0, required_currents=[0.0, 0.0, 0.0], phases=1, prio=True, timestamp_switch_on_off=None, timestamp_auto_phase_switch=None, timestamp_perform_phase_switch=None, submode='stop', chargemode='stop', used_amount_instant_charging=0, imported_at_plan_start=0, current_plan=None), charge_template=0, ev_template=0, name='Standard-Fahrzeug', tag_id=[], get=Get(soc=0, soc_timestamp='', force_soc_update=False, range=0, fault_state=0, fault_str=''))
2023-01-12 22:15:32,855 - {control.data:297} - {DEBUG:MainThread} - ev1
EvData(set=Set(ev_template=EvTemplate(data=EvTemplateData(name='i3_1p', max_current_multi_phases=16, max_phases=1, phase_switch_pause=2, prevent_phase_switch=False, prevent_charge_stop=False, control_pilot_interruption=False, control_pilot_interruption_duration=4, average_consump=20, min_current=6, max_current_single_phase=32, battery_capacity=16, nominal_difference=2), et_num=0)), control_parameter=ControlParameter(required_current=6, required_currents=[6, 0.0, 0.0], phases=1, prio=True, timestamp_switch_on_off=None, timestamp_auto_phase_switch=None, timestamp_perform_phase_switch=None, submode=<Chargemode.PV_CHARGING: 'pv_charging'>, chargemode=<Chargemode.SCHEDULED_CHARGING: 'scheduled_charging'>, used_amount_instant_charging=0, imported_at_plan_start=0, current_plan='Zielladen'), charge_template=1, ev_template=1, name='i3_60Ah_Nr.1', tag_id=[], get=Get(soc=70, soc_timestamp='01/12/2023, 22:01:53', force_soc_update=False, range=71.0, fault_state=0, fault_str='Kein Fehler.'))
2023-01-12 22:15:32,860 - {control.data:297} - {DEBUG:MainThread} - ev2
EvData(set=Set(ev_template=EvTemplate(data=EvTemplateData(name='i3_1p', max_current_multi_phases=16, max_phases=1, phase_switch_pause=2, prevent_phase_switch=False, prevent_charge_stop=False, control_pilot_interruption=False, control_pilot_interruption_duration=4, average_consump=20, min_current=6, max_current_single_phase=32, battery_capacity=16, nominal_difference=2), et_num=0)), control_parameter=ControlParameter(required_current=0, required_currents=[0.0, 0.0, 0.0], phases=1, prio=True, timestamp_switch_on_off=None, timestamp_auto_phase_switch=None, timestamp_perform_phase_switch=None, submode='stop', chargemode='stop', used_amount_instant_charging=0, imported_at_plan_start=0, current_plan=None), charge_template=0, ev_template=1, name='i3_60Ah_Nr.2', tag_id=[], get=Get(soc=72, soc_timestamp='01/12/2023, 22:08:13', force_soc_update=False, range=71.0, fault_state=0, fault_str='Kein Fehler.'))
2023-01-12 22:15:32,861 - {control.data:297} - {DEBUG:MainThread} - ev3
EvData(set=Set(ev_template=EvTemplate(data=EvTemplateData(name='i3_3p', max_current_multi_phases=16, max_phases=3, phase_switch_pause=2, prevent_phase_switch=False, prevent_charge_stop=False, control_pilot_interruption=False, control_pilot_interruption_duration=4, average_consump=18, min_current=6, max_current_single_phase=32, battery_capacity=40, nominal_difference=2), et_num=0)), control_parameter=ControlParameter(required_current=0, required_currents=[0.0, 0.0, 0.0], phases=1, prio=True, timestamp_switch_on_off=None, timestamp_auto_phase_switch=None, timestamp_perform_phase_switch=None, submode='stop', chargemode='stop', used_amount_instant_charging=0, imported_at_plan_start=0, current_plan=None), charge_template=0, ev_template=2, name='i3_120Ah', tag_id=[], get=Get(soc=0, soc_timestamp='', force_soc_update=False, range=0, fault_state=0, fault_str=''))
2023-01-12 22:15:32,862 - {control.data:297} - {DEBUG:MainThread} - et0
EvTemplateData(name='Standard-Fahrzeug-Vorlage', max_current_multi_phases=16, max_phases=3, phase_switch_pause=2, prevent_phase_switch=False, prevent_charge_stop=False, control_pilot_interruption=False, control_pilot_interruption_duration=4, average_consump=17, min_current=6, max_current_single_phase=32, battery_capacity=82, nominal_difference=2)
2023-01-12 22:15:32,862 - {control.data:297} - {DEBUG:MainThread} - et1
EvTemplateData(name='i3_1p', max_current_multi_phases=16, max_phases=1, phase_switch_pause=2, prevent_phase_switch=False, prevent_charge_stop=False, control_pilot_interruption=False, control_pilot_interruption_duration=4, average_consump=20, min_current=6, max_current_single_phase=32, battery_capacity=16, nominal_difference=2)
2023-01-12 22:15:32,863 - {control.data:297} - {DEBUG:MainThread} - et2
EvTemplateData(name='i3_3p', max_current_multi_phases=16, max_phases=3, phase_switch_pause=2, prevent_phase_switch=False, prevent_charge_stop=False, control_pilot_interruption=False, control_pilot_interruption_duration=4, average_consump=18, min_current=6, max_current_single_phase=32, battery_capacity=40, nominal_difference=2)
2023-01-12 22:15:32,864 - {control.data:278} - {DEBUG:MainThread} - general_data
GeneralData(chargemode_config=ChargemodeConfig(instant_charging=InstantCharging(phases_to_use=3), pv_charging=PvCharging(bat_prio=False, charging_power_reserve=200, control_range=[0, 230], feed_in_yield=0, phase_switch_delay=7, phases_to_use=3, rundown_power=1000, rundown_soc=50, switch_off_delay=20, switch_off_soc=40, switch_off_threshold=1000, switch_on_delay=5, switch_on_soc=60, switch_on_threshold=900), scheduled_charging=ScheduledCharging(phases_to_use=0), standby=Standby(phases_to_use=3), stop=Stop(phases_to_use=1), time_charging=TimeCharging(phases_to_use=3), unbalanced_load_limit=20, unbalanced_load=False), control_interval=10, extern_display_mode='local', extern=False, external_buttons_hw=False, grid_protection_active=False, grid_protection_configured=False, grid_protection_random_stop=0, grid_protection_timestamp='', mqtt_bridge=False, price_kwh=0.3, range_unit='km', ripple_control_receiver=RippleControlReceiver(configured=False, r1_active=False, r2_active=False))
2023-01-12 22:15:32,865 - {control.data:297} - {DEBUG:MainThread} - graph
{'config': {'duration': 120}}
2023-01-12 22:15:32,865 - {control.data:280} - {DEBUG:MainThread} - optional_data
OptionalData(et=Et(active=False, config=EtConfig(max_price=0, provider={}), get=EtGet(price=0, price_list=[])), int_display=InternalDisplay(active=False, on_if_plugged_in=True, pin_active=False, pin_code='0000', standby=60, theme='cards'), led=Led(active=False), rfid=Rfid(active=False))
2023-01-12 22:15:32,866 - {control.data:297} - {DEBUG:MainThread} - all
{'get': {'power': 0.0, 'exported': 1357476.0, 'daily_exported': 294.0, 'monthly_exported': 0, 'yearly_exported': 0}, 'config': {'configured': True}}
2023-01-12 22:15:32,866 - {control.data:297} - {DEBUG:MainThread} - pv10
{'get': {'daily_exported': 60.0, 'monthly_exported': 0, 'yearly_exported': 0, 'fault_str': 'Kein Fehler.', 'fault_state': 0, 'power': -0.0, 'currents': [0.0, 0.0, 0.0], 'exported': 816434.0}, 'config': {'max_ac_out': 5000}}
2023-01-12 22:15:32,867 - {control.data:297} - {DEBUG:MainThread} - pv12
{'get': {'daily_exported': 234, 'monthly_exported': 0, 'yearly_exported': 0, 'fault_str': 'Kein Fehler.', 'fault_state': 0, 'power': 0, 'exported': 541042}, 'config': {'max_ac_out': 5000}}
2023-01-12 22:15:32,868 - {control.data:297} - {DEBUG:MainThread} - system
{'update_in_progress': False, 'perform_update': False, 'boot_done': True, 'ip_address': '192.168.110.51', 'dataprotection_acknowledged': False, 'debug_level': 10, 'release_train': 'master', 'version': '1.99.101.1', 'lastlivevaluesJson': {'timestamp': 1673558123, 'time': '22:15:23', 'grid': 0.526, 'house-power': 0.526, 'charging-all': 0.0, 'pv-all': -0.0, 'cp5-power': 0.0, 'cp11-power': 0.0, 'ev1-soc': 70, 'ev2-soc': 72}, 'current_commit': '2023-01-12 16:40:37 +0100 [2bc7920f]', 'current_missing_commits': [], 'current_branch': 'master', 'current_branch_commit': '2023-01-12 16:40:37 +0100 [2bc7920f]', 'datastore_version': 6, 'module_update_completed': True}
2023-01-12 22:15:32,868 - {control.data:310} - {DEBUG:MainThread} - device0
{'name': 'Carlo Gavazzi EVU', 'type': 'carlo_gavazzi', 'id': 0, 'configuration': {'ip_address': '192.168.110.11'}}
2023-01-12 22:15:32,870 - {control.data:312} - {DEBUG:MainThread} - component0
{'name': 'Carlo Gavazzi EVU-Punkt', 'type': 'counter', 'id': 0, 'configuration': {}}
2023-01-12 22:15:32,871 - {control.data:310} - {DEBUG:MainThread} - device4
{'name': 'PV1_Süd', 'type': 'json', 'id': 4, 'configuration': {'url': 'http://192.168.110.151/cm?cmnd=status%208'}}
2023-01-12 22:15:32,872 - {control.data:312} - {DEBUG:MainThread} - component10
{'name': 'PV1_Süd_Json-WR', 'type': 'inverter', 'id': 10, 'configuration': {'jq_power': '.StatusSNS.ENERGY.Power', 'jq_exported': '(.StatusSNS.ENERGY.Total)*1000'}}
2023-01-12 22:15:32,872 - {control.data:310} - {DEBUG:MainThread} - device5
{'name': 'PV2_Dach', 'type': 'mqtt', 'id': 5, 'configuration': {}}
2023-01-12 22:15:32,873 - {control.data:312} - {DEBUG:MainThread} - component12
{'name': 'PV2_Dach_MQTT', 'type': 'inverter', 'id': 12, 'configuration': {}}
2023-01-12 22:15:32,873 - {control.data:284} - {DEBUG:MainThread} -
Code: Alles auswählen
2023-01-13 08:17:00,436 - {control.algorithm.algorithm:26} - {DEBUG:MainThread} - # Algorithmus-Start
2023-01-13 08:17:00,437 - {control.algorithm.algorithm:32} - {DEBUG:MainThread} - **Mindestrom setzen**
2023-01-13 08:17:00,438 - {control.algorithm.min_current:18} - {DEBUG:MainThread} - Mode-Tuple (<Chargemode.INSTANT_CHARGING: 'instant_charging'>, <Chargemode.INSTANT_CHARGING: 'instant_charging'>, False), Zähler 9
2023-01-13 08:17:00,441 - {control.algorithm.algorithm:34} - {DEBUG:MainThread} - **Sollstrom setzen**
2023-01-13 08:17:00,444 - {control.algorithm.filter_chargepoints:118} - {DEBUG:MainThread} - Geordnete Ladepunkte [13]
2023-01-13 08:17:00,445 - {control.algorithm.filter_chargepoints:47} - {DEBUG:MainThread} - LP 13: Keine Zuteilung des Mindeststroms, daher keine weitere Berücksichtigung
2023-01-13 08:17:00,446 - {control.counter:159} - {DEBUG:MainThread} - Überschuss zur PV-geführten Ladung: 0W
2023-01-13 08:17:00,446 - {control.counter:407} - {DEBUG:MainThread} - Zähler 9: Begrenzung der verbleibenden Leistung auf 0W
2023-01-13 08:17:00,446 - {control.algorithm.algorithm:45} - {DEBUG:MainThread} - **Keine Leistung für PV-geführtes Laden übrig.**
2023-01-13 08:17:00,447 - {control.process:22} - {DEBUG:MainThread} - # Ladung starten.
2023-01-13 08:17:00,451 - {control.process:106} - {INFO:MainThread} - LP13: set current 0 A
2023-01-13 08:17:00,456 - {soc.modules.common.component_context:24} - {DEBUG:cp3} - Update Komponente ['Ladepunkt']
2023-01-13 08:17:00,460 - {soc.modules.common.component_context:24} - {DEBUG:cp13} - Update Komponente ['Ladepunkt']
2023-01-13 08:17:00,471 - {control.counter:141} - {DEBUG:MainThread} - 0W reservierte EVU-Leistung, 0W freigegebene EVU-Leistung
2023-01-13 08:17:00,689 - {schedule:660} - {DEBUG:MainThread} - Running job Job(interval=1, unit=minutes, do=update, args=(), kwargs={})
2023-01-13 08:17:10,787 - {schedule:660} - {DEBUG:MainThread} - Running job Job(interval=1, unit=minutes, do=handler10Sec, args=(), kwargs={})
2023-01-13 08:17:10,788 - {root:61} - {INFO:MainThread} - # ***Start***
2023-01-13 08:17:10,845 - {soc.modules.common.component_context:51} - {DEBUG:device4} - Update Komponenten ['Kostal Plenticore Zähler', 'Kostal Plenticore Wechselrichter']
2023-01-13 08:17:10,847 - {soc.modules.common.component_context:51} - {DEBUG:device5} - Update Komponenten ['Kostal Piko IQ']
2023-01-13 08:17:10,848 - {soc.modules.common.component_context:24} - {DEBUG:cp3} - Update Komponente ['Ladepunkt']
2023-01-13 08:17:10,851 - {soc.modules.common.component_context:24} - {DEBUG:cp13} - Update Komponente ['Ladepunkt']
2023-01-13 08:17:10,865 - {soc.modules.common.store._api:26} - {DEBUG:device5} - Raw data InverterState(currents=[0.0, 0.0, 0.0], power=0, exported=39664420.0, dc_power=None)
2023-01-13 08:17:10,933 - {modules.common.simcount._simcount:38} - {DEBUG:device4} - Previous state: SimCounterState(timestamp=1673594220.2454085, power=717.4000244140625, imported=144571.24650277293, exported=32821.56202232428)
2023-01-13 08:17:10,934 - {modules.common.simcount._calculate:13} - {DEBUG:device4} - time passed: 0.00296903, power1: 717.4, power2: 712.6
2023-01-13 08:17:10,934 - {modules.common.simcount._calculate:29} - {DEBUG:device4} - power did not change sign. Total energy: 2.12285
2023-01-13 08:17:10,934 - {modules.common.simcount._simcount:47} - {DEBUG:device4} - imported: 2.12285 Wh, exported: 0 Wh, new state: SimCounterState(timestamp=1673594230.9338992, power=712.6000366210938, imported=144573.3693558635, exported=32821.56202232428)
2023-01-13 08:17:10,935 - {soc.modules.common.store._api:26} - {DEBUG:device4} - Raw data CounterState(voltages=[229.2880096435547, 229.24200439453125, 229.7010040283203], powers=[464.0, 184.8000030517578, 64.0], currents=[2.2680001258850098, 1.874000072479248, 1.2570000886917114], power_factors=[1.0, 1.0, 1.0], imported=144573.3693558635, exported=32821.56202232428, power=712.6000366210938, frequency=49.970001220703125)
2023-01-13 08:17:10,947 - {soc.modules.common.store._api:26} - {DEBUG:device4} - Raw data InverterState(currents=[0.0, 0.0, 0.0], power=0, exported=44445380.0, dc_power=None)
2023-01-13 08:17:10,951 - {soc.modules.common.component_context:24} - {DEBUG:component10} - Update Komponente ['Kostal Plenticore Wechselrichter']
2023-01-13 08:17:10,952 - {soc.modules.common.component_context:24} - {DEBUG:component11} - Update Komponente ['Kostal Piko IQ']
2023-01-13 08:17:10,953 - {soc.modules.common.store._api:26} - {DEBUG:component10} - Raw data InverterState(currents=[0.0, 0.0, 0.0], power=0, exported=44445380.0, dc_power=None)
2023-01-13 08:17:10,954 - {soc.modules.common.component_context:24} - {DEBUG:cp3} - Update Komponente ['Ladepunkt']
2023-01-13 08:17:10,956 - {soc.modules.common.component_context:24} - {DEBUG:cp13} - Update Komponente ['Ladepunkt']
2023-01-13 08:17:10,960 - {soc.modules.common.store._api:26} - {DEBUG:component11} - Raw data InverterState(currents=[0.0, 0.0, 0.0], power=0, exported=39664420.0, dc_power=None)
2023-01-13 08:17:10,961 - {soc.modules.common.store._api:30} - {DEBUG:component10} - Saving InverterState(currents=[0.0, 0.0, 0.0], power=0, exported=44445380.0, dc_power=None)
2023-01-13 08:17:10,966 - {soc.modules.common.store._api:30} - {DEBUG:component11} - Saving InverterState(currents=[0.0, 0.0, 0.0], power=0, exported=39664420.0, dc_power=None)
2023-01-13 08:17:10,999 - {soc.modules.common.component_context:24} - {DEBUG:component9} - Update Komponente ['Kostal Plenticore Zähler']
2023-01-13 08:17:10,999 - {soc.modules.common.store._api:30} - {DEBUG:component9} - Saving CounterState(voltages=[229.2880096435547, 229.24200439453125, 229.7010040283203], powers=[464.0, 184.8000030517578, 64.0], currents=[2.2680001258850098, 1.874000072479248, 1.2570000886917114], power_factors=[1.0, 1.0, 1.0], imported=144573.3693558635, exported=32821.56202232428, power=712.6000366210938, frequency=49.970001220703125)
2023-01-13 08:17:11,090 - {control.counter:87} - {DEBUG:MainThread} - Verbleibende Ströme an Zähler 9: [28.73, 29.13, 29.74]
2023-01-13 08:17:11,091 - {control.counter:116} - {DEBUG:MainThread} - Verbleibende Leistung an Zähler 9: 21287.399963378906
2023-01-13 08:17:11,096 - {control.chargepoint:349} - {INFO:MainThread} - LP 3: Keine Ladung, da kein Auto angesteckt ist.
2023-01-13 08:17:11,099 - {control.chargepoint:696} - {DEBUG:MainThread} - EV-Phasenzahl beschränkt die nutzbaren Phasen auf 3
2023-01-13 08:17:11,101 - {control.chargepoint:687} - {DEBUG:MainThread} - Phasenzahl Lademodus: 3
2023-01-13 08:17:11,102 - {control.ev:618} - {DEBUG:MainThread} - Keine Ladung, da kein Zeitfenster für Zeitladen aktiv ist.
2023-01-13 08:17:11,102 - {control.chargepoint:709} - {INFO:MainThread} - Phasenumschaltung an Ladepunkt 13 nicht möglich, da bei EV0 nach Ladestart nicht mehr umgeschaltet werden darf.
2023-01-13 08:17:11,106 - {control.ev:364} - {DEBUG:MainThread} - Änderung des Lademodus :False
2023-01-13 08:17:11,108 - {control.chargepoint:856} - {DEBUG:MainThread} - LP 13, EV: Standard-Fahrzeug (EV-Nr.0): Theoretisch benötigter Strom 16A, Lademodus instant_charging, Submodus: Chargemode.INSTANT_CHARGING, Phasen: 0, Priorität: False, max. Ist-Strom: 0.0
2023-01-13 08:17:11,112 - {control.data:297} - {DEBUG:MainThread} - all
{'get': {'power': 0}, 'config': {'configured': False}, 'set': {'charging_power_left': 0, 'switch_on_soc_reached': False}}
2023-01-13 08:17:11,113 - {control.data:270} - {DEBUG:MainThread} - cp_all_data
AllChargepointData(get=AllGet(daily_imported=11016.11, daily_exported=0, power=0, imported=6178444.09, exported=0))
2023-01-13 08:17:11,114 - {control.data:297} - {DEBUG:MainThread} - cp3
ChargepointData(get=Get(charge_state=False, connected_vehicle=ConnectedVehicle(config=ConnectedConfig(average_consumption=17, charge_template=0, chargemode='stop', current_plan=0, ev_template=0, priority=False), info=ConnectedInfo(id=0, name='Ladepunkt'), soc=62.0), currents=[0.0, 0.0, 0.0], daily_imported=1892.09, daily_exported=0, exported=0, fault_str='Kein Fehler.', fault_state=0, imported=3166052.98, phases_in_use=0, plug_state=False, power=0, rfid_timestamp=None, rfid=None, state_str='Keine Ladung, da kein Auto angesteckt ist.', voltages=[229.25, 229.16, 229.8]), set=Set(change_ev_permitted=[True, ''], charging_ev=-1, charging_ev_prev=-1, current=0, energy_to_charge=0, loadmanagement_available=True, log=Log(chargemode_log_entry='_', imported_at_mode_switch=0, imported_at_plugtime=0, imported_since_mode_switch=0, imported_since_plugged=0, range_charged=0, time_charged='00:00', timestamp_start_charging=None), manual_lock=False, phases_to_use=0, plug_state_prev=False, plug_time=None, required_power=0, rfid=None, target_current=0, charging_ev_data=<control.ev.Ev object at 0x713c2628>), config=Config(connection_module={'type': 'external_openwb', 'name': 'Externe openWB', 'configuration': {'ip_address': '192.168.1.165', 'duo_num': 2}}, power_module={}, ev=2, name='Zoe', type='external_openwb', template=0, connected_phases=3, phase_1=1, auto_phase_switch_hw=False, control_pilot_interruption_hw=False, id=3))
2023-01-13 08:17:11,115 - {control.data:297} - {DEBUG:MainThread} - cp13
ChargepointData(get=Get(charge_state=False, connected_vehicle=ConnectedVehicle(config=ConnectedConfig(average_consumption=17, charge_template=0, chargemode='stop', current_plan=0, ev_template=0, priority=False), info=ConnectedInfo(id=0, name='Ladepunkt'), soc=50.0), currents=[0.0, 0.0, 0.0], daily_imported=9124.02, daily_exported=0, exported=0, fault_str='Kein Fehler.', fault_state=0, imported=3012391.11, phases_in_use=0, plug_state=True, power=0, rfid_timestamp=None, rfid=None, state_str=None, voltages=[229.18, 229.35, 229.06]), set=Set(change_ev_permitted=[True, ''], charging_ev=0, charging_ev_prev=0, current=0, energy_to_charge=0, loadmanagement_available=True, log=Log(chargemode_log_entry='_', imported_at_mode_switch=3012391.11, imported_at_plugtime=3003267.09, imported_since_mode_switch=0, imported_since_plugged=9124.020000000019, range_charged=0, time_charged='00:00', timestamp_start_charging=None), manual_lock=False, phases_to_use=3, plug_state_prev=True, plug_time='01/12/2023, 16:53:40', required_power=0.0, rfid=None, target_current=0, charging_ev_data=<control.ev.Ev object at 0x71d662b0>), config=Config(connection_module={'type': 'external_openwb', 'name': 'Externe openWB', 'configuration': {'ip_address': '192.168.1.165', 'duo_num': 1}}, power_module={}, ev=0, name='Standard-Ladepunkt', type='external_openwb', template=0, connected_phases=3, phase_1=3, auto_phase_switch_hw=False, control_pilot_interruption_hw=False, id=13))
2023-01-13 08:17:11,116 - {control.data:297} - {DEBUG:MainThread} - cpt0
CpTemplateData(autolock=Autolock(active=False, plans={}, wait_for_charging_end=False), id=0, max_current_multi_phases=32, max_current_single_phase=32, name='Standard Ladepunkt-Vorlage', rfid_enabling=False, valid_tags=[])
2023-01-13 08:17:11,117 - {control.data:297} - {DEBUG:MainThread} - counter9
{'set': {'reserved_surplus': 0, 'released_surplus': 0, 'raw_power_left': 21287.399963378906, 'surplus_power_left': 0, 'consumption_left': 21261.0, 'raw_currents_left': [28.73, 29.13, 29.74]}, 'get': {'daily_exported': 0.0, 'daily_imported': 14837.33375320047, 'fault_str': 'Kein Fehler.', 'fault_state': 0, 'voltages': [229.29, 229.24, 229.7], 'currents': [2.27, 1.87, 1.26], 'powers': [464.0, 184.8, 64.0], 'power_factors': [1.0, 1.0, 1.0], 'imported': 144573.3693558635, 'exported': 32821.56202232428, 'power': 712.6000366210938, 'frequency': 49.970001220703125}, 'config': {'max_currents': [32, 32, 32], 'max_total_power': 22000}}
2023-01-13 08:17:11,118 - {control.data:274} - {DEBUG:MainThread} - counter_all_data
CounterAllData(get=Get(hierarchy=[{'id': 9, 'type': 'counter', 'children': [{'id': 10, 'type': 'inverter', 'children': []}, {'id': 11, 'type': 'inverter', 'children': []}, {'id': 3, 'type': 'cp', 'children': []}, {'id': 13, 'type': 'cp', 'children': []}]}]), set=Set(loadmanagement_active=False, home_consumption=712.6000366210938, invalid_home_consumption=0, daily_yield_home_consumption=3821.223753200469))
2023-01-13 08:17:11,118 - {control.data:297} - {DEBUG:MainThread} - ct0
ChargeTemplateData(name='Standard-Ladeprofil-Vorlage', disable_after_unplug=False, prio=False, load_default=False, time_charging=TimeCharging(active=False, plans={}), chargemode=Chargemode(selected='pv_charging', pv_charging=PvCharging(min_soc_current=10, min_current=0, feed_in_limit=False, min_soc=0, max_soc=100), scheduled_charging=ScheduledCharging(plans={}), instant_charging=InstantCharging(current=10, limit=Limit(selected='none', amount=1000, soc=50))))
2023-01-13 08:17:11,119 - {control.data:297} - {DEBUG:MainThread} - ct1
ChargeTemplateData(name='Zoe', disable_after_unplug=False, prio=False, load_default=False, time_charging=TimeCharging(active=True, plans={'0': TimeChargingPlan(active=True, frequency=Frequency(selected='weekly', once=['2021-11-01', '2021-11-05'], weekly=[True, True, True, True, True, False, False]), time=['07:00', '07:30'], name='Zoe Morgens', current=8, limit=Limit(selected='none', amount=1000, soc=5)), '1': TimeChargingPlan(active=True, frequency=Frequency(selected='daily', once=['2021-11-01', '2021-11-05'], weekly=[False, False, False, False, False, False, False]), time=['20:00', '23:59'], name='Zoe Min-SOC', current=16, limit=Limit(selected='soc', amount=1000, soc=50))}), chargemode=Chargemode(selected='stop', pv_charging=PvCharging(min_soc_current=6, min_current=0, feed_in_limit=False, min_soc=0, max_soc=100), scheduled_charging=ScheduledCharging(plans={}), instant_charging=InstantCharging(current=16, limit=Limit(selected='soc', amount=1000, soc=80))))
2023-01-13 08:17:11,119 - {control.data:297} - {DEBUG:MainThread} - ct2
ChargeTemplateData(name='Tesla', disable_after_unplug=False, prio=False, load_default=False, time_charging=TimeCharging(active=True, plans={'2': TimeChargingPlan(active=True, frequency=Frequency(selected='daily', once=['2021-11-01', '2021-11-05'], weekly=[False, False, False, False, False, False, False]), time=['00:00', '04:00'], name='Tesla Min SOC', current=16, limit=Limit(selected='soc', amount=1000, soc=50))}), chargemode=Chargemode(selected='instant_charging', pv_charging=PvCharging(min_soc_current=6, min_current=0, feed_in_limit=False, min_soc=0, max_soc=100), scheduled_charging=ScheduledCharging(plans={}), instant_charging=InstantCharging(current=16, limit=Limit(selected='soc', amount=50000, soc=100))))
2023-01-13 08:17:11,119 - {control.data:297} - {DEBUG:MainThread} - ev0
EvData(set=Set(ev_template=EvTemplate(data=EvTemplateData(name='Tesla', max_current_multi_phases=16, max_phases=3, phase_switch_pause=2, prevent_phase_switch=True, prevent_charge_stop=False, control_pilot_interruption=False, control_pilot_interruption_duration=4, average_consump=17, min_current=6, max_current_single_phase=32, battery_capacity=82, nominal_difference=2), et_num=0)), control_parameter=ControlParameter(required_current=16, required_currents=[0.0, 0.0, 0.0], phases=0, prio=False, timestamp_switch_on_off=None, timestamp_auto_phase_switch=None, timestamp_perform_phase_switch=None, submode=<Chargemode.INSTANT_CHARGING: 'instant_charging'>, chargemode=<Chargemode.INSTANT_CHARGING: 'instant_charging'>, used_amount_instant_charging=0, imported_at_plan_start=0, current_plan='Tesla Min SOC'), charge_template=2, ev_template=2, name='Standard-Fahrzeug', tag_id=[], get=Get(soc=50.0, soc_timestamp='01/13/2023, 08:04:40', force_soc_update=False, range=274.312003, fault_state=0, fault_str='Kein Fehler.'))
2023-01-13 08:17:11,120 - {control.data:297} - {DEBUG:MainThread} - ev2
EvData(set=Set(ev_template=EvTemplate(data=EvTemplateData(name='Zoe', max_current_multi_phases=16, max_phases=3, phase_switch_pause=2, prevent_phase_switch=True, prevent_charge_stop=False, control_pilot_interruption=False, control_pilot_interruption_duration=4, average_consump=17, min_current=8, max_current_single_phase=32, battery_capacity=50, nominal_difference=2), et_num=0)), control_parameter=ControlParameter(required_current=0, required_currents=[0.0, 0.0, 0.0], phases=0, prio=False, timestamp_switch_on_off=None, timestamp_auto_phase_switch=None, timestamp_perform_phase_switch=None, submode='stop', chargemode='stop', used_amount_instant_charging=0, imported_at_plan_start=0, current_plan=None), charge_template=1, ev_template=1, name='Zoe', tag_id=[], get=Get(soc=62.0, soc_timestamp='01/13/2023, 07:30:20', force_soc_update=False, range=144.0, fault_state=0, fault_str='Kein Fehler.'))
2023-01-13 08:17:11,122 - {control.data:297} - {DEBUG:MainThread} - et0
EvTemplateData(name='Standard-Fahrzeug-Vorlage', max_current_multi_phases=16, max_phases=3, phase_switch_pause=2, prevent_phase_switch=True, prevent_charge_stop=False, control_pilot_interruption=False, control_pilot_interruption_duration=4, average_consump=17, min_current=6, max_current_single_phase=32, battery_capacity=82, nominal_difference=2)
2023-01-13 08:17:11,122 - {control.data:297} - {DEBUG:MainThread} - et1
EvTemplateData(name='Zoe', max_current_multi_phases=16, max_phases=3, phase_switch_pause=2, prevent_phase_switch=True, prevent_charge_stop=False, control_pilot_interruption=False, control_pilot_interruption_duration=4, average_consump=17, min_current=8, max_current_single_phase=32, battery_capacity=50, nominal_difference=2)
2023-01-13 08:17:11,123 - {control.data:297} - {DEBUG:MainThread} - et2
EvTemplateData(name='Tesla', max_current_multi_phases=16, max_phases=3, phase_switch_pause=2, prevent_phase_switch=True, prevent_charge_stop=False, control_pilot_interruption=False, control_pilot_interruption_duration=4, average_consump=17, min_current=6, max_current_single_phase=32, battery_capacity=82, nominal_difference=2)
2023-01-13 08:17:11,123 - {control.data:278} - {DEBUG:MainThread} - general_data
GeneralData(chargemode_config=ChargemodeConfig(instant_charging=InstantCharging(phases_to_use=3), pv_charging=PvCharging(bat_prio=False, charging_power_reserve=200, control_range=[-230, 0], feed_in_yield=20000, phase_switch_delay=1, phases_to_use=3, rundown_power=1000, rundown_soc=50, switch_off_delay=60, switch_off_soc=40, switch_off_threshold=50, switch_on_delay=5, switch_on_soc=60, switch_on_threshold=100), scheduled_charging=ScheduledCharging(phases_to_use=3), standby=Standby(phases_to_use=3), stop=Stop(phases_to_use=1), time_charging=TimeCharging(phases_to_use=3), unbalanced_load_limit=18, unbalanced_load=False), control_interval=10, extern_display_mode='local', extern=False, external_buttons_hw=False, grid_protection_active=False, grid_protection_configured=False, grid_protection_random_stop=0, grid_protection_timestamp='', mqtt_bridge=False, price_kwh=0.3, range_unit='km', ripple_control_receiver=RippleControlReceiver(configured=False, r1_active=False, r2_active=False))
2023-01-13 08:17:11,124 - {control.data:297} - {DEBUG:MainThread} - graph
{'config': {'duration': 120}}
2023-01-13 08:17:11,125 - {control.data:280} - {DEBUG:MainThread} - optional_data
OptionalData(et=Et(active=False, config=EtConfig(max_price=0, provider={}), get=EtGet(price=0, price_list=[])), int_display=InternalDisplay(active=False, on_if_plugged_in=True, pin_active=False, pin_code='0000', standby=60, theme='cards'), led=Led(active=False), rfid=Rfid(active=False))
2023-01-13 08:17:11,125 - {control.data:297} - {DEBUG:MainThread} - all
{'get': {'power': 0, 'exported': 84109800.0, 'daily_exported': 0.0, 'monthly_exported': 0, 'yearly_exported': 0}, 'config': {'configured': True}}
2023-01-13 08:17:11,125 - {control.data:297} - {DEBUG:MainThread} - pv10
{'get': {'daily_exported': 0.0, 'monthly_exported': 0, 'yearly_exported': 0, 'fault_str': 'Kein Fehler.', 'fault_state': 0, 'power': 0, 'exported': 44445380.0, 'currents': [0.0, 0.0, 0.0]}, 'config': {'max_ac_out': 10000}}
2023-01-13 08:17:11,125 - {control.data:297} - {DEBUG:MainThread} - pv11
{'get': {'daily_exported': 0.0, 'monthly_exported': 0, 'yearly_exported': 0, 'fault_str': 'Kein Fehler.', 'fault_state': 0, 'power': 0, 'exported': 39664420.0, 'currents': [0.0, 0.0, 0.0]}, 'config': {'max_ac_out': 10000}}
2023-01-13 08:17:11,125 - {control.data:297} - {DEBUG:MainThread} - system
{'update_in_progress': False, 'perform_update': False, 'boot_done': True, 'ip_address': '192.168.1.191', 'current_commit': '2023-01-12 16:40:37 +0100 [2bc7920f]', 'current_branch': 'master', 'current_branch_commit': '2023-01-12 16:40:37 +0100 [2bc7920f]', 'current_missing_commits': [], 'dataprotection_acknowledged': True, 'debug_level': 10, 'release_train': 'master', 'version': '1.99.101.1', 'datastore_version': 6, 'lastlivevaluesJson': {'timestamp': 1673594220, 'time': '08:17:00', 'grid': 0.717, 'house-power': 0.717, 'charging-all': 0.0, 'pv-all': -0.0, 'cp3-power': 0.0, 'cp13-power': 0.0, 'ev0-soc': 50.0, 'ev2-soc': 62.0}, 'module_update_completed': True}
2023-01-13 08:17:11,126 - {control.data:310} - {DEBUG:MainThread} - device4
{'name': 'WR Scheune', 'type': 'kostal_plenticore', 'id': 4, 'configuration': {'ip_address': '192.168.1.216'}}
2023-01-13 08:17:11,126 - {control.data:312} - {DEBUG:MainThread} - component9
{'name': 'Kostal Plenticore Zähler', 'type': 'counter', 'id': 9, 'configuration': {}}
2023-01-13 08:17:11,126 - {control.data:312} - {DEBUG:MainThread} - component10
{'name': 'Kostal Plenticore Wechselrichter', 'type': 'inverter', 'id': 10, 'configuration': {}}
2023-01-13 08:17:11,127 - {control.data:310} - {DEBUG:MainThread} - device5
{'name': 'WR Hausdach', 'type': 'kostal_plenticore', 'id': 5, 'configuration': {'ip_address': '192.168.1.215'}}
2023-01-13 08:17:11,127 - {control.data:312} - {DEBUG:MainThread} - component11
{'name': 'Kostal Piko IQ', 'type': 'inverter', 'id': 11, 'configuration': {}}
2023-01-13 08:17:11,127 - {control.data:284} - {DEBUG:MainThread} -
Ich habe es gefixt, bitte ein Update machen. Wenn PV noch nicht geht, bitte mit der neuen Version auch nochmal ein Log davon posten.Stivmaster hat geschrieben: ↑Fr Jan 13, 2023 7:24 am Das Problem das kein Ladevorgang gestartet wird, solange das Auto nicht ab und wieder angesteckt wird besteht bei mir weiterhin mit der 2023-01-12 16:40:37 +0100 [2bc7920f]
Sofortladen_problem_GUI.JPGCode: Alles auswählen
2023-01-13 08:17:00,436 - {control.algorithm.algorithm:26} - {DEBUG:MainThread} - # Algorithmus-Start 2023-01-13 08:17:00,437 - {control.algorithm.algorithm:32} - {DEBUG:MainThread} - **Mindestrom setzen** 2023-01-13 08:17:00,438 - {control.algorithm.min_current:18} - {DEBUG:MainThread} - Mode-Tuple (<Chargemode.INSTANT_CHARGING: 'instant_charging'>, <Chargemode.INSTANT_CHARGING: 'instant_charging'>, False), Zähler 9 2023-01-13 08:17:00,441 - {control.algorithm.algorithm:34} - {DEBUG:MainThread} - **Sollstrom setzen** 2023-01-13 08:17:00,444 - {control.algorithm.filter_chargepoints:118} - {DEBUG:MainThread} - Geordnete Ladepunkte [13] 2023-01-13 08:17:00,445 - {control.algorithm.filter_chargepoints:47} - {DEBUG:MainThread} - LP 13: Keine Zuteilung des Mindeststroms, daher keine weitere Berücksichtigung 2023-01-13 08:17:00,446 - {control.counter:159} - {DEBUG:MainThread} - Überschuss zur PV-geführten Ladung: 0W 2023-01-13 08:17:00,446 - {control.counter:407} - {DEBUG:MainThread} - Zähler 9: Begrenzung der verbleibenden Leistung auf 0W 2023-01-13 08:17:00,446 - {control.algorithm.algorithm:45} - {DEBUG:MainThread} - **Keine Leistung für PV-geführtes Laden übrig.** 2023-01-13 08:17:00,447 - {control.process:22} - {DEBUG:MainThread} - # Ladung starten. 2023-01-13 08:17:00,451 - {control.process:106} - {INFO:MainThread} - LP13: set current 0 A 2023-01-13 08:17:00,456 - {soc.modules.common.component_context:24} - {DEBUG:cp3} - Update Komponente ['Ladepunkt'] 2023-01-13 08:17:00,460 - {soc.modules.common.component_context:24} - {DEBUG:cp13} - Update Komponente ['Ladepunkt'] 2023-01-13 08:17:00,471 - {control.counter:141} - {DEBUG:MainThread} - 0W reservierte EVU-Leistung, 0W freigegebene EVU-Leistung 2023-01-13 08:17:00,689 - {schedule:660} - {DEBUG:MainThread} - Running job Job(interval=1, unit=minutes, do=update, args=(), kwargs={}) 2023-01-13 08:17:10,787 - {schedule:660} - {DEBUG:MainThread} - Running job Job(interval=1, unit=minutes, do=handler10Sec, args=(), kwargs={}) 2023-01-13 08:17:10,788 - {root:61} - {INFO:MainThread} - # ***Start*** 2023-01-13 08:17:10,845 - {soc.modules.common.component_context:51} - {DEBUG:device4} - Update Komponenten ['Kostal Plenticore Zähler', 'Kostal Plenticore Wechselrichter'] 2023-01-13 08:17:10,847 - {soc.modules.common.component_context:51} - {DEBUG:device5} - Update Komponenten ['Kostal Piko IQ'] 2023-01-13 08:17:10,848 - {soc.modules.common.component_context:24} - {DEBUG:cp3} - Update Komponente ['Ladepunkt'] 2023-01-13 08:17:10,851 - {soc.modules.common.component_context:24} - {DEBUG:cp13} - Update Komponente ['Ladepunkt'] 2023-01-13 08:17:10,865 - {soc.modules.common.store._api:26} - {DEBUG:device5} - Raw data InverterState(currents=[0.0, 0.0, 0.0], power=0, exported=39664420.0, dc_power=None) 2023-01-13 08:17:10,933 - {modules.common.simcount._simcount:38} - {DEBUG:device4} - Previous state: SimCounterState(timestamp=1673594220.2454085, power=717.4000244140625, imported=144571.24650277293, exported=32821.56202232428) 2023-01-13 08:17:10,934 - {modules.common.simcount._calculate:13} - {DEBUG:device4} - time passed: 0.00296903, power1: 717.4, power2: 712.6 2023-01-13 08:17:10,934 - {modules.common.simcount._calculate:29} - {DEBUG:device4} - power did not change sign. Total energy: 2.12285 2023-01-13 08:17:10,934 - {modules.common.simcount._simcount:47} - {DEBUG:device4} - imported: 2.12285 Wh, exported: 0 Wh, new state: SimCounterState(timestamp=1673594230.9338992, power=712.6000366210938, imported=144573.3693558635, exported=32821.56202232428) 2023-01-13 08:17:10,935 - {soc.modules.common.store._api:26} - {DEBUG:device4} - Raw data CounterState(voltages=[229.2880096435547, 229.24200439453125, 229.7010040283203], powers=[464.0, 184.8000030517578, 64.0], currents=[2.2680001258850098, 1.874000072479248, 1.2570000886917114], power_factors=[1.0, 1.0, 1.0], imported=144573.3693558635, exported=32821.56202232428, power=712.6000366210938, frequency=49.970001220703125) 2023-01-13 08:17:10,947 - {soc.modules.common.store._api:26} - {DEBUG:device4} - Raw data InverterState(currents=[0.0, 0.0, 0.0], power=0, exported=44445380.0, dc_power=None) 2023-01-13 08:17:10,951 - {soc.modules.common.component_context:24} - {DEBUG:component10} - Update Komponente ['Kostal Plenticore Wechselrichter'] 2023-01-13 08:17:10,952 - {soc.modules.common.component_context:24} - {DEBUG:component11} - Update Komponente ['Kostal Piko IQ'] 2023-01-13 08:17:10,953 - {soc.modules.common.store._api:26} - {DEBUG:component10} - Raw data InverterState(currents=[0.0, 0.0, 0.0], power=0, exported=44445380.0, dc_power=None) 2023-01-13 08:17:10,954 - {soc.modules.common.component_context:24} - {DEBUG:cp3} - Update Komponente ['Ladepunkt'] 2023-01-13 08:17:10,956 - {soc.modules.common.component_context:24} - {DEBUG:cp13} - Update Komponente ['Ladepunkt'] 2023-01-13 08:17:10,960 - {soc.modules.common.store._api:26} - {DEBUG:component11} - Raw data InverterState(currents=[0.0, 0.0, 0.0], power=0, exported=39664420.0, dc_power=None) 2023-01-13 08:17:10,961 - {soc.modules.common.store._api:30} - {DEBUG:component10} - Saving InverterState(currents=[0.0, 0.0, 0.0], power=0, exported=44445380.0, dc_power=None) 2023-01-13 08:17:10,966 - {soc.modules.common.store._api:30} - {DEBUG:component11} - Saving InverterState(currents=[0.0, 0.0, 0.0], power=0, exported=39664420.0, dc_power=None) 2023-01-13 08:17:10,999 - {soc.modules.common.component_context:24} - {DEBUG:component9} - Update Komponente ['Kostal Plenticore Zähler'] 2023-01-13 08:17:10,999 - {soc.modules.common.store._api:30} - {DEBUG:component9} - Saving CounterState(voltages=[229.2880096435547, 229.24200439453125, 229.7010040283203], powers=[464.0, 184.8000030517578, 64.0], currents=[2.2680001258850098, 1.874000072479248, 1.2570000886917114], power_factors=[1.0, 1.0, 1.0], imported=144573.3693558635, exported=32821.56202232428, power=712.6000366210938, frequency=49.970001220703125) 2023-01-13 08:17:11,090 - {control.counter:87} - {DEBUG:MainThread} - Verbleibende Ströme an Zähler 9: [28.73, 29.13, 29.74] 2023-01-13 08:17:11,091 - {control.counter:116} - {DEBUG:MainThread} - Verbleibende Leistung an Zähler 9: 21287.399963378906 2023-01-13 08:17:11,096 - {control.chargepoint:349} - {INFO:MainThread} - LP 3: Keine Ladung, da kein Auto angesteckt ist. 2023-01-13 08:17:11,099 - {control.chargepoint:696} - {DEBUG:MainThread} - EV-Phasenzahl beschränkt die nutzbaren Phasen auf 3 2023-01-13 08:17:11,101 - {control.chargepoint:687} - {DEBUG:MainThread} - Phasenzahl Lademodus: 3 2023-01-13 08:17:11,102 - {control.ev:618} - {DEBUG:MainThread} - Keine Ladung, da kein Zeitfenster für Zeitladen aktiv ist. 2023-01-13 08:17:11,102 - {control.chargepoint:709} - {INFO:MainThread} - Phasenumschaltung an Ladepunkt 13 nicht möglich, da bei EV0 nach Ladestart nicht mehr umgeschaltet werden darf. 2023-01-13 08:17:11,106 - {control.ev:364} - {DEBUG:MainThread} - Änderung des Lademodus :False 2023-01-13 08:17:11,108 - {control.chargepoint:856} - {DEBUG:MainThread} - LP 13, EV: Standard-Fahrzeug (EV-Nr.0): Theoretisch benötigter Strom 16A, Lademodus instant_charging, Submodus: Chargemode.INSTANT_CHARGING, Phasen: 0, Priorität: False, max. Ist-Strom: 0.0 2023-01-13 08:17:11,112 - {control.data:297} - {DEBUG:MainThread} - all {'get': {'power': 0}, 'config': {'configured': False}, 'set': {'charging_power_left': 0, 'switch_on_soc_reached': False}} 2023-01-13 08:17:11,113 - {control.data:270} - {DEBUG:MainThread} - cp_all_data AllChargepointData(get=AllGet(daily_imported=11016.11, daily_exported=0, power=0, imported=6178444.09, exported=0)) 2023-01-13 08:17:11,114 - {control.data:297} - {DEBUG:MainThread} - cp3 ChargepointData(get=Get(charge_state=False, connected_vehicle=ConnectedVehicle(config=ConnectedConfig(average_consumption=17, charge_template=0, chargemode='stop', current_plan=0, ev_template=0, priority=False), info=ConnectedInfo(id=0, name='Ladepunkt'), soc=62.0), currents=[0.0, 0.0, 0.0], daily_imported=1892.09, daily_exported=0, exported=0, fault_str='Kein Fehler.', fault_state=0, imported=3166052.98, phases_in_use=0, plug_state=False, power=0, rfid_timestamp=None, rfid=None, state_str='Keine Ladung, da kein Auto angesteckt ist.', voltages=[229.25, 229.16, 229.8]), set=Set(change_ev_permitted=[True, ''], charging_ev=-1, charging_ev_prev=-1, current=0, energy_to_charge=0, loadmanagement_available=True, log=Log(chargemode_log_entry='_', imported_at_mode_switch=0, imported_at_plugtime=0, imported_since_mode_switch=0, imported_since_plugged=0, range_charged=0, time_charged='00:00', timestamp_start_charging=None), manual_lock=False, phases_to_use=0, plug_state_prev=False, plug_time=None, required_power=0, rfid=None, target_current=0, charging_ev_data=<control.ev.Ev object at 0x713c2628>), config=Config(connection_module={'type': 'external_openwb', 'name': 'Externe openWB', 'configuration': {'ip_address': '192.168.1.165', 'duo_num': 2}}, power_module={}, ev=2, name='Zoe', type='external_openwb', template=0, connected_phases=3, phase_1=1, auto_phase_switch_hw=False, control_pilot_interruption_hw=False, id=3)) 2023-01-13 08:17:11,115 - {control.data:297} - {DEBUG:MainThread} - cp13 ChargepointData(get=Get(charge_state=False, connected_vehicle=ConnectedVehicle(config=ConnectedConfig(average_consumption=17, charge_template=0, chargemode='stop', current_plan=0, ev_template=0, priority=False), info=ConnectedInfo(id=0, name='Ladepunkt'), soc=50.0), currents=[0.0, 0.0, 0.0], daily_imported=9124.02, daily_exported=0, exported=0, fault_str='Kein Fehler.', fault_state=0, imported=3012391.11, phases_in_use=0, plug_state=True, power=0, rfid_timestamp=None, rfid=None, state_str=None, voltages=[229.18, 229.35, 229.06]), set=Set(change_ev_permitted=[True, ''], charging_ev=0, charging_ev_prev=0, current=0, energy_to_charge=0, loadmanagement_available=True, log=Log(chargemode_log_entry='_', imported_at_mode_switch=3012391.11, imported_at_plugtime=3003267.09, imported_since_mode_switch=0, imported_since_plugged=9124.020000000019, range_charged=0, time_charged='00:00', timestamp_start_charging=None), manual_lock=False, phases_to_use=3, plug_state_prev=True, plug_time='01/12/2023, 16:53:40', required_power=0.0, rfid=None, target_current=0, charging_ev_data=<control.ev.Ev object at 0x71d662b0>), config=Config(connection_module={'type': 'external_openwb', 'name': 'Externe openWB', 'configuration': {'ip_address': '192.168.1.165', 'duo_num': 1}}, power_module={}, ev=0, name='Standard-Ladepunkt', type='external_openwb', template=0, connected_phases=3, phase_1=3, auto_phase_switch_hw=False, control_pilot_interruption_hw=False, id=13)) 2023-01-13 08:17:11,116 - {control.data:297} - {DEBUG:MainThread} - cpt0 CpTemplateData(autolock=Autolock(active=False, plans={}, wait_for_charging_end=False), id=0, max_current_multi_phases=32, max_current_single_phase=32, name='Standard Ladepunkt-Vorlage', rfid_enabling=False, valid_tags=[]) 2023-01-13 08:17:11,117 - {control.data:297} - {DEBUG:MainThread} - counter9 {'set': {'reserved_surplus': 0, 'released_surplus': 0, 'raw_power_left': 21287.399963378906, 'surplus_power_left': 0, 'consumption_left': 21261.0, 'raw_currents_left': [28.73, 29.13, 29.74]}, 'get': {'daily_exported': 0.0, 'daily_imported': 14837.33375320047, 'fault_str': 'Kein Fehler.', 'fault_state': 0, 'voltages': [229.29, 229.24, 229.7], 'currents': [2.27, 1.87, 1.26], 'powers': [464.0, 184.8, 64.0], 'power_factors': [1.0, 1.0, 1.0], 'imported': 144573.3693558635, 'exported': 32821.56202232428, 'power': 712.6000366210938, 'frequency': 49.970001220703125}, 'config': {'max_currents': [32, 32, 32], 'max_total_power': 22000}} 2023-01-13 08:17:11,118 - {control.data:274} - {DEBUG:MainThread} - counter_all_data CounterAllData(get=Get(hierarchy=[{'id': 9, 'type': 'counter', 'children': [{'id': 10, 'type': 'inverter', 'children': []}, {'id': 11, 'type': 'inverter', 'children': []}, {'id': 3, 'type': 'cp', 'children': []}, {'id': 13, 'type': 'cp', 'children': []}]}]), set=Set(loadmanagement_active=False, home_consumption=712.6000366210938, invalid_home_consumption=0, daily_yield_home_consumption=3821.223753200469)) 2023-01-13 08:17:11,118 - {control.data:297} - {DEBUG:MainThread} - ct0 ChargeTemplateData(name='Standard-Ladeprofil-Vorlage', disable_after_unplug=False, prio=False, load_default=False, time_charging=TimeCharging(active=False, plans={}), chargemode=Chargemode(selected='pv_charging', pv_charging=PvCharging(min_soc_current=10, min_current=0, feed_in_limit=False, min_soc=0, max_soc=100), scheduled_charging=ScheduledCharging(plans={}), instant_charging=InstantCharging(current=10, limit=Limit(selected='none', amount=1000, soc=50)))) 2023-01-13 08:17:11,119 - {control.data:297} - {DEBUG:MainThread} - ct1 ChargeTemplateData(name='Zoe', disable_after_unplug=False, prio=False, load_default=False, time_charging=TimeCharging(active=True, plans={'0': TimeChargingPlan(active=True, frequency=Frequency(selected='weekly', once=['2021-11-01', '2021-11-05'], weekly=[True, True, True, True, True, False, False]), time=['07:00', '07:30'], name='Zoe Morgens', current=8, limit=Limit(selected='none', amount=1000, soc=5)), '1': TimeChargingPlan(active=True, frequency=Frequency(selected='daily', once=['2021-11-01', '2021-11-05'], weekly=[False, False, False, False, False, False, False]), time=['20:00', '23:59'], name='Zoe Min-SOC', current=16, limit=Limit(selected='soc', amount=1000, soc=50))}), chargemode=Chargemode(selected='stop', pv_charging=PvCharging(min_soc_current=6, min_current=0, feed_in_limit=False, min_soc=0, max_soc=100), scheduled_charging=ScheduledCharging(plans={}), instant_charging=InstantCharging(current=16, limit=Limit(selected='soc', amount=1000, soc=80)))) 2023-01-13 08:17:11,119 - {control.data:297} - {DEBUG:MainThread} - ct2 ChargeTemplateData(name='Tesla', disable_after_unplug=False, prio=False, load_default=False, time_charging=TimeCharging(active=True, plans={'2': TimeChargingPlan(active=True, frequency=Frequency(selected='daily', once=['2021-11-01', '2021-11-05'], weekly=[False, False, False, False, False, False, False]), time=['00:00', '04:00'], name='Tesla Min SOC', current=16, limit=Limit(selected='soc', amount=1000, soc=50))}), chargemode=Chargemode(selected='instant_charging', pv_charging=PvCharging(min_soc_current=6, min_current=0, feed_in_limit=False, min_soc=0, max_soc=100), scheduled_charging=ScheduledCharging(plans={}), instant_charging=InstantCharging(current=16, limit=Limit(selected='soc', amount=50000, soc=100)))) 2023-01-13 08:17:11,119 - {control.data:297} - {DEBUG:MainThread} - ev0 EvData(set=Set(ev_template=EvTemplate(data=EvTemplateData(name='Tesla', max_current_multi_phases=16, max_phases=3, phase_switch_pause=2, prevent_phase_switch=True, prevent_charge_stop=False, control_pilot_interruption=False, control_pilot_interruption_duration=4, average_consump=17, min_current=6, max_current_single_phase=32, battery_capacity=82, nominal_difference=2), et_num=0)), control_parameter=ControlParameter(required_current=16, required_currents=[0.0, 0.0, 0.0], phases=0, prio=False, timestamp_switch_on_off=None, timestamp_auto_phase_switch=None, timestamp_perform_phase_switch=None, submode=<Chargemode.INSTANT_CHARGING: 'instant_charging'>, chargemode=<Chargemode.INSTANT_CHARGING: 'instant_charging'>, used_amount_instant_charging=0, imported_at_plan_start=0, current_plan='Tesla Min SOC'), charge_template=2, ev_template=2, name='Standard-Fahrzeug', tag_id=[], get=Get(soc=50.0, soc_timestamp='01/13/2023, 08:04:40', force_soc_update=False, range=274.312003, fault_state=0, fault_str='Kein Fehler.')) 2023-01-13 08:17:11,120 - {control.data:297} - {DEBUG:MainThread} - ev2 EvData(set=Set(ev_template=EvTemplate(data=EvTemplateData(name='Zoe', max_current_multi_phases=16, max_phases=3, phase_switch_pause=2, prevent_phase_switch=True, prevent_charge_stop=False, control_pilot_interruption=False, control_pilot_interruption_duration=4, average_consump=17, min_current=8, max_current_single_phase=32, battery_capacity=50, nominal_difference=2), et_num=0)), control_parameter=ControlParameter(required_current=0, required_currents=[0.0, 0.0, 0.0], phases=0, prio=False, timestamp_switch_on_off=None, timestamp_auto_phase_switch=None, timestamp_perform_phase_switch=None, submode='stop', chargemode='stop', used_amount_instant_charging=0, imported_at_plan_start=0, current_plan=None), charge_template=1, ev_template=1, name='Zoe', tag_id=[], get=Get(soc=62.0, soc_timestamp='01/13/2023, 07:30:20', force_soc_update=False, range=144.0, fault_state=0, fault_str='Kein Fehler.')) 2023-01-13 08:17:11,122 - {control.data:297} - {DEBUG:MainThread} - et0 EvTemplateData(name='Standard-Fahrzeug-Vorlage', max_current_multi_phases=16, max_phases=3, phase_switch_pause=2, prevent_phase_switch=True, prevent_charge_stop=False, control_pilot_interruption=False, control_pilot_interruption_duration=4, average_consump=17, min_current=6, max_current_single_phase=32, battery_capacity=82, nominal_difference=2) 2023-01-13 08:17:11,122 - {control.data:297} - {DEBUG:MainThread} - et1 EvTemplateData(name='Zoe', max_current_multi_phases=16, max_phases=3, phase_switch_pause=2, prevent_phase_switch=True, prevent_charge_stop=False, control_pilot_interruption=False, control_pilot_interruption_duration=4, average_consump=17, min_current=8, max_current_single_phase=32, battery_capacity=50, nominal_difference=2) 2023-01-13 08:17:11,123 - {control.data:297} - {DEBUG:MainThread} - et2 EvTemplateData(name='Tesla', max_current_multi_phases=16, max_phases=3, phase_switch_pause=2, prevent_phase_switch=True, prevent_charge_stop=False, control_pilot_interruption=False, control_pilot_interruption_duration=4, average_consump=17, min_current=6, max_current_single_phase=32, battery_capacity=82, nominal_difference=2) 2023-01-13 08:17:11,123 - {control.data:278} - {DEBUG:MainThread} - general_data GeneralData(chargemode_config=ChargemodeConfig(instant_charging=InstantCharging(phases_to_use=3), pv_charging=PvCharging(bat_prio=False, charging_power_reserve=200, control_range=[-230, 0], feed_in_yield=20000, phase_switch_delay=1, phases_to_use=3, rundown_power=1000, rundown_soc=50, switch_off_delay=60, switch_off_soc=40, switch_off_threshold=50, switch_on_delay=5, switch_on_soc=60, switch_on_threshold=100), scheduled_charging=ScheduledCharging(phases_to_use=3), standby=Standby(phases_to_use=3), stop=Stop(phases_to_use=1), time_charging=TimeCharging(phases_to_use=3), unbalanced_load_limit=18, unbalanced_load=False), control_interval=10, extern_display_mode='local', extern=False, external_buttons_hw=False, grid_protection_active=False, grid_protection_configured=False, grid_protection_random_stop=0, grid_protection_timestamp='', mqtt_bridge=False, price_kwh=0.3, range_unit='km', ripple_control_receiver=RippleControlReceiver(configured=False, r1_active=False, r2_active=False)) 2023-01-13 08:17:11,124 - {control.data:297} - {DEBUG:MainThread} - graph {'config': {'duration': 120}} 2023-01-13 08:17:11,125 - {control.data:280} - {DEBUG:MainThread} - optional_data OptionalData(et=Et(active=False, config=EtConfig(max_price=0, provider={}), get=EtGet(price=0, price_list=[])), int_display=InternalDisplay(active=False, on_if_plugged_in=True, pin_active=False, pin_code='0000', standby=60, theme='cards'), led=Led(active=False), rfid=Rfid(active=False)) 2023-01-13 08:17:11,125 - {control.data:297} - {DEBUG:MainThread} - all {'get': {'power': 0, 'exported': 84109800.0, 'daily_exported': 0.0, 'monthly_exported': 0, 'yearly_exported': 0}, 'config': {'configured': True}} 2023-01-13 08:17:11,125 - {control.data:297} - {DEBUG:MainThread} - pv10 {'get': {'daily_exported': 0.0, 'monthly_exported': 0, 'yearly_exported': 0, 'fault_str': 'Kein Fehler.', 'fault_state': 0, 'power': 0, 'exported': 44445380.0, 'currents': [0.0, 0.0, 0.0]}, 'config': {'max_ac_out': 10000}} 2023-01-13 08:17:11,125 - {control.data:297} - {DEBUG:MainThread} - pv11 {'get': {'daily_exported': 0.0, 'monthly_exported': 0, 'yearly_exported': 0, 'fault_str': 'Kein Fehler.', 'fault_state': 0, 'power': 0, 'exported': 39664420.0, 'currents': [0.0, 0.0, 0.0]}, 'config': {'max_ac_out': 10000}} 2023-01-13 08:17:11,125 - {control.data:297} - {DEBUG:MainThread} - system {'update_in_progress': False, 'perform_update': False, 'boot_done': True, 'ip_address': '192.168.1.191', 'current_commit': '2023-01-12 16:40:37 +0100 [2bc7920f]', 'current_branch': 'master', 'current_branch_commit': '2023-01-12 16:40:37 +0100 [2bc7920f]', 'current_missing_commits': [], 'dataprotection_acknowledged': True, 'debug_level': 10, 'release_train': 'master', 'version': '1.99.101.1', 'datastore_version': 6, 'lastlivevaluesJson': {'timestamp': 1673594220, 'time': '08:17:00', 'grid': 0.717, 'house-power': 0.717, 'charging-all': 0.0, 'pv-all': -0.0, 'cp3-power': 0.0, 'cp13-power': 0.0, 'ev0-soc': 50.0, 'ev2-soc': 62.0}, 'module_update_completed': True} 2023-01-13 08:17:11,126 - {control.data:310} - {DEBUG:MainThread} - device4 {'name': 'WR Scheune', 'type': 'kostal_plenticore', 'id': 4, 'configuration': {'ip_address': '192.168.1.216'}} 2023-01-13 08:17:11,126 - {control.data:312} - {DEBUG:MainThread} - component9 {'name': 'Kostal Plenticore Zähler', 'type': 'counter', 'id': 9, 'configuration': {}} 2023-01-13 08:17:11,126 - {control.data:312} - {DEBUG:MainThread} - component10 {'name': 'Kostal Plenticore Wechselrichter', 'type': 'inverter', 'id': 10, 'configuration': {}} 2023-01-13 08:17:11,127 - {control.data:310} - {DEBUG:MainThread} - device5 {'name': 'WR Hausdach', 'type': 'kostal_plenticore', 'id': 5, 'configuration': {'ip_address': '192.168.1.215'}} 2023-01-13 08:17:11,127 - {control.data:312} - {DEBUG:MainThread} - component11 {'name': 'Kostal Piko IQ', 'type': 'inverter', 'id': 11, 'configuration': {}} 2023-01-13 08:17:11,127 - {control.data:284} - {DEBUG:MainThread} -
Sofortladen Fehler_Status_Ladepunkt.JPG
Switche ich zurück zur Beta funktioniert zumindest Sofortladen. PV laden bekomme ich mit beiden Versionen überhaupt nicht ans laufen.
Ich habe es gefixt, bitte ein Update machen.