Skip to content

Commit

Permalink
Updates to samples/matlab/lithium_ion_battery.m
Browse files Browse the repository at this point in the history
Added some context and higher level functionality  to
lithium_ion_battery.m sample, such that it now uses some of the
already-present functionality to calculate and plot the open
circuit voltage for a lithium ion battery for a range of active
material compositions.
  • Loading branch information
decaluwe committed Feb 19, 2019
1 parent dd84963 commit 466fca6
Showing 1 changed file with 78 additions and 39 deletions.
117 changes: 78 additions & 39 deletions samples/matlab/lithium_ion_battery.m
Original file line number Diff line number Diff line change
@@ -1,20 +1,47 @@
function E_cell = lithium_ion_battery(X_Li_ca, X_Li_an, T, P, I_app, R_elyt)
% Returns the cell voltage (in Volt) of a lithium-ion cell for a given cell
% current and active material lithium stoichiometries.

% This example file calculates the open-circuit voltage for a lithium-ion
% battery over a range of compositions.
%
% The thermodynamics are based on a graphite anode and a LiCoO2 cathode,
% modeled using the 'BinarySolutionTabulatedThermo' class.
%
% Note that the function 'E_cell' below has even greater capabilities than
% what we use, here. It calculates the steady state cell voltage, at a
% given composition and cell current, for a given electrolyte ionic
% resistance. This functionality is presented in greater detail in the
% reference (which also describes the derivation of the
% BinarySolutionTabulatedThermo class):
%
% Reference:
% M. Mayur, S. DeCaluwe, B. L. Kee, W. G. Bessler, "Modeling
% thermodynamics and kinetics of intercalation phases for lithium-ion
% batteries in Cantera", under review at Electrochimica Acta.

% For the sake of simplicity, we're going to assume that the anode and
% cathode capacities are perfectly balanced (i.e. if the cathode lithium
% content is X percent of it's max possible (i.e. its capacity), then we
% will assume that the anode is at 1-X percent. Without loss of
% generality, we will define the anode composition:

% The routinen below returns the cell voltage (in Volt) of a lithium-ion
% cell for a given cell current and active material lithium stoichiometries.
%
% Input:
% - stoichiometries X_Li_ca and X_Li_an [-] (can be vectors)
% - temperature T [K]
% - pressure P [Pa]
% - externally-applied current I_app [A]
% - electrolyte resistance R_elyt [Ohm]
%
% Reference:
% M. Mayur, S. DeCaluwe, B. L. Kee, W. G. Bessler, "Modeling
% thermodynamics and kinetics of intercalation phases for lithium-ion
% batteries in Cantera", under review at Electrochimica Acta.

X_Li_an = [0.005:0.025:0.995];
X_Li_ca = 1 - X_Li_an;

I_app = 0;
R_elyt = 0;
T = 300;
P = oneatm;

global F
% Parameters
inputCTI = 'lithium_ion_battery.cti'; % cantera input file name
F = 96485; % Faraday's constant [C/mol]
Expand Down Expand Up @@ -42,58 +69,70 @@
phi_s_an = 0;

% Calculate anode eletrolyte potential
phi_l_an = fzero(@(E) anode_curr(phi_s_an,E,X_Li_an(i))+I_app, 0);
phi_l_an = fzero(@(E) anode_curr(phi_s_an,E,X_Li_an(i),anode,elde,elyt,anode_interface,S_an)+I_app, 0);

% Calculate cathode eletrolyte potential
phi_l_ca = phi_l_an + I_app*R_elyt;

% Calculate cathode eletrode potential
phi_s_ca = fzero(@(E) cathode_curr(E,phi_l_ca,X_Li_ca(i))+I_app, 0);
phi_s_ca = fzero(@(E) cathode_curr(E,phi_l_ca,X_Li_ca(i),cathode,elde,elyt,cathode_interface,S_ca)+I_app, 0);

% Calculate cell voltage
E_cell(i) = phi_s_ca - phi_s_an;
end

% Let's plot the cell voltage, as a function of the cathode stoichiometry:
plot(X_Li_ca,E_cell,'linewidth',2.5)
ylim([2.5,4.3])
xlabel('Li Fraction in Cathode')
ylabel('Cell potential [V]')
set(gca,'fontsize',14)


%--------------------------------------------------------------------------
% Sub-functions
% Helper functions

% This function returns the Thermophase class instance from CTI file
function phase = importThermoPhase(inputCTI, name)
doc = XML_Node('doc', inputCTI);
node = findByID(doc, name);
phase = ThermoPhase(node);
end
function phase = importThermoPhase(inputCTI, name)
doc = XML_Node('doc', inputCTI);
node = findByID(doc, name);
phase = ThermoPhase(node);
end

% This function returns the Cantera calculated anode current (in A)
function anCurr = anode_curr(phi_s,phi_l,X_Li_an)
% Set the active material mole fraction
set(anode,'X',['Li[anode]:' num2str(X_Li_an) ', V[anode]:' num2str(1-X_Li_an)]);
function anCurr = anode_curr(phi_s,phi_l,X_Li_an,anode,elde,elyt,anode_interface,S_an)

global F

% Set the active material mole fraction
set(anode,'X',['Li[anode]:' num2str(X_Li_an) ', V[anode]:' num2str(1-X_Li_an)]);

% Set the electrode and electrolyte potential
setElectricPotential(elde,phi_s);
setElectricPotential(elyt,phi_l);
% Set the electrode and electrolyte potential
setElectricPotential(elde,phi_s);
setElectricPotential(elyt,phi_l);

% Get the net reaction rate at the cathode-side interface
r = rop_net(anode_interface).*1e3; % [mol/m2/s]
% Get the net reaction rate at the cathode-side interface
r = rop_net(anode_interface).*1e3; % [mol/m2/s]

% Calculate the current
anCurr = r*F*S_an*1;
end
% Calculate the current
anCurr = r*F*S_an*1;
end

% This function returns the Cantera calculated cathode current (in A)
function caCurr = cathode_curr(phi_s,phi_l,X_Li_ca)
% Set the active material mole fractions
set(cathode,'X',['Li[cathode]:' num2str(X_Li_ca) ', V[cathode]:' num2str(1-X_Li_ca)]);
function caCurr = cathode_curr(phi_s,phi_l,X_Li_ca,cathode,elde,elyt,cathode_interface,S_ca)

% Set the electrode and electrolyte potential
setElectricPotential(elde,phi_s);
setElectricPotential(elyt,phi_l);
global F

% Set the active material mole fractions
set(cathode,'X',['Li[cathode]:' num2str(X_Li_ca) ', V[cathode]:' num2str(1-X_Li_ca)]);

% Get the net reaction rate at the cathode-side interface
r = rop_net(cathode_interface).*1e3; % [mol/m2/s]
% Set the electrode and electrolyte potential
setElectricPotential(elde,phi_s);
setElectricPotential(elyt,phi_l);

% Calculate the current
caCurr = r*F*S_ca*(-1);
end
end
% Get the net reaction rate at the cathode-side interface
r = rop_net(cathode_interface).*1e3; % [mol/m2/s]

% Calculate the current
caCurr = r*F*S_ca*(-1);
end

0 comments on commit 466fca6

Please sign in to comment.