3x Multiplus II (3 phase) (with ESS and Battery life active)
Cerbo GX
4X pylontech us5000
1X Fronius Inverter
1X Smart Solar MPPT 450/100
when the battery is full The Smart Solar MPPT 450/100 starts to reduce the feed in current and it doesn’t contribute to the feed in power into the grid. The DC coupled Feed-in excess is active.
I went throught one more time reading the victron / pylontech setup guide regarding voltages and if I’m not doing some mistake are correct.
Do you have some idea what can cause this issue?
Yes, Multiplus’s is connected to the AC-In: the Fronius Inverter that is indipendent on the output is able to feed in into the grid when the battery is full…
ESS is installed and configured. Do I have some wrong configuration?
It seems that the basics are covered. It should work…
But being a 3 phase system with an additional PV inverter, there are quite a lot that could be go wrong.
Next step will be to dig deep into each device configuration.
But that could be a long process as you said it’s not easy for you to access Cerbo through SSH…
Do you have a professional installer nearby or did you install it by yourself?
I have done the installation. I’m an electronic engineer with experience in IC design. If I need to access into the Cerbo GX through SSH is not a problem, but I’m not familiar with this device, the internal script structure and file settings.
I have used in the past Putty to do these kind of stuff to access Raspberry in some of my projects.
Today I’m trying what LX is suggesting to disable the battery life to see if have some effect.
OK then…
Use SSH and log into Cerbo, after you enable superuser access level.
Don’t forget to set the root password and SSH on LAN for that.
Once you get prompt access, run dbus-spy utility.
Browse through the tree and see if the above mentioned keys are properly set.
Also for easy browsing in Cerbo’s OS, use WinSCP or similar.
I’m reading in some other discussions in the comunity that when there is a MPPT involved they have increased the final regulation voltage of the battery by 0.4V overwriting what the BMS of the battery is trying to impose allowing the Multiplus 2 to be able to feed in into the grid.
The only way I can see to do so is to change in DVCC the “Limit managed charge voltage” to 52.8V but reading the python script I’m seeing :
if charge_voltage is not None:
user_charge_voltage = self._settings[‘maxchargevoltage’]
if user_charge_voltage > 0:
charge_voltage = min(charge_voltage, user_charge_voltage)
charge_voltage should come from the BMS and should be the 52.4V, so because there is the min(charge_voltage, user_charge_voltage) I don’t think is possible to apply the 52.8V.
That piece of code is only taken into account if you set a value in the Limit managed charge voltage
If not, the user_charge_voltage will be 0 and the min() will not execute.
Glad that you’ve started to analyze the code. For sure you’ll find out the culprit.
Do you have any suggestions on how to debug this issue and sniff into the Cerbo GX to identify which parameter in the control system is causing the power reduction from the SmartSolar MPPT 450/100?