Closed DietmarHoch closed 1 year ago
Hi @DietmarHoch ,
sorry for late reply - not much time to take care of this project any more. I guess you are right - we had a problem with the calculation also on VRM wrong values where shown.
A fix was applied - but only for the Forward/Reverse totals not on each L1-L3 level:
For VRM that fixes everything - do you think that this is sufficient or also needed on L1-L3 level?
Hi Fabian,
this Fix is working for me, for the energy calculation a sum over all phases are right.
thanks
Ok - great - will close this issue here
Hi, as in forums discussed the 3EM builds no SUM over L1, L2 and L3. so values for total returned are wrong if your PV inverter is only on one phase. please compare the values with your meter from the distributor. my suggustion: at midnight set all values to zero and build your own sum over the day. i made this for an ESP32 that reads my data from the 3EM and sends it to the solax X1 over RS485. it works and the values in the solax portal looks rigth for me. here is a bit of my code:
_//saldierung shelly
unsigned long time_now = millis(); unsigned long time_diff = time_now - last_time_Returned_energy_saldo; last_time_Returned_energy_saldo = time_now; if (power_gesamt_shelly_EM3 < 0) { energy_returned_saldiert_Wattmillisekunde = energy_returned_saldiert_Wattmillisekunde + ((power_gesamt_shelly_EM3 -1) time_diff); }
and dont forget: