D02EJF (PDF version)
D02 Chapter Contents
D02 Chapter Introduction
NAG Library Manual

NAG Library Routine Document

D02EJF

Note:  before using this routine, please read the Users' Note for your implementation to check the interpretation of bold italicised terms and other implementation-dependent details.

+ Contents

    1  Purpose
    7  Accuracy

1  Purpose

D02EJF integrates a stiff system of first-order ordinary differential equations over an interval with suitable initial conditions, using a variable-order, variable-step method implementing the Backward Differentiation Formulae (BDF), until a user-specified function, if supplied, of the solution is zero, and returns the solution at points specified by you, if desired.

2  Specification

SUBROUTINE D02EJF ( X, XEND, N, Y, FCN, PEDERV, TOL, RELABS, OUTPUT, G, W, IW, IFAIL)
INTEGER  N, IW, IFAIL
REAL (KIND=nag_wp)  X, XEND, Y(N), TOL, G, W(IW)
CHARACTER(1)  RELABS
EXTERNAL  FCN, PEDERV, OUTPUT, G

3  Description

D02EJF advances the solution of a system of ordinary differential equations
yi = fi x,y1,y2,,yn ,   i=1,2,,n ,
from x=X to x=XEND using a variable-order, variable-step method implementing the BDF. The system is defined by FCN, which evaluates fi in terms of x and y1 , y2 , , yn  (see Section 5). The initial values of y1 , y2 , , yn  must be given at x=X.
The solution is returned via the OUTPUT at points specified by you, if desired: this solution is obtained by C1 interpolation on solution values produced by the method. As the integration proceeds a check can be made on the user-specified function gx,y to determine an interval where it changes sign. The position of this sign change is then determined accurately by C1 interpolation to the solution. It is assumed that gx,y is a continuous function of the variables, so that a solution of gx,y=0.0 can be determined by searching for a change in sign in gx,y. The accuracy of the integration, the interpolation and, indirectly, of the determination of the position where gx,y=0.0, is controlled by the parameters TOL and RELABS. The Jacobian of the system y=fx,y may be supplied in PEDERV, if it is available.
For a description of BDF and their practical implementation see Hall and Watt (1976).

4  References

Hall G and Watt J M (ed.) (1976) Modern Numerical Methods for Ordinary Differential Equations Clarendon Press, Oxford

5  Parameters

