Freeze exporting clarification #3555
-
|
Can someone help me understand freeze export? The docs state:
However I currently see this in my plan textual description:
How can it charge to 99% if charging is disabled? I did see a post here about this which stated:
I have a sigenergy system though which is controlled by an automation, that sets the following: # Freeze Discharging
# Docs:
# Freeze exporting (mapped to Freeze Discharging in sigenergy_sigenstor.yaml) - The battery is in demand mode,
# but with charging disabled. The battery or solar covers the house load. As charging is disabled, if there is
# excess solar generated, the current SoC level will be held and the excess solar will be exported. If there is
# a shortfall of generated solar power to meet the house load, the battery will discharge to meet the extra load.
# In Sigenergy, this is effectively "self consumption" mode with charging prohibited
- conditions:
- condition: state
entity_id: input_select.predbat_requested_mode
state: "Freeze Discharging"
sequence:
- service: number.set_value
data_template:
entity_id: number.sigen_plant_ess_charge_cut_off_state_of_charge
value: 0
- service: number.set_value
data_template:
entity_id: number.sigen_plant_ess_discharge_cut_off_state_of_charge
value: 0
- service: number.set_value
data_template:
entity_id: number.sigen_plant_grid_import_limitation
value: 0As you can see, the charge and discharge cut off state of charge is 0, presumably so the battery can discharge but not charge.
Which one is right? :) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
The definitive explanation of how Predbat plans and expects for each battery state to work is as per the documentation https://springfall2008.github.io/batpred/what-does-predbat-do/#predbat-modes
I am pretty sure that this is a minor bug and the SoC limit of 99% is what is used internally within Predbat code to represent the freeze export and on the predbat plan this dummy 99% is now supressed but it looks like the text description of the plan missed this suppression out. If I do a freeze export now, my plan doesn't show 99%:
The documentation is right. That issue was 18 months ago and a lot has happened since then to Predbat, including adding support for SigEnergy inverters! I'll look at the text plan issue separately |
Beta Was this translation helpful? Give feedback.


The definitive explanation of how Predbat plans and expects for each battery state to work is as per the documentation https://springfall2008.github.io/batpred/what-does-predbat-do/#predbat-modes
I am pretty sure that this is a minor bug and the SoC limit of 99% is what is used internally within Predbat code to represent the freeze export and on the predbat plan this dummy 99% is now supressed but it looks like the text description of the plan missed this suppression out.
I…