tuning palnneru

This commit is contained in:
Dusan Vojacek
2026-05-04 19:04:48 +02:00
parent 405e832f8d
commit bcb05d4896
17 changed files with 713 additions and 72 deletions

View File

@@ -127,6 +127,8 @@ CREATE TABLE asset_battery (
-- planner_max_soc_percent, planner_discharge_floor_percent,
-- planner_extreme_buy_threshold_czk_kwh,
-- planner_terminal_soc_value_factor
-- V077: planner_daytime_charge_target_enabled, planner_night_baseload_buffer_percent,
-- planner_daytime_charge_price_quantile, planner_charge_commitment_penalty_czk_kwh
);
```
@@ -359,7 +361,7 @@ CREATE TABLE planning_run (
horizon_end TIMESTAMPTZ NOT NULL,
created_at TIMESTAMPTZ DEFAULT now(),
status TEXT DEFAULT 'draft', -- 'draft', 'approved', 'active', 'superseded'
solver_params JSONB,
solver_params JSONB, -- po V077: JSON z planning_engine (masks, soc_bounds, objective_terms, …)
notes TEXT
);
```