1:     X – REAL (KIND=nag_wp)Input/Output
On entry: the initial value of the independent variable x.
Constraint: XXEND.
On exit: if G is supplied by you, X contains the point where gx,y=0.0, unless gx,y0.0 anywhere on the range X to XEND, in which case, X will contain XEND. If G is not supplied X contains XEND, unless an error has occurred, when it contains the value of x at the error.
2:     XEND – REAL (KIND=nag_wp)Input
On entry: the final value of the independent variable. If XEND<X, integration will proceed in the negative direction.
Constraint: XENDX.
3:     N – INTEGERInput
On entry: n, the number of differential equations.
Constraint: N1.
4:     Y(N) – REAL (KIND=nag_wp) arrayInput/Output
On entry: the initial values of the solution y1,y2,,yn at x=X.
On exit: the computed values of the solution at the final point x=X.
5:     FCN – SUBROUTINE, supplied by the user.External Procedure
FCN must evaluate the functions fi (i.e., the derivatives yi) for given values of its arguments x,y1,,yn.
The specification of FCN is:
SUBROUTINE FCN ( X, Y, F)
REAL (KIND=nag_wp)  X, Y(n), F(n)
where n is the value of N in the call of D02EJF.
1:     X – REAL (KIND=nag_wp)Input
On entry: x, the value of the independent variable.
2:     Y(n) – REAL (KIND=nag_wp) arrayInput
On entry: yi, for i=1,2,,n, the value of the variable.
3:     F(n) – REAL (KIND=nag_wp) arrayOutput
On exit: the value of fi, for i=1,2,,n.
FCN must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which D02EJF is called. Parameters denoted as Input must not be changed by this procedure.
6:     PEDERV – SUBROUTINE, supplied by the NAG Library or the user.External Procedure
PEDERV must evaluate the Jacobian of the system (that is, the partial derivatives fi yj ) for given values of the variables x,y1,y2,,yn.
The specification of PEDERV is:
SUBROUTINE PEDERV ( X, Y, PW)
REAL (KIND=nag_wp)  X, Y(n), PW(*)
where n is the value of N in the call of D02EJF.
1:     X – REAL (KIND=nag_wp)Input
On entry: x, the value of the independent variable.
2:     Y(n) – REAL (KIND=nag_wp) arrayInput
On entry: yi, for i=1,2,,n, the value of the variable.
3:     PW(*) – REAL (KIND=nag_wp) arrayOutput
On exit: PWji must contain the value of fi yj , for i=1,2,,n and j=1,2,,n.
PEDERV must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which D02EJF is called. Parameters denoted as Input must not be changed by this procedure.
If you do not wish to supply the Jacobian, the actual parameter PEDERV must be the dummy routine D02EJY. (D02EJY is included in the NAG Library.)
7:     TOL – REAL (KIND=nag_wp)Input/Output
On entry: must be set to a positive tolerance for controlling the error in the integration. Hence TOL affects the determination of the position where gx,y=0.0, if G is supplied.
D02EJF has been designed so that, for most problems, a reduction in TOL leads to an approximately proportional reduction in the error in the solution. However, the actual relation between TOL and the accuracy achieved cannot be guaranteed. You are strongly recommended to call D02EJF with more than one value for TOL and to compare the results obtained to estimate their accuracy. In the absence of any prior knowledge, you might compare the results obtained by calling D02EJF with TOL=10-p and TOL=10-p-1 if p correct decimal digits are required in the solution.
Constraint: TOL>0.0.
On exit: normally unchanged. However if the range X to XEND is so short that a small change in TOL is unlikely to make any change in the computed solution, then, on return, TOL has its sign changed.
8:     RELABS – CHARACTER(1)Input
On entry: the type of error control. At each step in the numerical solution an estimate of the local error, est, is made. For the current step to be accepted the following condition must be satisfied:
est = 1n i=1 n ei / τr × yi + τa 2 1.0
where τr and τa are defined by
RELABS τr τa
'M' TOL TOL
'A' 0.0 TOL
'R' TOL ε
'D' TOL ε
where ε is a small machine-dependent number and ei is an estimate of the local error at yi, computed internally. If the appropriate condition is not satisfied, the step size is reduced and the solution is recomputed on the current step. If you wish to measure the error in the computed solution in terms of the number of correct decimal places, then RELABS should be set to 'A' on entry, whereas if the error requirement is in terms of the number of correct significant digits, then RELABS should be set to 'R'. If you prefer a mixed error test, then RELABS should be set to 'M', otherwise if you have no preference, RELABS should be set to the default 'D'. Note that in this case 'D' is taken to be 'R'.
Constraint: RELABS='A', 'M', 'R' or 'D'.
9:     OUTPUT – SUBROUTINE, supplied by the NAG Library or the user.External Procedure
OUTPUT permits access to intermediate values of the computed solution (for example to print or plot them), at successive user-specified points. It is initially called by D02EJF with XSOL=X (the initial value of x). You must reset XSOL to the next point (between the current XSOL and XEND) where OUTPUT is to be called, and so on at each call to OUTPUT. If, after a call to OUTPUT, the reset point XSOL is beyond XEND, D02EJF will integrate to XEND with no further calls to OUTPUT; if a call to OUTPUT is required at the point XSOL=XEND, then XSOL must be given precisely the value XEND.
The specification of OUTPUT is:
SUBROUTINE OUTPUT ( XSOL, Y)
REAL (KIND=nag_wp)  XSOL, Y(n)
where n is the value of N in the call of D02EJF.
1:     XSOL – REAL (KIND=nag_wp)Input/Output
On entry: x, the value of the independent variable.
On exit: you must set XSOL to the next value of x at which OUTPUT is to be called.
2:     Y(n) – REAL (KIND=nag_wp) arrayInput
On entry: the computed solution at the point XSOL.
OUTPUT must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which D02EJF is called. Parameters denoted as Input must not be changed by this procedure.
If you do not wish to access intermediate output, the actual parameter OUTPUT must be the dummy routine D02EJX. (D02EJX is included in the NAG Library.)
10:   G – REAL (KIND=nag_wp) FUNCTION, supplied by the user.External Procedure
G must evaluate the function gx,y for specified values x,y. It specifies the function g for which the first position x where gx,y=0 is to be found.
The specification of G is:
FUNCTION G ( X, Y)
REAL (KIND=nag_wp) G
REAL (KIND=nag_wp)  X, Y(n)
where n is the value of N in the call of D02EJF.
1:     X – REAL (KIND=nag_wp)Input
On entry: x, the value of the independent variable.
2:     Y(n) – REAL (KIND=nag_wp) arrayInput
On entry: yi, for i=1,2,,n, the value of the variable.
G must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which D02EJF is called. Parameters denoted as Input must not be changed by this procedure.
If you do not require the root-finding option, the actual parameter G must be the dummy routine D02EJW. (D02EJW is included in the NAG Library.)
11:   W(IW) – REAL (KIND=nag_wp) arrayWorkspace
12:   IW – INTEGERInput
On entry: the dimension of the array W as declared in the (sub)program from which D02EJF is called.
Constraint: IW12+N×N+50.
13:   IFAIL – INTEGERInput/Output
On entry: IFAIL must be set to 0, -1​ or ​1. If you are unfamiliar with this parameter you should refer to Section 3.3 in the Essential Introduction for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value -1​ or ​1 is recommended. If the output of error messages is undesirable, then the value 1 is recommended. Otherwise, if you are not familiar with this parameter, the recommended value is 0. When the value -1​ or ​1 is used it is essential to test the value of IFAIL on exit.
On exit: IFAIL=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6  Error Indicators and Warnings

