Files
ems/db/migration/V093__tesla_lfp_capacity.sql
Dusan Vojacek 2325bbcbd6
All checks were successful
CI and deploy / migration-check (push) Successful in 29s
CI and deploy / deploy (push) Has been skipped
Tesla LFP: kapacita 62.5 kWh (bylo 75 = LR) + default cíl 100 %
Model Y 2025 Standard RWD s LFP: menší pack, ale pravidelné 100 % je žádoucí
(balancování). Kapacita vstupuje do energy_needed a EV usage statistik.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-12 12:10:45 +02:00

12 lines
614 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
-- Tesla Model Y 2025 Standard RWD (LFP): kapacita ~62.5 kWh (v seedu bylo 75 =
-- hodnota LR varianty) a default cíl 100 % — LFP chemie pravidelné nabití na
-- 100 % vyžaduje (balancování), žádná degradační penalizace jako u NMC.
-- Kapacita vstupuje do energy_needed (target soc) × kWh a do EV usage stats.
update ems.asset_vehicle
set battery_capacity_kwh = 62.5,
default_target_soc_pct = 100,
notes = coalesce(notes, '') || ' [2026-06-12: LFP 62.5 kWh, cíl 100 % (balancování).]'
where code = 'tesla-my'
and site_id = (select id from ems.site where code = 'home-01');