Coulomb Counting Calculation of the battery SoC

6 visualizaciones (últimos 30 días)
Trung Q. Nguyen
Trung Q. Nguyen el 16 de Nov. de 2020
Comentada: Gokul Gopakumar el 14 de En. de 2024
How to calculate or estimate the battery SoC by Coulomb Counting?

Respuesta aceptada

Ameer Hamza
Ameer Hamza el 16 de Nov. de 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 comentarios
Mustafa Ahmed
Mustafa Ahmed el 10 de Abr. de 2021
Q=cumtrapz(ı,t)
Gokul Gopakumar
Gokul Gopakumar el 14 de En. de 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?

Iniciar sesión para comentar.

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by