Adaptive stepsize

From HandWiki
Revision as of 05:33, 5 November 2020 by imported>Corlink (update)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

In numerical analysis, some methods for the numerical solution of ordinary differential equations (including the special case of numerical integration) use an adaptive stepsize in order to control the errors of the method and to ensure stability properties such as A-stability. Using an adaptive stepsize is of particular importance when there is a large variation in the size of the derivative. For example, when modeling the motion of a satellite about the earth as a standard Kepler orbit, a fixed time-stepping method such as the Euler method may be sufficient. However things are more difficult if one wishes to model the motion of a spacecraft taking into account both the Earth and the Moon as in the Three-body problem. There, scenarios emerge where one can take large time steps when the spacecraft is far from the Earth and Moon, but if the spacecraft gets close to colliding with one of the planetary bodies, then small time steps are needed. Romberg's method and Runge–Kutta–Fehlberg are examples of a numerical integration methods which use an adaptive stepsize.

Example

For simplicity, the following example uses the simplest integration method, the Euler method; in practice, higher-order methods such as Runge–Kutta methods are preferred due to their superior convergence and stability properties.

Consider the initial value problem

[math]\displaystyle{ y'(t) = f(t,y(t)), \qquad y(a)=y_a }[/math]

where y and f may denote vectors (in which case this equation represents a system of coupled ODEs in several variables).

We are given the function f(t,y) and the initial conditions (a, ya), and we are interested in finding the solution at t=b. Let y(b) denote the exact solution at b, and let yb denote the solution that we compute. We write [math]\displaystyle{ y_b + \epsilon = y(b) }[/math], where [math]\displaystyle{ \epsilon }[/math] is the error in the numerical solution.

For a sequence (tn) of values of t, with tn = a + nh, the Euler method gives approximations to the corresponding values of y(tn) as

[math]\displaystyle{ y_{n+1}^{(0)}=y_n+hf(t_n,y_n) }[/math]

The local truncation error of this approximation is defined by

[math]\displaystyle{ \tau_{n+1}^{(0)}=y(t_{n+1}) - y_{n+1}^{(0)} }[/math]

and by Taylor's theorem, it can be shown that (provided f is sufficiently smooth) the local truncation error is proportional to the square of the step size:

[math]\displaystyle{ \tau_{n+1}^{(0)}=ch^2 }[/math]

where c is some constant of proportionality.

We have marked this solution and its error with a [math]\displaystyle{ (0) }[/math].

The value of c is not known to us. Let us now apply Euler's method again with a different step size to generate a second approximation to y(tn+1). We get a second solution, which we label with a [math]\displaystyle{ (1) }[/math]. Take the new step size to be one half of the original step size, and apply two steps of Euler's method. This second solution is presumably more accurate. Since we have to apply Euler's method twice, the local error is (in the worst case) twice the original error.

[math]\displaystyle{ y_{n+\frac{1}{2}}=y_n+\frac{h}{2}f(t_n,y_n) }[/math]
[math]\displaystyle{ y_{n+1}^{(1)}=y_{n+\frac{1}{2}}+\frac{h}{2}f(t_{n+\frac{1}{2}},y_{n+\frac{1}{2}}) }[/math]
[math]\displaystyle{ \tau_{n+1}^{(1)}=c\left(\frac{h}{2}\right)^2+c\left(\frac{h}{2}\right)^2=2c\left(\frac{h}{2}\right)^2=\frac{1}{2}ch^2=\frac{1}{2}\tau_{n+1}^{(0)} }[/math]
[math]\displaystyle{ y_{n+1}^{(1)} + \tau_{n+1}^{(1)}=y(t+h) }[/math]

Here, we assume error factor [math]\displaystyle{ c }[/math] is constant over the interval [math]\displaystyle{ [t, t+h] }[/math]. In reality its rate of change is proportional to [math]\displaystyle{ y^{(3)}(t) }[/math]. Subtracting solutions gives the error estimate:

[math]\displaystyle{ y_{n+1}^{(1)}-y_{n+1}^{(0)} = \tau_{n+1}^{(1)} }[/math]

This local error estimate is third order accurate.

The local error estimate can be used to decide how stepsize [math]\displaystyle{ h }[/math] should be modified to achieve the desired accuracy. For example, if a local tolerance of [math]\displaystyle{ tol }[/math] is allowed, we could let h evolve like:

[math]\displaystyle{ h \rightarrow 0.9 \times h \times \min{\Big(\max{\Big( \Big (\frac{tol}{2|\tau_{n+1}^{(1)}|}\Big )^{1/2}, 0.3\Big)},2\Big)} }[/math]

The [math]\displaystyle{ 0.9 }[/math] is a safety factor to ensure success on the next try. The minimum and maximum are to prevent extreme changes from the previous stepsize. This should, in principle give an error of about [math]\displaystyle{ 0.9 \times tol }[/math] in the next try. If [math]\displaystyle{ |\tau_{n+1}^{(1)}| \lt tol }[/math], we consider the step successful, and the error estimate is used to improve the solution:

[math]\displaystyle{ y_{n+1}^{(2)} = y_{n+1}^{(1)} + \tau_{n+1}^{(1)} }[/math]

This solution is actually third order accurate in the local scope (second order in the global scope), but since there is no error estimate for it, this doesn't help in reducing the number of steps. This technique is called Richardson extrapolation.

Beginning with an initial stepsize of [math]\displaystyle{ h=b-a }[/math], this theory facilitates our controllable integration of the ODE from point [math]\displaystyle{ a }[/math] to [math]\displaystyle{ b }[/math], using an optimal number of steps given a local error tolerance. A drawback is that the step size may become prohibitively small, especially when using the low-order Euler method.

Similar methods can be developed for higher order methods, such as the 4th order Runge-Kutta method. Also, a global error tolerance can be achieved by scaling the local error to global scope.

Embedded error estimates

Adaptive stepsize methods that use a so-called 'embedded' error estimate include the Runge–Kutta–Fehlberg, Cash–Karp and Dormand–Prince methods. These methods are considered to be more computationally efficient, but have lower accuracy in their error estimates.

References

Further reading

  • William H. Press, Saul A. Teukolsky, William T. Vetterling, Brian P. Flannery, Numerical Recipes in C, Second Edition, CAMBRIDGE UNIVERSITY PRESS, 1992. ISBN:0-521-43108-5
  • Kendall E. Atkinson, Numerical Analysis, Second Edition, John Wiley & Sons, 1989. ISBN:0-471-62489-6