ME 353 Heat Transfer 1

M.M. Yovanovich

EX1P5.MWS

Example 1.5 of 4th edition of Incropera and DeWitt, 1996.

In the first case the temperature T1 is unknown, and in

the second case the temperature T2 is unknown.

Compute the heat transfer rates by conduction, convection and

radiation for the second case. Compare the relative magnitude

of Qconvection/Qconduction.

> restart:

Assume that the heat transfer area is 1 m^2.

Example 1.

> case1:= (A = 1*m^2, L = 0.15*m, k = 1.2*W/(m*K),
h = 20*W/(m^2*K), epsilon = 0.8, T1 = T1, T2 = 373*K, Tinfty = 298*K, Tsur = 298*K, sigma = 5.67*10^(-8)*W/(m^2*K^4));

[Maple Math]
[Maple Math]

Fourier's Law of Conduction.

> Qcond:= k*A*(T1 - T2)/L; [Maple Math]

[Maple Math]

Newton's Law of Cooling.

> Qconv:= h*A*(T2 - Tinfty); [Maple Math]

[Maple Math]

Stefan-Boltzmann Law of Radiation.

> Qrad:= epsilon*sigma*A*(T2^4 - Tsur^4);

[Maple Math]

Heat balance at the right boundary of the wall.

> HeatBalance:= Qcond - Qconv - Qrad = 0;

[Maple Math]

Find the temperature at the left boundary.

> T1:=
evalf(simplify(solve(subs(case1, HeatBalance), T1)), 5);

[Maple Math]

Example 2.

For the next case we will find T2 when all other parameters are given.

For this case I will not specify the units of the parameters.

> case2:=
(T1 = 350 + 273, T2 = T2, A = 1, L = 0.15, k = 1.2, h = 20, epsilon = 0.8, Tinfty = 25 + 273, Tsur = 25 + 273,
sigma = 5.67e-8);

[Maple Math]
[Maple Math]

Find the temperature at the right boundary.

> T2:= fsolve(subs(case2, HeatBalance), T2);

[Maple Math]

Take the positive value returned by the fsolve command.

> T2:= 372.4568;

[Maple Math]

Compute the heat transfer rates for the second case.

> Qcond:= evalf(subs(case2, Qcond), 5)*W;

[Maple Math]

> Qconv:= evalf(subs(case2, Qconv), 5)*W;

[Maple Math]

> Qrad:= evalf(subs(case2, Qrad), 5)*W;

[Maple Math]

> evalf(Qconv/Qcond, 4);

[Maple Math]

In case 2 the heat transfer rate by convection accounts for approximately

75 % of the overall heat transfer rate.