You are on page 1of 5

Question :

I meet with a difficulty how can I approach to solve this problem.

Could you give me a solution?

HW#2-1 Lumped thermal model of battery cell mco dT =-HAT-T.)+Q (where


T(0)=T) dt 1. Solve the above energy conservation equation of battery cell. Note
the solution consists of homogeneous solution and particular solution. 2. When the
model parameters are known as follows, plot the temperature profile according to
time. Use computer to plot your graph m=0.39 kg C = 1.02 kJ/kg-K Q= 3W h = 20
W/m²K
Show transcribed image text HW#2-1 Lumped thermal model of battery cell mco
dT =-HAT-T.)+Q (where T(0)=T) dt 1. Solve the above energy conservation
equation of battery cell. Note the solution consists of homogeneous solution and
particular solution. 2. When the model parameters are known as follows, plot the
temperature profile according to time. Use computer to plot your graph m=0.39 kg
C = 1.02 kJ/kg-K Q= 3W h = 20 W/m²K

Answer :
clc
clear all

m = 0.39;
cp = 1020;
Q = 3;
h = 20;
Ta = 25; % ambient temperature (put your value)
T0 = 25; % initial temperature
A = 0.5; % surface area ( in m^2 )

t = linspace(0,300); % time array

% temperature at time t
T = (T0-Ta-Q/h/A)*exp(-h*A*t/m/cp)+(Ta+Q/h/A);

plot(t,T)
xlabel('time (sec)')
ylabel('T(t)')
grid on

You might also like