How to divert PV to grid and not charge battery #135
Replies: 4 comments 13 replies
|
Try setting it to 0.01 instead of 0. |
|
As per Sigen modbus documentation https://github.com/user-attachments/files/21053404/Modbus.Protocol.EN.-.SIGEN.pdf the number.sigen_plant_ess_max_charging_limit and number.sigen_plant_ess_max_discharging_limit settings only work in EMS mode charging or discharging. Setting these values while in mode max self-consumtion does nothing. To awnser your question on howto divert PV to grid and not charge battery, there are two options i know that do work. Option 1: Set EMS mode to 0x05 (Command discharging) and periodicly (every 2 seconds or so) set value number.sigen_plant_ess_max_discharging_limit equal to sensor.sigen_plant_consumed_power value. Option 2: Set EMS mode to 0x03 (Command charging) and set value number.sigen_plant_ess_max_charging_limit to 0,01. Activate peak-shaving in the app and set max grid peak-power to 0.0kW. This way the battery will still discharge to prevent peak usage over 0kW. But be sure to put the peak-shave soc lower than the current active soc, otherwise the battery will start charging with surplus PV. Both options are stil not ideal. Would be nice if number.sigen_plant_ess_max_charging_limit and number.sigen_plant_ess_max_discharging_limit settings were respected in max self-consumtion mode. |
The latest firmware pushed to my 3phase inverter last week now allows the charging power limit to be set when in Max Self-Consumption mode. Sigenergy told me a month ago this would be possible with the next modbus spec update, so I guess there's a new modbus spec being used today by some inverters. |
|
You can keep it in maximum self consumption and set the max charging limit below the current state of charge (or 0). Then the battery won't charge but will allow discharging if required. |
Uh oh!
There was an error while loading. Please reload this page.
Is there a setting to prevent the battery charging from PV? I'd like to automate spilling excess morning solar with a positive price to the grid.
I thought number.sigen_plant_ess_max_charging_limit might do it if set to zero, but alas, no.
The Sig app has a "hold battery" option which achieves no charging, but also stops discharging.
All reactions