Coulomb Counting Calculation of the battery SoC
23 次查看(过去 30 天)
显示 更早的评论
How to calculate or estimate the battery SoC by Coulomb Counting?
0 个评论
采纳的回答
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
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 Center 和 File Exchange 中查找有关 Propulsion and Power Systems 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!