Harman Patil (Editor)

Total variation diminishing

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

In numerical methods, total variation diminishing (TVD) is a property of certain discretization schemes used to solve hyperbolic partial differential equations. The most notable application of this method is in computational fluid dynamics. The concept of TVD was introduced by Ami Harten.

Contents

Model equation

In systems described by partial differential equations, such as the following hyperbolic advection equation,

u t + a u x = 0 ,

the total variation (TV) is given by,

T V = | u x | d x ,

and the total variation for the discrete case is,

T V = j | u j + 1 u j | .

A numerical method is said to be total variation diminishing (TVD) if,

T V ( u n + 1 ) T V ( u n ) .

Characteristics

A numerical scheme is said to be monotonicity preserving if the following properties are maintained:

  • If u n is monotonically increasing (or decreasing) in space, then so is u n + 1 .
  • Harten 1983 proved the following properties for a numerical scheme,

  • A monotone scheme is TVD, and
  • A TVD scheme is monotonicity preserving.
  • Application in CFD

    In Computational Fluid Dynamics, TVD scheme is employed to capture sharper shock predictions without any misleading oscillations when variation of field variable “Ø” is discontinuous. To capture the variation fine grids (∆x = very small) are needed and the computation becomes heavy and therefore uneconomic. The use of coarse grids with central difference scheme, upwind scheme, hybrid difference scheme, and power law scheme gives false shock predictions. TVD scheme enables sharper shock predictions on coarse grids saving computation time and as the scheme preserves monotonicity there are no spurious oscillations in the solution.

    Discretisation

    Consider the steady state one-dimensional convection diffusion equation,

    ( ρ u ϕ ) = ( Γ ϕ ) + S ϕ ,

    where ρ is the density, u is the velocity vector, ϕ is the property being transported, Γ is the coefficient of diffusion and S ϕ is the source term responsible for generation of the property ϕ .

    Making the flux balance of this property about a control volume we get,

    A n ( ρ u ϕ ) d A = A n ( Γ ϕ ) d A + C V S ϕ d V

    Here n is the normal to the surface of control volume.

    Ignoring the source term, the equation further reduces to:

    ( ρ u ϕ A ) r ( ρ u ϕ A ) l = ( Γ A ϕ x ) r ( Γ A ϕ x ) l

    Assuming

    ϕ x = δ ϕ δ x and A r = A l ;

    The equation reduces to

    ( ρ u ϕ ) r ( ρ u ϕ ) l = ( Γ δ x δ ϕ ) r ( Γ δ x δ ϕ ) l .

    Say,

    F r = ( ρ u ) r ;  and  F l = ( ρ u ) l ; D l = ( Γ δ x ) l ; D r = ( Γ δ x ) r ;

    From the figure:

    δ ϕ r = ϕ R ϕ P ;  and  δ x r = x P R ; δ ϕ l = ϕ P ϕ L ;  and  δ x l = x L P ;

    The equation becomes, F r ϕ r F l ϕ l = D r ( ϕ R ϕ P ) D l ( ϕ P ϕ L ) ;

    Also the continuity equation has to be satisfied,

    ( ρ u ) r ( ρ u ) l = 0 ; ( O R ) F r F l = 0 ; ( O R ) F r = F l = F ;

    Assuming diffusivity is a homogeneous property and equal grid spacing we can say

    Γ l = Γ r ; δ x L P = δ x P R = δ x

    we get D l = D r = D The equation further reduces to F ( ϕ r ϕ l ) = D ( ϕ R 2 ϕ P + ϕ L ) This can be written as P ( ϕ r ϕ l ) = ( ϕ R 2 ϕ P + ϕ L ) , where P is the Péclet number.

    P = F D = ρ u δ x Γ .

    TVD scheme

    Total variation diminishing scheme makes an assumption for the values of ϕ r and ϕ l to be substituted in the discretized equation as follows:

    P ϕ r = 1 2 ( P + | P | ) [ f r + ϕ R + ( 1 f r + ) ϕ L ] + 1 2 ( P | P | ) [ f r ϕ P + ( 1 f r ) ϕ R R ] P ϕ l = 1 2 ( P + | P | ) [ f l + ϕ P + ( 1 f l + ) ϕ L L ] + 1 2 ( P | P | ) [ f l ϕ L + ( 1 f l ) ϕ R ]

    Where P is the Peclet number and f is the weighing function to be determined from,

    f = f ( ϵ ) = f ϕ U ϕ U U ϕ D ϕ U U

    where U refers to upstream, UU refers to upstream of U and D refers to downstream.

    Note that f + is the weighing function when the flow is in positive direction i.e., from left to right and f is the weighing function when the flow is in the negative direction from right to left. So,

    f r +  is a function of  ϕ P ϕ L ϕ R ϕ L . f r  is a function of  ϕ R ϕ R R ϕ P ϕ R R , f l +  is a function of  ϕ L ϕ L L ϕ P ϕ L L ,  and f l  is a function of  ϕ P ϕ R ϕ L ϕ R

    If the flow is in positive direction then, peclet number P is positive and the term ( P | P | ) = 0 , so the function f won’t play any role in the assumption of Ør and Øl. Likewise when the flow is in negative direction, P is negative and the term ( P + | P | ) = 0 , so the function f + won’t play any role in the assumption of ϕ r and ϕ r .

    It therefore takes into account the values of property depending on the direction of flow and using the weighted functions tries to achieve monotonicity in the solution thereby producing results with no spurious shocks.

    Limitations

    Monotone schemes are attractive for solving engineering and scientific problems because they do not produce non-physical solutions. Godunov's theorem proves that linear schemes which preserve monotonicity are, at most, only first order accurate. Higher order linear schemes, although more accurate for smooth solutions, are not TVD and tend to introduce spurious oscillations (wiggles) where discontinuities or shocks arise. To overcome these drawbacks, various high-resolution, non-linear techniques have been developed, often using flux/slope limiters.

    References

    Total variation diminishing Wikipedia