This chapter is concerned with the numerical solution of ordinary differential equations. There are two main types of problem: those in which all boundary conditions are specified at one point (initial value problems), and those in which the boundary conditions are distributed between two or more points (boundary value problems and eigenvalue problems). Functions are available for initial value problems and two-point boundary value problems.
2Background to the Problems
For most of the functions in this chapter a system of ordinary differential equations must be written in the form
that is the system must be given in first-order form. The dependent variables (also, the solution) are functions of the independent variable , and the differential equations give expressions for the first derivatives in terms of and . For a system of first-order equations, associated boundary conditions are usually required to define the solution.
A more general system may contain derivatives of higher order, but such systems can almost always be reduced to the first-order form by introducing new variables. For example, suppose we have the third-order equation
We write , , , and the third-order equation may then be written as the system of first-order equations
For this system and we require boundary conditions in order to define the solution. These conditions must specify values of the dependent variables at certain points. For example, we have an initial value problem if the conditions are
These conditions would enable us to integrate the equations numerically from the point to some specified end point. We have a boundary value problem if the conditions are
These conditions would be sufficient to define a solution in the range , but the problem could not be solved by direct integration (see Section 2.2). More general boundary conditions are permitted in the boundary value case.
2.1Initial Value Problems
To solve first-order systems, initial values of the dependent variables
, for , must be supplied at a given point, . Also a point, , at which the values of the dependent variables are required, must be specified. The numerical solution is then obtained by a step-by-step calculation which approximates values of the variables
, for , at finite intervals over the required range . The functions in this chapter adjust the step length automatically to meet specified accuracy tolerances. Although the accuracy tests used are reliable over each step individually, in general an accuracy requirement cannot be guaranteed over a long range. For many problems there may be no serious accumulation of error, but for unstable systems small perturbations of the solution will often lead to rapid divergence of the calculated values from the true values. A simple check for stability is to carry out trial calculations with different tolerances; if the results differ appreciably the system is probably unstable. Over a short range, the difficulty may possibly be overcome by taking sufficiently small tolerances, but over a long range it may be better to try to reformulate the problem.
A special class of initial value problems are those for which the solutions contain rapidly decaying transient terms. Such problems are called stiff; an alternative way of describing them is to say that certain eigenvalues of the Jacobian matrix have large negative real parts when compared to others. These problems require special methods for efficient numerical solution; the methods designed for non-stiff problems when applied to stiff problems tend to be very slow, because they need small step lengths to avoid numerical instability. A full discussion is given in Hall and Watt (1976) and a discussion of the methods for stiff problems is given in Berzins et al. (1988).
2.2Boundary Value Problems
In general, a system of nonlinear differential equations with boundary conditions at two or more points cannot be guaranteed to have a solution. The solution, if it exists, has to be determined iteratively. A comprehensive treatment of the numerical solution of boundary value problems can be found in Ascher et al. (1988) and Keller (1992). The methods for this chapter are discussed in Ascher et al. (1979), Ascher and Bader (1987) and Gladwell (1987).
2.2.1Collocation methods
In the collocation method, the solution components are approximated by piecewise polynomials on a mesh. The coefficients of the polynomials form the unknowns to be computed. The approximation to the solution must satisfy the boundary conditions and the differential equations at collocation points in each mesh sub-interval. A modified Newton method is used to solve the nonlinear equations. The mesh is refined by trying to equidistribute the estimated error over the whole interval. An initial estimate of the solution across the mesh is required.
2.2.2Finite difference methods
If a boundary value problem seems insoluble by the above method and a good estimate for the solution of the problem is known at all points of the range then a finite difference method may be used. Finite difference equations are set up on a mesh of points and estimated values for the solution at the grid points are chosen. Using these estimated values as starting values a Newton iteration is used to solve the finite difference equations. The accuracy of the solution is then improved by deferred corrections or the addition of points to the mesh or a combination of both.
Good
initial estimates of the solution may be required in some cases and the method is unlikely to be successful when the solution varies very rapidly over short ranges. A discussion is given in Chapters 9 and 11 of Gladwell and Sayers (1980) and Chapter 4 of Gladwell (1979a).
3Recommendations on Choice and Use of Available Functions
There are no functions which deal directly with complex equations. These may however be transformed to larger systems of real equations of the required form. Split each equation into its real and imaginary parts and solve for the real and imaginary parts of each component of the solution. Whilst this process doubles the size of the system and may not always be appropriate it does make available for use the full range of functions provided presently.
3.1Initial Value Problems
In general, for non-stiff first-order systems, Runge–Kutta (RK) functions should be used. For the usual requirement of integrating across a range the appropriate functions are d02pecandd02pqc; d02pqc is a setup function for d02pec. For more complex tasks there are forward and reverse communication variants (Section 7 in How to Use the NAG Library) of single step functions with corresponding interpolator; for direct communication these are d02pfcandd02psc, while for reverse communication these are d02pgc,d02phcandd02pjc. There are also related utility functions d02prc,d02ptcandd02puc. When a system is to be integrated over a long range or with relatively high accuracy requirements the variable-order, variable-step Adams' codes may be more efficient. The appropriate function in this case is d02cjc. For more complex tasks using an Adams' code there are a further
four related functions: d02qfc,d02qwc,d02qycandd02qzc.
For stiff systems, that is those which usually contain rapidly decaying transient components, the Backward Differentiation Formula (BDF) variable-order, variable-step codes should be used. The appropriate functions in this case are: the simple driver d02ejc, or the more comprehensive d02nec, based on the DASSL implementation (see Brenan et al. (1996)), and its related functions d02mcc,d02mwcandd02npc.
If you are not sure how to classify a problem, you are advised to perform some preliminary calculations with d02pec, which can indicate whether the system is stiff. We also advise performing some trial calculations with d02pec (RK), d02cjc (Adams) and d02ejc (BDF) so as to determine which type of function is best applied to the problem. The conclusions should be based on the computer time used and the number of evaluations of the derivative function . See Gladwell (1979b) for more details.
3.1.1Runge–Kutta functions
The basic RK functions are d02pfc (direct communication) and d02pgc (reverse communication) which take one integration step at a time. An alternative to d02pfc is d02pec, which provides output at user-specified points. The initialization of d02pec,d02pfcord02pgc and the setting of optional inputs, including choice of method, is made by a call to the setup function d02pqc.
Optional output information about error assessment, can be obtained by calls to the function d02puc while integration statistics are returned by the diagnostic function d02ptc.
d02psc may be used to interpolate on information produced by d02pfc to give solution and derivative values between the integration points. Similarly d02phc may be used to setup an interpolator on information produced by d02pgc, and d02pjc can evaluate that interpolator to give solution and derivative values between integration points; these functions are recommended when a high-order RK method is specified in the setup function. d02prc may be used to reset the end of the integration range whilst integrating using d02pfcord02pgc.
3.1.2Adams' functions
The general Adams' variable-order variable-step function is d02qfc, which provides a choice of automatic error control and the option of a sophisticated root-finding technique.
The initialization of d02qfc and the setting of optional inputs is made by a call to the setup function d02qwc.
d02qzc may be used to interpolate on information produced by
d02qfc
to give solution and derivative values between the integration points.
There is a simple driving function d02cjc, which integrates a system over a range and, optionally, computes intermediate output and/or determines the position where a specified function of the solution is zero.
3.1.3BDF functions
General functions for implicit ordinary differential equations with options for forms of numerical linear algebra are provided by a suite of functions using the DASSL implementation (see Brenan et al. (1996)) of the BDF. The main solver in this suite is d02nec is designed for solving systems of the form,
These formulations permits solution of differential/algebraic systems (DAEs). Additionally d02nec can be used to solve difficult algebraic problems by continuation; for example, the nonlinear algebraic problem
can be solved by integrating solutions of
where the solution to
is known.
Options for the solver must be supplied as arguments in an initial call to the setup function d02mwc; the Jacobian of the system to be solved can be considered to have a banded structure by a call to d02npc prior to calling the solver function; and integration can be continued by a call to d02mcc between calls to the solver d02nec.
There is a simple driving function d02ejc, which integrates a system over a range and, optionally, computes intermediate output and/or determines the position where a specified function of the solution is zero.
To
solve the equations arising in the BDF method an approximation to the Jacobian is required. This approximation can be calculated internally but you may supply an analytic expression. In most cases supplying a correct analytic expression will reduce the amount of computer time used.
3.2Boundary Value Problems
In general, for a nonlinear system of mixed order with separated boundary conditions, the collocation method (d02tlc and its associated functions) can be used. Problems of a more general nature can often be transformed into a suitable form for treatment by d02tlc, for example nonseparated boundary conditions or problems with unknown parameters (see Section 9 in d02tvc for details).
For simple boundary value problems with assigned boundary values you may prefer to use a code based on the finite difference method for which there is a function with simple calling sequence (d02gac).
For difficult boundary value problems, where you need to exercise some control over the calculation, and where the collocation method proves unsuccessful, you may wish to try the alternative
method of
finite differences (d02rac).
Note that it is not possible to make a fully automatic boundary value function, and you should be prepared to experiment with different starting values or a different function if the problem is at all difficult.
3.2.1Shooting methods
Functions employing shooting methods are currently only available from the FL Interface, see Section 3.2.2 for details.
3.2.2Finite difference methods
d02gac may be used for simple boundary value problems with assigned boundary values.
You may find that convergence is difficult to achieve using d02gac since only specifying the unknown boundary values and the position of the finite difference mesh is permitted. In such cases you may use d02rac, which permits specification of an initial estimate for the solution at all mesh points and allows the calculation to be influenced in other ways too. d02rac is designed to solve a general nonlinear two-point boundary value problem with nonlinear boundary conditions.
A function, d02gbc, is also supplied specifically for the general linear two-point boundary value problem written in a standard ‘textbook’ form.
You are advised to use interpolation functions from Chapter E01 to obtain solution values at points not on the final mesh.
3.2.3Chebyshev integration method
The Chebyshev integration method is an implementation of the Chebyshev collocation method which is fully described and compared against other implementations in Muite (2010). d02uec solves a linear constant coefficient boundary value problem using the Chebyshev integration formulation on a Chebyshev Gauss–Lobatto grid and solving in the coefficient space. The required Chebyshev Gauss–Lobatto grid points on a given arbitrary interval can first be generated using d02ucc. Then d02uac obtains the Chebyshev coefficients for the right-hand side (of system) function discretized on the obtained Chebyshev Gauss–Lobatto grid. d02uec then solves the problem in Chebyshev coefficient space using the integration formulation. Finally d02ubc evaluates the solution (or one of its lower order derivatives) from the set of Chebyshev coefficients returned by d02uec on the Chebyshev Gauss–Lobatto grid on . The set of functions can be used to solve up to fourth order boundary value problems.
3.3Summary of Recommended Functions
Problem
Function
RK Method
Adams' Method
BDF Method
Initial Value Problems Driver Functions
Integration over a range with optional intermediate output and optional determination of position where a function of the solution becomes zero
Ascher U M and Bader G (1987) A new basis implementation for a mixed order boundary value ODE solver SIAM J. Sci. Stat. Comput.8 483–500
Ascher U M, Christiansen J and Russell R D (1979) A collocation solver for mixed order systems of boundary value problems Math. Comput.33 659–679
Ascher U M, Mattheij R M M and Russell R D (1988) Numerical Solution of Boundary Value Problems for Ordinary Differential Equations Prentice–Hall
Berzins M, Brankin R W and Gladwell I (1988) Design of the stiff integrators in the NAG Library SIGNUM Newsl.23 16–23
Brenan K, Campbell S and Petzold L (1996) Numerical Solution of Initial-Value Problems in Differential-Algebraic Equations SIAM, Philadelphia
Gladwell I (1979a) The development of the boundary value codes in the ordinary differential equations chapter of the NAG Library Codes for Boundary Value Problems in Ordinary Differential Equations. Lecture Notes in Computer Science (eds B Childs, M Scott, J W Daniel, E Denman and P Nelson) 76 Springer–Verlag
Gladwell I (1979b) Initial value routines in the NAG Library ACM Trans. Math. Software5 386–400
Gladwell I (1987) The NAG Library boundary value codes Numerical Analysis Report134 Manchester University
Gladwell I and Sayers D K (ed.) (1980) Computational Techniques for Ordinary Differential Equations Academic Press
Hall G and Watt J M (ed.) (1976) Modern Numerical Methods for Ordinary Differential Equations Clarendon Press, Oxford
Keller H B (1992) Numerical Methods for Two-point Boundary-value Problems Dover, New York
Muite B K (2010) A numerical comparison of Chebyshev methods for solving fourth-order semilinear initial boundary value problems Journal of Computational and Applied Mathematics234(2) 317–342
Pryce J D (1986) Error estimation for phase-function shooting methods for Sturm–Liouville problems IMA J. Numer. Anal.6 103–123