Contents


Convection

 

Function semiinf3(T_i,T_f,h,k,alpha,x,time) returns the temperature for a given position and time within a semi-infinite body with surface convection using the relation provided in Table 3-2 of Nellis and Klein.

 

Inputs:

T_i - initial temperature of the solid  [C] or [K]

T_f - bulk fluid temperature [C] or [K]

h - convection coefficient [W/m^2-K]

alpha - thermal diffusivity [m^2/s]

x - perpendicular distance from surface [m]

time - time relative to surface exposure (surface convection begins at t=0) [s]

 

Example:

$UnitSystem SI K Pa J

T_i=393[K]

T_f=355 [K]

h = 50 [W/m^2-K]

alpha=0.000004029 [m^2/s]

k=10 [W/m-K]

x=0.003 [m]

time=100 [s]

T=semiinf3(T_i,T_f,h,k,alpha,x,time)

 

{Solution: T=389.5 [K]}

 

Index