-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Sungrow: Add new parameters to template #25011
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
Add maxdischargepower parameter to sungrow-hybrid meter template and implement its setting in the render section. Change order of commands in the render section for sungrow-hybrid meter template to first set the EMS mode selection register before setting the max discharge power.
Added max charge/discharge power and state of charge parameters.
Why do we need to fiddle with discharge power- because it's being set to 0? |
Sorry, comment is wrong, must be 'normal' mode. Current logic is wrong I believe. We set max discharge register to 10W in hold mode. When returning to normal mode, we need to reset it to a 'decent' value. Currently maxchargepower is used for this reset or when not set max reg value of 10.6kW. This max value is not accepted on my inverter (SH4.0RS, can only go to 6.5kW), so I'm forced to use maxchargepower. But this is one already used to limit max charge power from grid in charge mode. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| advanced: true | ||
| - name: maxchargepower | ||
| help: | ||
| en: Maximum charge power for forced charging of the battery in watts. (0 to automatically set the value of the maximum BDC rated power) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Where does BCD rating happen?
| - name: minsoc | ||
| default: 5 | ||
| - name: maxsoc | ||
| default: 100 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we need different defaults than other inverters?
Removed default values for minsoc and maxsoc.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add minSoc & maxSoc params
Add maxdischargepower & use to reset register when returning to normal mode.
Change order of commands to set EMS mode last in stead of first when returning to normal mode.