Suvarna Garge (Editor)

Numerical solution of the convection–diffusion equation

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

The convection–diffusion equation describes the flow of heat, particles, or other physical quantities in situations where there is both diffusion and convection or advection. For information about the equation, its derivation, and its conceptual importance and consequences, see the main article convection–diffusion equation. This article describes how to use a computer to calculate an approximate numerical solution of the equation, in a time-dependent situation.

Contents

In order to be concrete, this article focuses on heat flow, an important example where the convection–diffusion equation applies. However, the same mathematical analysis works equally well to other situations like particle flow.

A general discontinuous finite element formulation is needed. The unsteady convection–diffusion problem is considered, at first the known temperature T is expanded into a Taylor series with respect to time taking into account its three components. Next, using the convection diffusion equation an equation is obtained from the differentiation of this equation.

General

The following convection diffusion equation is considered here

c ρ [ T ( x , t ) t + ϵ u T ( x , t ) x ] = λ 2 T ( x , t ) x 2 + Q ( x , t )

In the above equation, four terms represents transient, convection, diffusion and source term respectively

where

  • T is the temperature in particular case of heat transfer otherwise it is the variable of interest
  • t is time
  • c is the specific heat
  • u is velocity
  • ϵ is porosity that is the ratio of liquid volume to the total volume
  • ρ is mass density
  • λ is thermal conductivity
  • Q(x,t) is source term represents capacity of internal sources
  • The equation above can be written in the form

    T t = a 2 T x 2 ϵ u T x + Q c ρ

    where a = λ c ρ is the diffusion coefficient.

    Solving convection-diffusion equation using finite difference method

    A solution of transient convection-diffusion equation can be approximated through finite difference approach, known as finite difference method.

    Explicit scheme

    Explicit scheme of FDM (finite difference method) has been considered and stability criteria are formulated. In this scheme, temperature is totally dependent on the old temperature (i.e. initial conditions). Substitution of θ = 0 gives the explicit discretization of the unsteady conductive heat transfer equation.

    where θ is the weighing parameter between 0 and 1.

    T i f T i f 1 Δ t = a T i 1 f 1 2 T i f 1 + T i + 1 f 1 h 2 ϵ u T i + 1 f 1 T i 1 f 1 2 h + Q i f 1 c ρ

    where

  • Δ t = t f t f 1
  • h is uniform grid spacing (mesh step)
  • T i f = ( 1 2 a Δ t h 2 ) T i f 1 + ( a Δ t h 2 + ϵ u Δ t 2 h ) T i 1 f 1 + ( a Δ t h 2 ϵ u Δ t 2 h ) T i + 1 f 1 + Q i f 1 c ρ Δ t
    Stability criteria
    h < 2 a ϵ u Δ t < h 2 2 a

    This inequality sets a stringent maximum limit to the time step size and represents a serious limitation for the explicit scheme. This method is not recommended for general transient problems because maximum possible time step has to be reduced as the square of h.

    Implicit scheme

    In implicit scheme, the temperature is dependent at the new time level t + Δ t . After using implicit scheme, it was found that all coefficients are positive. It makes the implicit scheme unconditionally stable for any size of time step. This scheme is preferred for general purpose transient calculations because of its robustness and unconditional stability. The disadvantage of this method is that more procedures are involved and due to larger Δ t , truncation error is also larger.

    Crank–Nicolson scheme

    In Crank–Nicolson method, the temperature is equally dependent on t and t + Δ t . It is a second-order method in time and this method is generally used in diffusion problems.

    Stability criteria
    Δ t < h 2 a

    This time step limitation is less restricted than the explicit method. The Crank–Nicolson method is based on the central differencing and hence it is second order accurate in time.

    Finite element solution to convection-diffusion problem

    Unlike the conduction equation (finite element solution is used), a numerical solution for the convection-diffusion equation has to deal with the convection part of the governing equation in addition to diffusion. When peclet number (Pe) exceeds a critical value, the spurious oscillations result in space and this problem is not unique to finite elements as all other discretization techniques have the same difficulties. In a finite difference formulation, the spatial oscillations are reduced by a family of discretization schemes like upwind scheme. In this method, the basic shape function is modified to obtain the upwinding effect. This method is an extension of runge kutta discontinuous for a convection diffusion equation. For time dependent equations, a different kind of approach is followed. The finite difference scheme has an equivalent in the finite element method (Galerkin method). Another similar method is characteristic Galerkin method (uses an implicit algorithm). For scalar variables, above two methods are identical.

    References

    Numerical solution of the convection–diffusion equation Wikipedia