Samiksha Jaiswal (Editor)

Courant–Friedrichs–Lewy condition

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Courant–Friedrichs–Lewy condition httpsiytimgcomvi6L4OkzvZ6cmaxresdefaultjpg

In mathematics, the Courant–Friedrichs–Lewy (CFL) condition is a necessary condition for convergence while solving certain partial differential equations (usually hyperbolic PDEs) numerically by the method of finite differences. It arises in the numerical analysis of explicit time integration schemes, when these are used for the numerical solution. As a consequence, the time step must be less than a certain time in many explicit time-marching computer simulations, otherwise the simulation will produce incorrect results. The condition is named after Richard Courant, Kurt Friedrichs, and Hans Lewy who described it in their 1928 paper.

Contents

Heuristic description

The principle behind the condition is that, for example, if a wave is moving across a discrete spatial grid and we want to compute its amplitude at discrete time steps of equal duration, then this duration must be less than the time for the wave to travel to adjacent grid points. As a corollary, when the grid point separation is reduced, the upper limit for the time step also decreases. In essence, the numerical domain of dependence of any point in space and time (as determined by initial conditions and the parameters of the approximation scheme) must include the analytical domain of dependence (wherein the initial conditions have an effect on the exact value of the solution at that point) in order to assure that the scheme can access the information required to form the solution.

The CFL condition

In order to make a reasonably formally precise statement of the condition, it is necessary to define the following quantities

  • Spatial coordinate: it is one of the coordinates of the physical space in which the problem is posed.
  • Spatial dimension of the problem: it is the number n of spatial dimensions i.e. the number of spatial coordinates of the physical space where the problem is posed. Typical values are n = 1 , n = 2 and n = 3 .
  • Time: it is the coordinate, acting as a parameter, which describes the evolution of the system, distinct from the spatial coordinates.
  • The spatial coordinates and the time are supposed to be discrete-valued independent variables, which are placed at regular distances called the interval length and the time step, respectively. Using these names, the CFL condition relates the length of the time step to a function of the interval lengths of each spatial coordinate and of the maximum speed with which information can travel in the physical space.

    Operatively, the CFL condition is commonly prescribed for those terms of the finite-difference approximation of general partial differential equations which model the advection phenomenon.

    The one-dimensional case

    For one-dimensional case, the CFL has the following form:

    C = u Δ t Δ x C max

    where the dimensionless number is called the Courant number,

  • u is the magnitude of the velocity (whose dimension is length/time)
  • Δ t is the time step (whose dimension is time)
  • Δ x is the length interval (whose dimension is length).
  • The value of C max changes with the method used to solve the discretised equation, especially depending on whether the method is explicit or implicit. If an explicit (time-marching) solver is used then typically C max = 1 . Implicit (matrix) solvers are usually less sensitive to numerical instability and so larger values of C max may be tolerated.

    The two and general n-dimensional case

    In the two-dimensional case, the CFL condition becomes

    C = u x Δ t Δ x + u y Δ t Δ y C max

    with obvious meaning of the symbols involved. By analogy with the two-dimensional case, the general CFL condition for the n -dimensional case is the following one:

    C = Δ t i = 1 n u x i Δ x i C max .

    The interval length is not required to be the same for each spatial variable Δ x i , i = 1 , , n . This "degree of freedom" can be used in order to somewhat optimize the value of the time step for a particular problem, by varying the values of the different interval in order to keep it not too small.

    The CFL condition is only a necessary one

    The CFL condition is a necessary condition, but may not be sufficient for the convergence of the finite-difference approximation of a given numerical problem. Thus, in order to establish the convergence of the finite-difference approximation, it is necessary to use other methods, which in turn could imply further limitations on the length of the time step and/or the lengths of the spatial intervals.

    References

    Courant–Friedrichs–Lewy condition Wikipedia


    Similar Topics