Coulomb Counting Calculation of the battery SoC
10 views (last 30 days)
Show older comments
Trung Q. Nguyen
on 16 Nov 2020
Commented: Gokul Gopakumar
on 14 Jan 2024
How to calculate or estimate the battery SoC by Coulomb Counting?
0 Comments
Accepted Answer
Ameer Hamza
on 16 Nov 2020
Coulomb counting is basically the integral of the current w.r.t. time. So if you have current values and corresponding time values, then you can use cumtrapz()
t; % time
I; % current values
Q = cumtrapz(t, I)
3 Comments
Gokul Gopakumar
on 14 Jan 2024
Hello,
I had a similar question regarding the Coulomb Counting method. I have a table of test data with a charging phase (CCCV), a rest phase (2hr) and dynamic discharge profile (WLTP) . The time is in 'hh:mm:ss.SSS' format. So how will the code change in this case?
More Answers (0)
See Also
Categories
Find more on Propulsion and Power Systems in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!