If on entry IFAIL=0 or -1, explanatory error messages are output on the current error message unit (as defined by X04AAF).
Errors or warnings detected by the routine:
IFAIL=1
On entry,TOL0.0,
orX=XEND,
orN0,
orRELABS'M','A','R','D',
orIW<12+N×N+50.
IFAIL=2
With the given value of TOL, no further progress can be made across the integration range from the current point x=X. (See Section 5 for a discussion of this error test.) The components Y1,Y2,,YN contain the computed values of the solution at the current point x=X. If you have supplied G, then no point at which gx,y changes sign has been located up to the point x=X.
IFAIL=3
TOL is too small for D02EJF to take an initial step. X and Y1,Y2,,YN retain their initial values.
IFAIL=4
XSOL lies behind X in the direction of integration, after the initial call to OUTPUT, if the OUTPUT option was selected.
IFAIL=5
A value of XSOL returned by the OUTPUT lies behind the last value of XSOL in the direction of integration, if the OUTPUT option was selected.
IFAIL=6
At no point in the range X to XEND did the function gx,y change sign, if G was supplied. It is assumed that gx,y=0 has no solution.
IFAIL=7 (C05AZF)
A serious error has occurred in an internal call to the specified routine. Check all subroutine calls and array dimensions. Seek expert help.
IFAIL=8 (D02XKF)
A serious error has occurred in an internal call to the specified routine. Check all subroutine calls and array dimensions. Seek expert help.
IFAIL=9
A serious error has occurred in an internal call to an interpolation routine. Check all (sub)program calls and array dimensions. Seek expert help.

7  Accuracy

The accuracy of the computation of the solution vector Y may be controlled by varying the local error tolerance TOL. In general, a decrease in local error tolerance should lead to an increase in accuracy. You are advised to choose RELABS='R' unless you have a good reason for a different choice. It is particularly appropriate if the solution decays.
If the problem is a root-finding one, then the accuracy of the root determined will depend strongly on g x  and g yi , for i=1,2,,n. Large values for these quantities may imply large errors in the root.

8  Further Comments

If more than one root is required, then to determine the second and later roots D02EJF may be called again starting a short distance past the previously determined roots. Alternatively you may construct your own root-finding code using D02NBF (and other routines in sub-chapter D02M–N), C05AZF and D02XKF.
If it is easy to code, you should supply PEDERV. However, it is important to be aware that if PEDERV is coded incorrectly, a very inefficient integration may result and possibly even a failure to complete the integration (see IFAIL=2).

9  Example

We illustrate the solution of five different problems. In each case the differential system is the well-known stiff Robertson problem.
a = -0.04a+104bc b = 0.04a-104bc -3×107b2 c = -3×107b2
with initial conditions a=1.0, b=c=0.0 at x=0.0. We solve each of the following problems with local error tolerances 1.0E−3 and 1.0E−4.
(i) To integrate to x=10.0 producing output at intervals of 2.0 until a point is encountered where a=0.9. The Jacobian is calculated numerically.
(ii) As (i) but with the Jacobian calculated analytically.
(iii) As (i) but with no intermediate output.
(iv) As (i) but with no termination on a root-finding condition.
(v) Integrating the equations as in (i) but with no intermediate output and no root-finding termination condition.

9.1  Program Text

Program Text (d02ejfe.f90)

9.2  Program Data

Program Data (d02ejfe.d)

9.3  Program Results

Program Results (d02ejfe.r)

Produced by GNUPLOT 4.4 patchlevel 0 0 0.2 0.4 0.6 0.8 1 0 2 4 6 8 10 Solution (a,b,c) x Example Program ODE Solution using BDF Method with Root-finding a b c a = 0.9

D02EJF (PDF version)
D02 Chapter Contents
D02 Chapter Introduction
NAG Library Manual

© The Numerical Algorithms Group Ltd, Oxford, UK. 2012