Contents


Uniform Heat Flux

 

The function semiinf2(T_i,q``_dot_s,k,alpha,x,time) returns the temperature for a given position and time within a semi-infinite body exposed to a uniform surface heat flux using the relation provided in Table 3-2 of Nellis and Klein.

 

 

Inputs:

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

q``_dot_s - surface heat flux [W/m^2]

k - thermal conductivity [W/m-K]

alpha - thermal diffusivity [m^2/s]

x - perpendicular distance from surface [m]

time - time relative to flux application (flux begins at t=0) [s]

 

Example:

$UnitSystem SI K Pa J

T_i=378[K]

q``_dot_s=2500 [W/m^2]

alpha=0.00010 [m^2/s]

k=50 [W/m-K]

x=0.001 [m]

time=200 [s]

T=semiinf2(T_i,q``_dot_s,k,alpha,x,time)

 

{Solution T=385.9 [K]}

 

Index