Question
Integration of real time data.
Hello,
I am trying to estimate soc by coulomb counting method.In coulomb counting we required integration of discharge current.I am getting accurate discharge current but unable to add them by using array. I tried using array :
float buffer[50];
float current[50];
int i;
int k;
buffer[0]=0;
buffer[i]=buffer[i]+current[k]*1.1; //Addition of current.Please give me any suggestion.
Thanks.