All Courses
All Courses
Courses by Software
Courses by Semester
Courses by Domain
Tool-focused Courses
Machine learning
POPULAR COURSES
Success Stories
Aim: To make a MATLAB script for the mathematical model of lead acid battery. Software used: MATLAB R2020a Introduction: The lead–acid battery was invented in 1859 by French physicist Gaston Planté and is the earliest type of rechargeable battery. Despite having a very low energy-to-weight ratio and…
GANNOJI SRIKANTH CHARY
updated on 09 Nov 2020
Aim:
To make a MATLAB script for the mathematical model of lead acid battery.
Software used:
MATLAB R2020a
Introduction:
The lead–acid battery was invented in 1859 by French physicist Gaston Planté and is the earliest type of rechargeable battery. Despite having a very low energy-to-weight ratio and a low energy-to-volume ratio, its ability to supply high surge currents means that the cells have a relatively large power-to-weight ratio.
The battery which uses sponge lead and lead peroxide for the conversion of the chemical energy into electrical power, such type of battery is called a lead acid battery. The lead acid battery is most commonly used in the power stations and substations because it has higher cell voltage and lower cost.
Lead-acid batteries use lead as annode material and lead dioxide as a cathode material and the Sulphuric acid is used as a electrolyte. Absorbed glass mat (AGM) is used as a separator.
The chemical reaction of Lead-acid battery is PbO2+Pb+H2SO4⇔2PbSO4+2H2O
Working Principle of Lead Acid Battery:
When the sulfuric acid dissolves, its molecules break up into positive hydrogen ions (2H+) and sulphate negative ions (SO4—) and move freely. If the two electrodes are immersed in solutions and connected to DC supply then the hydrogen ions being positively charged and moved towards the electrodes and connected to the negative terminal of the supply. The SO4— ions being negatively charged moved towards the electrodes connected to the positive terminal of the supply main (i.e., anode).
Each hydrogen ion takes one electron from the cathode, and each sulphates ions takes the two negative ions from the anodes and react with water and form sulfuric and hydrogen acid.
The oxygen, which produced from the above equation react with lead oxide and form lead peroxide (PbO2.) Thus, during charging the lead cathode remain as lead, but lead anode gets converted into lead peroxide, chocolate in colour.
If the DC source of supply is disconnected and if the voltmeter connects between the electrodes, it will show the potential difference between them. If wire connects the electrodes, then current will flow from the positive plate to the negative plate through external circuit i.e. the cell is capable of supplying electrical energy.
Chemical Action During Discharging:
When the cell is full discharge, then the anode is of lead peroxide (PbO2) and a cathode is of metallic sponge lead (Pb). When the electrodes are connected through a resistance, the cell discharge and electrons flow in a direction opposite to that during charging.
The hydrogen ions move to the anode and reaching the anodes receive one electron from the anode and become hydrogen atom. The hydrogen atom comes in contacts with a PbO2, so it attacks and forms lead sulphate (PbSO4), whitish in colour and water according to the chemical equation.
he each sulphate ion (SO4—) moves towards the cathode and reaching there gives up two electrons becomes radical SO4, attack the metallic lead cathode and form lead sulphate whitish in colour according to the chemical equation.
Chemical Action During Recharging:
For recharging, the anode and cathode are connected to the positive and the negative terminal of the DC supply mains. The molecules of the sulfuric acid break up into ions of 2H+ and SO4—. The hydrogen ions being positively charged moved towards the cathodes and receive two electrons from there and form a hydrogen atom. The hydrogen atom reacts with lead sulphate cathode forming lead and sulfuric acid according to the chemical equation.
PbSO4+2H2O+H=PbSO4+2H2SO4
SO4— ion moves to the anode, gives up its two additional electrons becomes radical SO4, react with the lead sulphate anode and form leads peroxide and lead sulphuric acid according to the chemical equation.
PbSo4+2H=H2SO4+Pb
The charging and discharging are represented by a single reversible equation given below.
The equation should read downward for discharge and upward for recharge.
Definations and Governing equations:
Open Circuit Voltage (E):
Open circuit voltage is a maximum theorital voltage that an battery can achieve. This voltage is not possible in actual conditions because of losses and internal resistance of the battery. OCV can be approximated by discharging the battery at a very low discharge rate (i.e.; around C/20).
State of Charge (SoC):
SOC of a battery is defined as the ratio of its current capacity Q(t) to the nominal capacity Qn.
SoC shows how much charge/energy is available in the battery at a given instant of time. SoC ranges from 0 to 100%.
SoC value depends on the previous behaviour(Hysteresis) of the battery and be calculated as, SoC=Q(t)Qn⋅100 where Q is the capacity.
Depth of discharge (DOD):
It shows that amount of energy removed from a battery at a given instant of time
DOD= Charge removed/Peukert's capacity
also, DOD=1−SoC
Peukert's law:
Peukert's law expresses the battery capacity with respect to the rate of discharge. The law states that the discharge capacity of the battery dereases with the increase in the rate of discharge current.
Cp=Ik⋅T
where I = Current
T= Time
k= Peukert's coefficient. This constant has a value closer to 1 (in this cas 1.045). The coefficient k corelated the current at a given time.
Charge removed:
Charge removes ia the amount of energy removed from the total stored energy in the battery. The amount of energy removed is higher than the actual amount of energy supplied to the system. The charge removed also dependes on the behaviour of the battery in an earlier time step.
CR=CRearlier−time−step+Ik⋅dt36000
Charge supplied:
Charge supplied is the actual amount of energy or charge supplied to the system from the battery. The charge supplied is always less than the charge removed and depends on the earlier time step behaviour.
R=CRearlier−time−step+Ik⋅dt3600
MATLAB Code:
%Mathematical Model of Lead-Acid battery
clear all
close all
clc
%Defind inputs
%Defining time steps in variable T
T= (0:50:500000); %Total time 10001 steps with each time space of 50 sec.
CR= zeros(1,length(T)); % Charge removes (CR)
DOD= zeros(1,length(T)); %Depth of discharge
V= zeros(1,length(T)); % Voltage
CS= zeros(1,length(T)); %Charge supplied
E= zeros(1,length(T)); % Operating circuit voltage
I=[10,50,100,150,200]; %Current in Amphers
n=1; %No.of cells
C=50; %Capacity in Ah
k=1.045; %.045 represents loss of capacity due to discharge
dT= (T(2)-T(1))* ones(1,length(T)); %Time step
R_in= (0.06/C)*n; %Internal Resistance
E(1)=2.15;
for i= 1:length(I)
V(i)=n*(2.15-I(i)*R_in);
%Define the voltage equation for OCV
for n= 2:length(T)
dT(n)= T(n)-T(1);
Cp=(I(i)^k)*(dT(n)); %Peukert's capacity
CR(n)= (CR(n-1)+(dT(n)*(I(i)^k))/3600);
DOD(n)=(CR(n)/Cp);
E(n)=2.15-DOD(n)*(2.15-1.75);
V(n)=E(n)-I(i)*R_in;
if DOD(n)>0.99
E(n)=0;
V(n)=0;
end
if DOD(n)>1
DOD(n)=1;
end
if E(n)>0
CS(n)=CS(n-1)+((I(i)*dT(n))/3600);
else
CS(n)= CS(n-1);
end
end
figure(1)
hold on
plot(DOD,V)
xlabel('DOD')
ylabel('Voltage')
end
plot(DOD, E)
legend('E-OCV','V-Voltage','I=10A','I=50A','I=150A','I=200A')
grid on
figure(2)
plot(DOD,E)
hold on
plot(DOD, V)
legend('E-OCV','V-Voltage')
xlabel('CR')
ylabel('Voltage')
grid on
figure(3)
plot(CR,E)
hold on
plot(CR, V)
legend('E-OCV','V-Voltage')
xlabel('CR')
ylabel('Voltage')
grid on
figure(4)
plot(CS,E)
hold on
plot(CS, V)
legend('E-OCV','V-Voltage')
xlabel('CS')
ylabel('Voltage')
grid on
Procedure:
Results:
Open circuit voltage (E) & Battery discharge voltage (V) Vs Depth of discharge (DOD):
Open circuit voltage (E) & Battery discharge voltage (V) Vs Depth of discharge (DOD) at different rates:
Open circuit voltage (E) & Battery discharge voltage (V) Vs Charge Supplies (CS):
Open circuit voltage (E) & Battery discharge voltage (V) Vs Charge removed (CR):
Conclusion:
Hence created a MATLAB script for the mathematical model of lead acid battery.
Referance:
Leave a comment
Thanks for choosing to leave a comment. Please keep in mind that all the comments are moderated as per our comment policy, and your email will not be published for privacy reasons. Please leave a personal & meaningful conversation.
Other comments...
Control logic of a “washing machine” using Stateflow and “Gear shift”
Aim: Implement control logic of a “washing machine” using Stateflow. Make a Simulink chart for the “Gear shift” logic. Software used: MATLAB R2020a_Simulink Theory: 1. Given conditions for "washing machine" Stateflow: If the power supply is available,…
12 Dec 2021 01:36 PM IST
Week 2 Railwheel and Track
Aim: To Multiply the bearing load by 5 times and compare the results with the load of 100000 N Geometry: Contacts: Applied Frictional contact between wheel and rail and Frictionalless contact between shaft and wheel. …
25 Nov 2021 03:59 PM IST
Week 4 -Wire Bending Challenge
Aim: to perform an analysis to simulate the bending of a wire in ANSYS by using Copper Alloy (Non-Linear), Aluminium Alloy (Non-Linear), and Magnesium Alloy (Non-Linear) for the wire alone. Geometry: Contacts: …
25 Nov 2021 06:04 AM IST
Week 7-Long Piston With Cam
Aim: To perform a transient analysis on a piston and cam mechanism model with Frictionless contact Fractional contact with a coefficient of friction as 0.1 Frictional contact with a coefficient of friction as 0.2 Software used: …
30 Oct 2021 09:33 AM IST
Related Courses
Skill-Lync offers industry relevant advanced engineering courses for engineering students by partnering with industry experts.
© 2025 Skill-Lync Inc. All Rights Reserved.