second version

This commit is contained in:
Dusan Vojacek
2026-04-03 14:23:16 +02:00
parent 897b95f728
commit 9f4126946d
105 changed files with 9738 additions and 1470 deletions

View File

@@ -0,0 +1,11 @@
-- Tune battery economics for planning behavior:
-- - lower reserve SOC to allow economically justified discharge
-- - lower degradation cost to avoid overly conservative cycling
--
-- Idempotent update for currently deployed sites.
UPDATE ems.asset_battery
SET
reserve_soc_percent = 10.00,
degradation_cost_czk_kwh = 0.1500
WHERE reserve_soc_percent <> 10.00
OR degradation_cost_czk_kwh <> 0.1500;