Example 9.6-1 Composite Cylindrical Walls

Bird,Stewart, and Lightfoot pg.286









     This problem deals with conduction through a composite cylindrical wall made up of three different layers, with three separate thicknesses and thermal conductivities.  This example is an extension of the main example in section 9.6 which deals with a recta linear system.  The diagram below illustrates a fluid within a cylinder at temperature Ta that is transferring heat across a composite cylinder wall to a cooler fluid at temperature Tb outside the cylinder.  The goal of this problem is to combine the different resistances of the layers into one total resistance.


 

     In order to find the combined resistance of the three layers, one must first compute the resistance of each individual layer.  The layers are of thickness (r1-r0), (r2-r1), and (r2-r3) and have thermal conductivities k10, k12, k23.  The first layer, "01" is in direct contact with the fluid inside the cylinder at temperature Ta, and the outermost layer "23" is in direct contact with the surrounding fluid at Tb.  The heat flux is known to be at steady state, and Newton's "law of cooling" applies at the fluid-solid interfaces at r=r0 and r=r3.  The process of finding the individual resistances and combining them into an overall resistance is shown in the following Maple session.

> restart;

First solve a the generic differential equations for one shell, then generalize it and compute the equations for every shell. Label the inside conditions "A" and the outside conditions "B" for ANY shell.

Fourier's Law of Heat Conduction

> q:=(r,k)->-k*D(T)(r);

[Maple Math]

Thermal Energy Balance for a cylindrical shell of volume 2*[Maple Math]*r*L*[Maple Math]r

> SurfArea:=r->2*Pi*r*L;

[Maple Math]

> Q:=(r,k)->q(r,k)*SurfArea(r);

[Maple Math]

> balance:=Q(r,k)-Q(r+dr,k)=0;

[Maple Math]

Divide the energy balance by 2*[Maple Math]*L*k*[Maple Math]r and take the limit as [Maple Math]r approaches 0.

> deq:=limit(lhs(balance)/(2*Pi*L*k*dr),dr=0)=0;

[Maple Math]

Solve the differential equation with the known temperatures on the inside wall, and outside wall.

> s:=dsolve({deq,T(rA)=TA,T(rB)=TB},T(r));

[Maple Math]

> assign(s);T:=unapply(T(r),r);

[Maple Math]

Plug the results into the formula for the heat flux, and solve for Ta-Tb.

> q(r,k);

[Maple Math]

Because the system is in steady state and not accumulating any heat, the total flux through every wall is constant. This constant flux can be called 2*[Maple Math]*r0*L*q0, which is the flux at the inner wall.  Since both terms contain 2*[Maple Math]*L,  r*q is the same for all surfaces.

> geneqn:=q(r,kab)*r=q0*r0;

[Maple Math]

> gensoln:=TA-TB=solve(geneqn,(TA-TB));

[Maple Math]

Generalize the equation, for each of the 3 layers.

> T:=array(0..3,[]): r:=array(0..3,[]):

> eqs:=array(0..4,[]): ks:=array(0..3,0..3,[]):

> for j from 0 to 2 do

> eqs[j+1]:=T[j]-T[j+1]=r[0]*q0*(ln(r[j+1])-ln(r[j]))*1/ks[j,(j+1)];

> od;

Equations 9.6-24 through 9.6-26 are produced.

[Maple Math]

[Maple Math]

[Maple Math]

Next, Newton's Law of cooling is used to find relationships between the two fluid-solid interfaces. Here "a" and"b" are not longer generic descriptors. "a" represents the conditions inside the tube, and "b" represents the conditions outside the tube.

> eqs[0]:=Ta-T[0]=q0/h0;

[Maple Math]

To find the heat flux at the outer wall in terms of q0, we again use the steady state condition.

> stdystate:=q3*2*Pi*r[3]*L=q0*2*Pi*r[0]*L;

[Maple Math]

