User:Wolfrock/BDF

From Wikipedia, the free encyclopedia

Warning: This is my working draft for revisions to the BDF article. Ideally, I would just make the changes there but it will take more than I have at one time to complete this so I'm trying to do it here...

The backward differentiation formula (BDF) is a family of implicit methods for the numerical integration of ordinary differential equations. They are linear multistep methods that, for a given function and time, approximate the derivative of that function using information from already computed times, thereby increasing the accuracy of the approximation. These methods are especially used for the solution of stiff differential equations.

History[edit]

Backward Differentiation Formulas (BDFs) were first introduced in 1953 by Curtiss and Hirschfelder. [1] The motivation for BDFs came from stiff equations.

TODO: Elaborate on Motivation.

TODO: Stiff decay property?

Gear was the first to propose a general method for solving DAEs, which was based on BDFs. [2]

Formulation[edit]

A BDF is used to solve the initial value problem

BDFs are a kind of linear multistep method. The general formula for a linear mulitistep method can be written as (cite something here)

where h denotes the step size and the coefficients and determine the particular linear multistep method. BDFs are a particular family of linear multistep method in which is evaluated only at , or, in other words, for . [3] BDFs solve the initial value problem by differentiating the polynomial that interpolates the previous values of and setting the derivative at equal to

TODO: perhaps elaborate in words. TODO: emphasize why BDFs are a noteworthy type of LMM.

A BDF can be written as [4]

where....

BDF methods are implicit and, as such, require the solution of non-linear equations at each step. Typically, a modified Newton's method is used to solve these nonlinear equations (Ascher and Petzold).

TODO: ensure notation is consistent with other numerical ODE articles

TODO: explain the notation in this article - it needs to stand alone

TODO: cite things properly.

TODO: starting methods...

Particular BDFs[edit]

The simplest BDF is the one-step first-order backward Euler method [5]

BDF methods of orders 2-6 [6]

TODO: Elaborate on where these coefficients come from.

TODO: Double check the above.

TODO: Why is BE so small?

BDF methods are stable for k > 6 - cite Hairer.

BDF code[edit]

Some popular BDF codes.

  • DASSEL
  • LSODI
  • ode15s (depending on an option)

I think COMSOL uses it as well (based on DASSEL?)

Citations[edit]

TODO: Fix citations so they link properly.

  1. ^ Hairer 1993, §III.1, p. 365
  2. ^ Brennen 1995, §3.1, p. 41
  3. ^ Ascher 1998, §5.1.2, p. 129
  4. ^ Ascher 1998, §5.1.2, p. 129
  5. ^ Ascher 1998, §5.1.2, p. 129
  6. ^ Ascher 1998, §5.1.2, p. 130

References[edit]

  • U.M. Ascher, L.R. Petzold. Computer Methods for Ordinary Differential Equations and Differential-Algebraic Equations. SIAM, Philadelphia. ISBN 0-89871-412-5
  • K. E. Brennen, S. L. Campbell, L. R. Petzold Numerical solution of initial-value problems in differential-algebraic equations. Philadelphia: SIAM, 1995. ISBN 0-89871-353-6
  • Ernst Hairer, Syvert Paul Nørsett, and Gerhard Wanner. Solving ordinary differential equations I: Nonstiff problems, second edition. Berlin: Springer Verlag, 1993. ISBN 3-540-56670-8.