Suvarna Garge (Editor)

Lax–Friedrichs method

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Lax–Friedrichs method

The Lax–Friedrichs method, named after Peter Lax and Kurt O. Friedrichs, is a numerical method for the solution of hyperbolic partial differential equations based on finite differences. The method can be described as the FTCS (forward in time, centered in space) scheme with an artificial viscosity term of 1/2. One can view the Lax–Friedrichs method as an alternative to Godunov's scheme, where one avoids solving a Riemann problem at each cell interface, at the expense of adding artificial viscosity.

Contents

Illustration for a Linear Problem

Consider a one-dimensional, linear hyperbolic partial differential equation for u ( x , t ) of the form:

u t + a u x = 0

on the domain

b x c , 0 t d

with initial condition

u ( x , 0 ) = u 0 ( x )

and the boundary conditions

u ( b , t ) = u b ( t ) u ( c , t ) = u c ( t ) .

If one discretizes the domain ( b , c ) × ( 0 , d ) to a grid with equally spaced points with a spacing of Δ x in the x -direction and Δ t in the t -direction, we define

u i n = u ( x i , t n )  with  x i = b + i Δ x , t n = n Δ t  for  i = 0 , , N , n = 0 , , M ,

where

N = c b Δ x , M = d Δ t

are integers representing the number of grid intervals. Then the Lax–Friedrichs method for solving the above partial differential equation is given by:

u i n + 1 1 2 ( u i + 1 n + u i 1 n ) Δ t + a u i + 1 n u i 1 n 2 Δ x = 0

Or, rewriting this to solve for the unknown u i n + 1 ,

u i n + 1 = 1 2 ( u i + 1 n + u i 1 n ) a Δ t 2 Δ x ( u i + 1 n u i 1 n )

Where the initial values and boundary nodes are taken from

u i 0 = u 0 ( x i ) u 0 n = u b ( t n ) u N n = u c ( t n ) .

Extensions to Nonlinear Problems

A nonlinear hyperbolic conservation law is defined through a flux function f :

u t + ( f ( u ) ) x = 0.

In the case of f ( u ) = a u , we end up with a scalar linear problem. Note that in general, u is a vector with m equations in it. The generalization of the Lax-Friedrichs method to nonlinear systems takes the form

u i n + 1 = 1 2 ( u i + 1 n + u i 1 n ) Δ t 2 Δ x ( f ( u i + 1 n ) f ( u i 1 n ) ) .

This method is conservative and first order accurate, hence quite dissipative. It can, however be used as a building block for building high-order numerical schemes for solving hyperbolic partial differential equations, much like Euler time steps can be used as a building block for creating high-order numerical integrators for ordinary differential equations.

We note that this method can be written in conservation form:

u i n + 1 = u i n Δ t Δ x ( f ^ i + 1 / 2 n f ^ i 1 / 2 n ) ,

where

f ^ i 1 / 2 n = 1 2 ( f i 1 + f i ) Δ x 2 Δ t ( u i n u i 1 n ) .

Without the extra terms u i n and u i 1 n in the discrete flux, f ^ i 1 / 2 n , one ends up with the FTCS scheme, which is well known to be unconditionally unstable for hyperbolic problems.

Stability and accuracy

This method is explicit and first order accurate in time and first order accurate in space provided u 0 ( x ) , u b ( t ) , u c ( t ) are sufficiently-smooth functions. Under these conditions, the method is stable if and only if the following condition is satisfied:

| a Δ t Δ x | 1.

(A von Neumann stability analysis can show the necessity of this stability condition.) The Lax–Friedrichs method is classified as having second-order dissipation and third order dispersion (Chu 1978, pg. 304). For functions that have discontinuities, the scheme displays strong dissipation and dispersion (Thomas 1995, §7.8); see figures at right.

References

Lax–Friedrichs method Wikipedia