Clear Filters
Clear Filters

how can i find li-ion battery charging and discharging?

5 views (last 30 days)
Hello dear friends,
could you please hepl me to write 2 equations in matlab?
how can i modelling li-ion battery charging and discharging in matlab? how can i find SOC of the battery with below eq.
the eq.
Pb(t)= (Pb(t-1)*(1-sigma))+(Ppv(t)-(PL(t)/nu_i))*nu_b; %Charging
Pb(t)= (Pb(t-1)*(1-sigma))-((Ppv(t)/nu_i)-PL(t)); %Discharging
Pb(t-1)= 3600 %SOC at the begining Wh
%Ppv(t) = %Enegy of PV wh
%PL(t) = load %Load Demand
sigma = 2 %Self_Discharge factor
nu_b = 0.95 %Battery effeciency
nu_i = 0.9 %inverter effeciency
i also uploaded matlab file

Answers (2)

Ahmad Wahid
Ahmad Wahid on 9 Feb 2020
As far i know your PV data and demand load should be for a specific time duration( i.e 24 hours) .
for t=1:24:
Pb(t)= (Pb(t-1)*(1-sigma))+(Ppv(t)-(PL(t)/nu_i))*nu_b; %Charging
Pb(t)= (Pb(t-1)*(1-sigma))-((Ppv(t)/nu_i)-PL(t)); %Discharging
end
this will solve both equations for 24 hours

Ahmad Wahid
Ahmad Wahid on 9 Feb 2020
brother if you have find a way to solve it please provide me. i will be very thankful

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!