feat: Added capacity and max charge comparison to design

This commit is contained in:
2024-06-18 13:14:59 +02:00
parent cfc180cb32
commit 07a8de4034
3 changed files with 7 additions and 1 deletions

View File

@@ -12,10 +12,12 @@ namespace dlore
std::string Technology;
unsigned int CellSeriesCount;
unsigned int Capacity;
unsigned int CapacityDesign;
float Vnow;
float Vmin;
unsigned int ChargeNow;
unsigned int ChargeFull;
unsigned int ChargeFullPercentageDesign;
unsigned int ChargeFullDesign;
} typedef BatteryInfo;