Skip to content

Example 2: semi-infinite solid with surface convection

Files

Statement of the problem

This test corresponds to a 1D simulation of the evolution of temperature in a semi-infinite solid due to surface convection.

The domain Ω\Omega is a segment [0,103][0,10^{-3}]

ρCpTt=[kT] in Ω \begin{align} \rho C_p \frac{\partial T}{\partial t}=[\nabla \cdot{} k\nabla T] \text{ in }\Omega \end{align}

Boundary conditions

Robin boundary conditions are prescribed on Γleft\Gamma_{left} and Dirichlet boundary conditions are prescribed on Γright\Gamma_{right}:

nkT+hT=hT on ΓleftT(x=L,t)=Ti \begin{align} {\bf{n}} \cdot{} k \nabla T + h T &= hT_{\infty} \text{ on }\Gamma_{left} \\[6pt] T(x=L,t) &= T_i \end{align}

Initial condition

The temperature is assumed to be constant at t=0t=0:

T(x,t=0)=Ti \begin{align} T(x,t=0) = T_i \end{align}

Parameters used for the test

For this test, the following parameters are considered:

Parameter Symbol Value
Density ρ\rho 10410^4
Heat capacity CpC_p 10410^4
Thermal conductivity kk 11
Convection coefficient hh 11
Fluid temperature TT_{\infty} 11
Initial temperature TiT_i 00

Numerical scheme

  • Time integration: Euler Implicit over the interval t[0,5]t\in[0,5] with a time-step δt=0.1\delta t=0.1
  • Spatial discretization: uniform grid with N=30N=30 nodes
  • Newton solver: absolute tolerance 101010^{-10}

Results

The simulated temperature is compared to the analytical solution ([1]), which can be written as:

T(x,t)=Ti+(TTi)[erfc(xLc)exp(hxk+14(hLck)2)erfc(xLc+12hLck)] \begin{align} T(x,t) = T_i + (T_{\infty} - T_i) \left[ \text{erfc}\left(\frac{x}{L_c}\right) - \exp\left(\frac{hx}{k} + \frac{1}{4} \left(\frac{hL_c}{k}\right)^2 \right) \text{erfc}\left( \frac{x}{L_c} + \frac{1}{2} \frac{hL_c}{k} \right)\right] \end{align}

with Lc=4αtα=kρCpL_c = \sqrt{ 4 \alpha t } \text{, } \alpha=\frac{ k }{ \rho C_p }.

The results show good agreement with the analytical solution.

References

[1] F. Incropera and D. DeWitt, “Fundamentals of Heat and Mass Transfer,” 6th Edition, J. Wiley & Sons, New York, 2007.