> q3:=solve(stdystate,q3);

[Maple Math]

> eqs[4]:=T[3]-Tb=q3/h3;

[Maple Math]

Sum all five equations to get a result in terms of the known temperatures Ta and Tb.

> sumeqns:=sum(eqs[k],k=0..4);

[Maple Math]

Now, q0 and Q0 can be solved for in terms of our two known temperatures.

> q0:=solve(sumeqns,q0);

[Maple Math]
[Maple Math]
[Maple Math]

> Q0:=SurfArea(r[0])*q0;

[Maple Math]
[Maple Math]
[Maple Math]
[Maple Math]

The "overall heat transfer coefficient based on the inner surface" called U0 is computed. Unlike a
recta linear system, the overall heat transfer coefficient must be based on the surface of one of the
layers. This is because the surface are of each consecutive layer is larger than the previous, and
conversely the relative heat flux q, becomes smaller.

> U0:=(Q0/((Ta-Tb)*SurfArea(r[0])));

[Maple Math]
[Maple Math]
[Maple Math]

The reciprocal of U0 looks very similar to the reciprocal of U0 shown in the book if the log terms are combined.

> solution:=expand(1/U0);

[Maple Math]

The answer is checked with the book, and, after some simplification, is found to agree.

> U0book:= r[0]^(-1)*( (1/(r[0]*h0)+sum(ln(r[i+1]/r[i])/ks[i,(i+1)],i=0..2)+(1/(r[3]*h3))) )^(-1);

[Maple Math]

Help Maple simplify by expanding the ln terms in the books answer.

> for n from 0 to 2 do

> U0book:=algsubs(ln(r[n+1]/r[n])=ln(r[n+1])-ln(r[n]),U0book):

> od:

> simplify(U0-U0book);

[Maple Math]
 
 

Numerical Example- A steel pipe surrounded by cork and an insulating brick-like material

Re-enter the formula for U0 (use books form)

> U0:= r[0]^(-1)*( (1/(r[0]*h0)+sum(ln(r[i+1]/r[i])/ks[i,(i+1)],i=0..2)+(1/(r[3]*h3))) )^(-1);

[Maple Math]



Assume a 1 ft. diameter pipe is surrounded by 1/2 inch of cork which is then surrounded by
1/2 inch of a brick like material.

Inner radius and thermal conductivity of a 1 ft diameter steel pipe

> r[0]:=.5*ft; ks[0,1]:=26.1*Btu/(hr*ft*F);

[Maple Math]

[Maple Math]

Inner radius and thermal conductivity of 1/2 inch cork layer

> r[1]:=r[0]+.5*ft; ks[1,2]:=.03*Btu/(hr*ft*F);

[Maple Math]

[Maple Math]

Inner radius and thermal conductivity of the 1/2 inch insulating brick layer

> r[2]:=r[1]+.5*ft; ks[2,3]:=.9*Btu/(hr*ft*F);

[Maple Math]

[Maple Math]

Outer radius of the insulating brick layer

> r[3]:=r[2]+.5*ft;

[Maple Math]

Assume a liquid in the pipe, and air around the pipe. Reasonable heat transfer coefficients are chosen.

> h0:=200*Btu/(hr*ft^2*F); h3:=120*Btu/(hr*ft^2*F);

[Maple Math]

[Maple Math]

Assume the liquid is at 200 F and the air is at 60 F

> Ta:=200*F; Tb:=60*F;

[Maple Math]

[Maple Math]

This is the "over-all heat transfer coefficient"

> U0;

[Maple Math]




Note:
 

The general equation for U0, eq. 9.6-31, is found by observing the pattern in U0 for this problem and noting that ln terms in the denominator are the ln of the outer radius over the inner radius all over the heat transfer coefficient for the layer.  Additionally, the final term in the denominator is the reciprocal of the outermost radius multiplied by the outer heat transfer coefficient.  See pg. 288 for a discussion of this.