Replies: 5 comments 10 replies
|
Hi @brad5505 First of all thanks for all your hard work to provide cool stuff to people like me!! HardwareTo give you some hardware context, this is my setup: • Growatt 3PH MOD 10KTL3-XH BE(BP): Hybrid Inverter ScriptsI created - based on your feedback - a test script to start charging my battery for 5 minutes at 50% load: sequence:
- action: number.set_value
target:
entity_id: number.growattmodbus_inverter_vpp_time
data:
value: 5
- action: number.set_value
target:
entity_id: number.growattmodbus_inverter_vpp_power
data:
value: 50
- action: select.select_option
target:
entity_id: select.growattmodbus_inverter_vpp_remote_control
data:
option: Enabled
- delay:
seconds: 1
- action: select.select_option
target:
entity_id: select.growattmodbus_inverter_vpp_status
data:
option: Enabled
alias: Start loading battery
description: ""I created also a test script to stop charging my battery: sequence:
- action: number.set_value
target:
entity_id: number.growattmodbus_inverter_vpp_time
data:
value: 0
- action: number.set_value
target:
entity_id: number.growattmodbus_inverter_vpp_power
data:
value: 0
- action: select.select_option
target:
entity_id: select.growattmodbus_inverter_vpp_remote_control
data:
option: Disabled
- delay:
seconds: 1
- action: select.select_option
target:
entity_id: select.growattmodbus_inverter_vpp_status
data:
option: Disabled
alias: Start loading battery
description: ""First testWhen I started my first test, I suddenly got large peaks. But it was apparently my wife, who had decided that it was a the perfect timing to activate both the oven and the iron 😖. So my experiment wasn't really conducted under laboratory conditions... Second testThe second test was much better 👍👍
So to me your Gen4 patch seems to be working fine 😍 Questions
Thanks and enjoy your sunday! |
|
Thanks for testing the VPP settings on your GEN4 inverter. Glad it all seems to work. I will now create a PR to have this incorporated into the solax-modbus integration. Unsure why your battery charging power is limited to 3000w. Maybe try setting the VPP inverter power to 100, to see if the 3000w is a hard limit or it goes up to 6000w. Also, unsure why you see fairly constant low charging. Does your system include Solar panels. Do you see the same thing at night? Could it be some type of offset for self consumption. |
|
Having solar panels may explain the fairly constant low charging during the day if it was overcast. What VPP time did you use? You had 0 in your post. Battery charge rates for me reduce between about 97% and 100% SOC. This would explain some of the reduction in charge rates you observed. If you graph SOC along with battery charge power, you maybe able to see a pattern to determine at what SOC the charge rate changes. |
|
Safety Feature near 100% SOC (Tapering): When a battery is near full capacity, it becomes harder for the lithium ions to be absorbed into the anode. If high-speed charging continues, the excess energy turns into heat, which can cause internal damage, reduce life, or lead to thermal runaway. The BMS reduces the current to prevent this. |






Uh oh!
There was an error while loading. Please reload this page.
Since the recent solax modbus update,I have been using VPP registers for my GEN3 Growatt inverter to control battery first / grid first. This all works well.
Background information at
#1631
and
#1759
I didn’t include VPP registers for GEN4 inverters as I could not test it. I have now updated the plugin_growatt.py file to include the registers for GEN4 inverters and would welcome anyone with a GEN4 inverter to test this before I submit an new PR.
Attached is the plugin_growatt.py file. Any feedback would be great.
plugin_growatt.py
All reactions