Coulomb Counting Calculation of the battery SoC

23 次查看(过去 30 天)
How to calculate or estimate the battery SoC by Coulomb Counting?

采纳的回答

Ameer Hamza
Ameer Hamza 2020-11-16
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 个评论
Gokul Gopakumar
Gokul Gopakumar 2024-1-14
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?

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Propulsion and Power Systems 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by