Coulomb Counting Calculation of the battery SoC

10 views (last 30 days)
How to calculate or estimate the battery SoC by Coulomb Counting?

Accepted Answer

Ameer Hamza
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
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?

Sign in to comment.

More Answers (0)

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!