> |
restart; |
We used the following properties of air to solve both problems 14A.6 and 14A.9 in Bird, Stewart, & Lightfoot. The properties include viscosity, density, specific heat, and thermal conductivity.
> |
mu:=0.0190*cp;rho:=.0723*lb/ft^3;Cphat:=0.241*Btu/lb/R;k:=0.0152*Btu/hr/ft/R; |
Problem
14A.6 – Forced-convection heat transfer from an isolated sphere. (a) A solid sphere 1 in. in diameter is
placed in an otherwise undisturbed air stream, which approaches at a velocity
of 100 ft/s, a pressure of 1 atm, and a temperature
of an imbedded electric heating coil.
What must be the rate of electrical heating in cal/s to maintain the
stated conditions? Neglect
radiation and use Eq. 14.4-5. (b) Repeat the problem in (a), but use Eq. 14.4-6.
part a
start out with the given parameters in the problem
> |
l0:=0.083*ft;Tinf:=560*R;T0:=660*R;r:=.0415*ft;v0:=100*ft/s; |
first convert the velocity to feet per hour and convert the viscosity to the correct English units
> |
v:=v0*3600*s/hr;mu:=mu*2.4191*lb/ft/hr/cp; |
now calculate the Reynolds number and the Prandtl number
> |
Rey:=l0*v*rho/mu;Pr:=Cphat*mu/k; |
Now use equation 14.4-5 to solve for the Nusselt Number
> |
Num:=2+0.60*Rey^.5*Pr^(1/3); |
Use the definition of the heat transfer coefficient
> |
hm:=Num*k/l0; |
Use the definition of the heat flow to find the necessary heat
> |
Q:=hm*4*3.14157*r^2*(T0-Tinf); |
> |
Q:=Q*hr/3600/s*252*cal/Btu; |
part b
instead of equation 14.4-5 we will now use equation 14.4-6 to solve the problem
> |
muinf:=.051796*lb/ft/hr; |
> |
Num2:=2+(0.4*Rey^.5+0.06*Rey^(2/3))*Pr^.4*(muinf/mu)^.25; |
> |
hm2:=Num2*k/l0; |
> |
Q2:=hm2*4*3.14157*r^2*(T0-Tinf); |
> |
Q2:=Q2*hr/3600/s*252*cal/Btu; |
Problem
14A.9 – The ice-fisherman on
the poor fisherman, using the same properties of air
For the first situation, the wind velocity is zero
> |
l20:=3*ft;r2:=1.5*ft;T20:=558*R;T2inf:=449.4*R;Num3:=2;hm3:=Num3*k/l20; |
> |
Q3:=hm3*4*3.14157*r2^2*(T20-T2inf); |
for the second situation there is an wind velocity of 20mph
> |
v20:=20*mi/hr;v2:=v0*5280*ft/mi; |
> |
Rey2:=rho*l20*v2/mu; |
> |
Num4:=2+0.60*Rey2^.5*Pr^(1/3); |
> |
hm4:=Num4*k/l20; |
> |
Q4:=hm4*4*3.14157*r2^2*(T20-T2inf); |
Thus, we can see that there is a heat loss of 190X
greater when there is a wind velocity of 20mph. Considering that the
average human who is seated and quiet produces 360 Btu/hr, our fisherman friend
may be in trouble!
http://ebusscottcity.ebusbuild
|
|
Jones, Esplin 2005