Hi guys,
I know there is at least one thread with a similar topic, but a few things might be different to my problem. In addition, I've made a few tests and would like to get your help with the interpretation ...
Introduction:
I have a solar power plant with a battery and a hybrid inverter (Sofar Solar).
In addition I have a Zappi wallbox from myenergi.
To achieve surplus charging Zappi ships three CT clamps, that have to be installed after the electricity meter. So far so good.
The inverter has already installed a smart meter at the exact same position.
Problem:
With the basic installation, I can manage to surplus charging, but the house battery will be always prioritized.
I've managed to attach an ESP32 to the Modbus of the inverter and receive all values, including the ones from the smart meter.
Unfortunately, the wallbox does not have an API to transmit the reading from the inverter directly to the wallbox. I think the only available solution to control the charging behavior is to use the ct clamps.
Now, I want to emulate the CT clamps to let the wallbox think there is a surplus of energy.
The inverter will see this as load and reduces the charging of the house battery.
In the first step, I just want to measure and understand the clamp's output.
CT clamp:
I am currently trying to understand the CT clamp to get the requirements for the emulation.
This is the used CT clamp: https://www.myenergi.com/wp-content/uploads/2022/12/CT-Datasheet-Rev-1.4-ENGLISH.pdf
I think the most important information is the current ratio: 100A/40mA
40mA will be induced in the secondary circuit, if the primary circuit has 100A load.
Experimental setup:
To verify this assumption, I've built an experimental setup.
I placed the CT clamp on the hot wire of an extension cable. The load is a spotlight.
I've measured the voltage of the primary circuit with a multimeter and the power with an energy meter.
Primary Voltage: 232.7V
Primary Power: 189.6W
Calculated Current: 189.6/232.7 = 0.814782982380748000A
The induced current is quite small.
I would expect a current of 0.814782982 * 100/0,04 = 0.000325913192952299A
Measurement:
I used a PoKit Pro for measurements. I used the data logger mode with a 1s interval. I captured ~96 measurements and the mean value is 0.000353158236976014A
I can now calculated the primary circuit:
Current: 0.000353158236976014 * 100/0,04 = 0.882895592440036000 A
Power: 232.7 * 0.882895592440036000 = 205,449 W
Results:
I think the difference between the measurements are quite big.
Current diff: 0.068112610059287800A
Power diff: 15.84980436079630000
Error: 6,81%
Question:
Thanks for reading all this and let's finally come to my question
Do you see any mistake in my thoughts?
Can you imagine, why the error is ~7%? The clamp's data sheet says 0,5%.
Is the current of the load too small to get reasonable results?
Outlook:
In the next step, I would like to use an ESP32 to generate an output current (AC, if I am not wrong) based on the readings from the inverter to pretend to be a ct clamp for the wallbox.
If this is working, I can start building some more or less smart algorithms ...