Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/predbat/predbat.py
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@
{"name": "calculate_fast_plan", "friendly_name": "Calculate plan faster (less accurate)", "type": "switch", "enable": "expert_mode", "default": False},
{"name": "calculate_second_pass", "friendly_name": "Calculate full second pass (slower)", "type": "switch", "enable": "expert_mode", "default": False},
{"name": "calculate_tweak_plan", "friendly_name": "Calculate tweak second pass", "type": "switch", "enable": "expert_mode", "default": False},
{"name": "calculate_regions", "friendly_name": "Calculate region optimisation", "type": "switch", "default": False},
{"name": "calculate_regions", "friendly_name": "Calculate region optimisation", "type": "switch", "enable": "expert_mode", "default": True},
{"name": "calculate_inday_adjustment", "friendly_name": "Calculate in-day adjustment", "type": "switch", "enable": "expert_mode", "default": True},
{
"name": "calculate_plan_every",
Expand Down
4 changes: 4 additions & 0 deletions docs/customisation.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,10 @@ charging sessions but will not reset it automatically.

See the Predbat mode setting as above for basic calculation options

**switch.predbat_calculate_regions** (_expert mode_) When True the a second pass of the initial thresholds is
calculated in 4 hour regions before forming the detailed plan. Is True by default but can be turned off in expert
mode.

**switch.predbat_calculate_fast_plan** (_expert mode_) When True the plan is calculated with a limited number of
windows to make calculations faster. When False (default) all windows are considered but planning will take a little
longer but be more accurate.
Expand Down