Open UKHarj opened 1 month ago
Note the 3 kwh AC charging is apparently the limit allowed in the UK and is set up by my installer
Not quite sure I follow what the issue with Predbat is, but on the point above about 3kWh AC charging limit, there isn't any such UK charging limit to my knowledge. I have two 2.6kWh inverters and can charge both batteries at 5.2kWh import, and if the oven, washing machine, etc is on, I've seen 12kWh being imported before now.
It may be that your DNO fuse is quite small and that's what the installer is referring to? My fuse is 100A, and if yours is substantially smaller then you can get the DNO to replace it.
But 3kWh sounds way too low. If you put the oven on and the kettle at the same time you will draw more than 3kWh from the grid so I really don't know what your installer is referring to.
There are grid export limits and if you didn't get a G99 approval then you will be limited to 3.6kWh of export, but that's not related to import.
Thanks for coming back to me.
I have a 100A fuse so it's not an issue with my electrics. The 3kwh limit is applied by Huawei. It's a 10kwh battery and has a 3kwh charge limit, it normally takes 3 hrs 45 mins to charge. I can change the battery from sunlight at 5 kWh and discharge to loads at 5 kWh. However in the yaml I need to set the 3 kWh rate to allow the plan to have sufficient time to charge the battery (3 hrs 45 mins). The issue is that the 3kwh rate setting overrides the DC charging and load discharging DOWN to 3 kwh as well.
On Thu, 5 Sept 2024, 16:54 Geoffrey Coan, @.***> wrote:
Note the 3 kwh AC charging is apparently the limit allowed in the UK and is set up by my installer
Not quite sure I follow what the issue with Predbat is, but on the point above about 3kWh AC charging limit, there isn't any such UK charging limit to my knowledge. I have two 2.6kWh inverters and can charge both batteries at 5.2kWh import, and if the oven, washing machine, etc is on, I've seen 12kWh being imported before now.
It may be that your DNO fuse is quite small and that's what the installer is referring to? My fuse is 100A, and if yours is substantially smaller then you can get the DNO to replace it.
But 3kWh sounds way too low. If you put the oven on and the kettle at the same time you will draw more than 3kWh from the grid so I really don't know what your installer is referring to.
There are grid export limits and if you didn't get a G99 approval then you will be limited to 3.6kWh of export, but that's not related to import.
— Reply to this email directly, view it on GitHub https://github.com/springfall2008/batpred/issues/1431#issuecomment-2332097912, or unsubscribe https://github.com/notifications/unsubscribe-auth/BJ43WOLIUQO67TFWZ7EZEZLZVB5CBAVCNFSM6AAAAABNWXEX6KVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDGMZSGA4TOOJRGI . You are receiving this because you authored the thread.Message ID: @.***>
Can you share your apps.yaml config to see if there's anything in the way you've set these limits?
pred_bat: module: predbat class: PredBat
prefix: predbat
timezone: Europe/London
currency_symbols:
'p'
threads: 4
#
#
# load_today:
# num_inverters: 1 inverter_type: "HU" #
balance_inverters_seconds: 0 #
charge_rate:
soc_max:
charge_start_service: huawei_solar.forcible_charge_soc charge_stop_service: huawei_solar.stop_forcible_charge discharge_start_service: huawei_solar.forcible_discharge_soc discharge_stop_service: huawei_solar.stop_forcible_charge
device_id: 2669d9aa48778272230354f5fdde33a3
inverter_limit:
6000.0
battery_rate_max:
3000
clock_skew: 0
solcast_host: 'https://api.solcast.com.au/' solcast_api_key: nTTY1uasx2lqSqkhqP5qGXqmDPtf4S8V solcast_poll_hours: 3
pv_forecasttoday: re:(sensor.(solcast|)(pvforecast|)forecast_today) pv_forecasttomorrow: re:(sensor.(solcast|)(pvforecast|)forecast_tomorrow) pv_forecastd3: re:(sensor.(solcast|)(pvforecast|)forecast_(day_3|d3)) pv_forecastd4: re:(sensor.(solcast|)(pvforecast|)forecast_(day_4|d4))
num_cars: 0
metric_octopus_import: 're:(sensor.(octopusenergy|)electricity[0-9a-z]+[0-9a-z]+_current_rate)' metric_octopus_export: 're:(sensor.(octopusenergy|)electricity[0-9a-z]+[0-9a-z]+_export_current_rate)'
metric_standing_charge: 're:(sensor.(octopusenergy|)electricity[0-9a-z]+[0-9a-z]+_current_standing_charge)'
#
#
days_previous:
7
days_previous_weight:
1
forecast_hours: 48
battery_scaling: 1.0
import_export_scaling: 1.0
export_triggers:
Its very hard to follow the file pasted in like that as github has assumed some of the line with # are headings rather than comments.
Can you either edit the comment above and put ``` on a line before and after the apps.yaml which means it will be treated as text and be much more readable, or upload the file as an attachment to github (probably need to rename it to a .txt or .log extension first)
if it helps here is a screenshot from the Huawei software. The battery has setting for charge and discharge through to 5,000 kwh, however from AC the charge is limited to 3,000. Ideally the apps.yaml could have two entries, one for AC charge and one for DC. That way the plan would know that the AC charge will run at 3,000 kwh and the DC could charge at 5,000 and also discharge to loads at 5,000 maximum.
In the apps.yaml I have specified the charge/discharge rate as 3 kwh. However this is to force the plan to ensure it calculates this charging rate in the plan. My battery supports DC charging at 5 kwh and discharging at 5 kwh. Note the 3 kwh AC charging is apparently the limit allowed for Huawei batteries and cannot be exceeded. I've confirmed this in other Huawei forums, so in summary AC charging is limited to 3kwh.
The 3 kwh setting from the predbat yaml overrides and reduces the DC charging and discharging from 5kwh to 3kwh when the sun is shining or power drawn from the battery, something I want to avoid.
I would like the config to be amended so that grid charging is set at 3 kwh and the DC charging/charging is left at 5 kwh.