You are on page 1of 4

Application of Bessel Equation

Heat Transfer in a Circular Fin


Bessel type differential equations come up in many engineering applications such as heat
transfer, vibrations, stress analysis and fluid mechanics. We now consider one particular
example in heat transfer that involves the analysis of circular fins that are commonly used to
cool the cylinders of internal combustion engines and piping systems. A typical schematic of a
single circular fin on a pipe is shown in the figure below. The fin is designed to add additional
surface area in order to help cool the pipe.







The fin provides heat to transfer from the pipe to a constant ambient air temperature T

. We
now wish to establish the differential equation relating temperature in the fin as a function of
the radial coordinate r. The governing equation comes from an energy balance on a differential
ring element of the fin as shown in the figure below.






The ring element has volume rdrt V t 2 = . The energy balance on this differential volume can
be stated as thermal energy conducted into V = thermal energy conducted out of V + energy
lost to surroundings by convection. This can be expressed mathematically by
Pipe
Fin
r
T


r
dr
t
ring element
r
o
r
i
loss) n (convectio out) n (conductio in) n (conductio
) (

+
+ = T T hA
dr
dT
kA
dr
dT
kA
c
dr r r
(1)
where the conduction terms are expressed by Fouriers law and the convection loss is given by
Newtons law of cooling. Again we skip over some of the heat transfer details, and you will
learn more about these in our heat transfer course MCE 348. The other parameters are defined
by rt A t 2 = and ) 2 ( 2 rdr A
c
t = , k = thermal conductivity , and h = convective heat transfer
coefficient. Substituting in the area parameters and rearranging gives
0 ) (
2
=

+
T T
tk
hr
dr
dr
dT
r
dr
dT
r
r
dr r
(2)
In the limit as dr 0, this relation becomes
0 ) (
2
=
|
.
|

\
|

T T
tk
hr
dr
dT
r
dr
d
(3)
and this can be written as
0 ) (
2
2
2
2
2
= +

T T
tk
hr
dr
dT
r
dr
T d
r (4)
which is a modified Bessel differential equation of order 0. Note that the term modified is used
because the third term in the equation is negative rather than positive.
Equation (4) can be simplified and put in standard form if we make a couple of changes in the
problem variables. First we introduce the shifted temperature and let

= T T u . Next we
make a change in the independent variable and let r tk h i r / 2
~
= with 1 = i . Under these
two modifications, relation (4) becomes
0
~
~
~
~
~
2
2
2
2
= + + u
u u
r
r d
d
r
r d
d
r (5)
which is the standard form of the Bessel equation of order zero (see Kreyszig, p 187). Thus the
solution to the heat transfer problem is given by
) ( ) (
2 1
iMr Y C iMr J C
o o
+ = u (6)
where tk h M / 2 = and C
1
and C
2
are arbitrary constants to be determine by two boundary
conditions that generally specify the temperature or its gradient at the inner or outer radius of
the fin. Commonly a solution form like result (6) with Bessel functions having imaginary
arguments is redefined in terms of a new set called modified Bessel functions. Since we can get
by with solution form (6), we will not further discuss this modification.
Consider the specific problem with temperature boundary conditions
10 ) ( , 100 ) ( = =
o i
r r u u (7)
Using the general solution (6) into these two conditions gives
10 ) ( ) (
100 ) ( ) (
2 1
2 1
= +
= +
o o o o
i o i o
iMr Y C iMr J C
iMr Y C iMr J C

These boundary condition equations represent two equations for the two constants C
1
and C
2
.
The equation system can be easily solved and conveniently expressed using Cramers Rule (see
Kreyszig, p 298) to be
) ( ) ( ) ( ) (
) ( 100 ) ( 10
) ( ) ( ) ( ) (
) ( 10 ) ( 100
2
1
i o o o o o i o
o o i o
i o o o o o i o
i o o o
iMr Y iMr J iMr Y iMr J
iMr J iMr J
C
iMr Y iMr J iMr Y iMr J
iMr Y iMr Y
C

=
(8)
Thus the solution for the temperature distribution in the fin is now completed as given by
relations (6) and (8). As is typical we want to see the results graphically and now use MATLAB
to evaluate and plot the temperature distribution for the particular case with 50 =

T , 1 =
i
r ,
and 5 =
o
r , and with three different values of M. The results are given in the figure below and
the associated MATLAB code is listed in the text box.






1 1.5 2 2.5 3 3.5 4 4.5 5
40
60
80
100
120
140
160
r
F
i
n

T
e
m
p
e
r
a
t
u
r
e
,

T
Temperatrue Distribution in Circular Fin
M=0.1
M=0.5
M=1.0




% MCE 372 Engineering Analysis Example Code
% Prof. M. Sadd
% Circular Fin Example
clc;clf;clear all
ri=1;ro=5;Tinf=50;
r=[ri:0.1:ro];
for M=[0.1,0.5,1.0]
Ji=besselj(0,i*M*ri);Jo=besselj(0,i*M*ro);
Yi=bessely(0,i*M*ri);Yo=bessely(0,i*M*ro);
C1=(100*Yo-10*Yi)/(Ji*Yo-Jo*Yi);
C2=(10*Ji-100*Jo)/(Ji*Yo-Jo*Yi);
th=Tinf+C1*besselj(0,i*M*r)+C2*bessely(0,i*M*r);
plot(r,th,'k','linewidth',2)
xlabel('r'),ylabel('Fin Temperature, T')
title('Temperatrue Distribution in Circular Fin')
grid on;hold on
end
text(2.1,110,'M=0.1')
text(2.6,85,'M=0.5')
text(3.1,62,'M=1.0')

You might also like