ME 353 Heat Transfer 1

M.M. Yovanovich

FCINT1.MWS

Internal forced convection in a square duct.

____________________________________________

Laminar forced convection in a square isothermal tube.

The flow is fully-developed hydraulically and thermally

developing.

The fluid is engine oil at temperature T = 340 K.

The side dimension of the square tube is 12 mm.

The mean velocity is 2.5 m/s and the distance from

the tube inlet is 2 m.

Determine the average Nusselt number and the average

heat transfer coefficient.

_____________________________________________

> restart:

> oilprops:=
(rho = 859.9, cp = 2.076, mu = 5.31e-2, nu = 61.7e-6,
kf = 0.139, alpha = 0.779e-7, Pr = 793);

[Maple Math]
[Maple Math]

System parameters.

> syspar:= (s = 12/1000, Um = 2.5, x = 2, Tw = 380, Tinlet = 320);

[Maple Math]

Shah (1975) correlation equations for laminar internal flow.

Isothermal wall.

> h:= kf*Nu_Dh/Dh;

[Maple Math]

> Nu_m_UWT1:= 1.615/xstar^(1/3) - 0.2; #For 0.005 < xstar < 0.03

[Maple Math]

> Nu_m_UWT2:= 3.656 + 0.0499/xstar; #For xstar => 0.03

[Maple Math]

> Dh:= 4*A/P; #Hydraulic diameter

[Maple Math]

> A:= s^2; P:= 4*s;

[Maple Math]

[Maple Math]

Dimensionless axial distance from tube entrance.

> xstar:= x/(Dh*ReDh*Pr);

[Maple Math]

> ReDh:= Um*Dh/nu;

[Maple Math]

Compute the hydraulic diameter, the mass flow rate, the Reynolds number,

the dimensionless distance, the Nusselt number and the heat transfer coeffcient.

> Dh1:= evalf(subs(syspar, Dh), 4);

[Maple Math]

> mdot1:= evalf(subs(oilprops, syspar, rho*Um*s^2), 5);

[Maple Math]

> ReDh1:= evalf(subs(syspar, oilprops, ReDh), 6); #Laminar flow

[Maple Math]

> xstar1:= evalf(subs(syspar, oilprops, xstar), 6);

[Maple Math]

> NuDh1:= evalf(subs(xstar = xstar1, Nu_m_UWT1), 6);

[Maple Math]

> h1:= evalf(subs(oilprops, Nu_Dh = NuDh1, syspar, h), 5);

[Maple Math]

>

The mean Nusselt number is much larger than the fully-developed value

which is equal to 2.98 for an isothermal square tube (see Table 8.1).

The thermal boundary layer is developing; therefore it is still quite small

relative to the hydraulic diameter.