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

NAG Library Routine Document

D02RAF

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

D02RAF solves a two-point boundary value problem with general boundary conditions for a system of ordinary differential equations, using a deferred correction technique and Newton iteration.

2  Specification

SUBROUTINE D02RAF ( N, MNP, NP, NUMBEG, NUMMIX, TOL, INIT, X, Y, LDY, ABT, FCN, G, IJAC, JACOBF, JACOBG, DELEPS, JACEPS, JACGEP, WORK, LWORK, IWORK, LIWORK, IFAIL)
INTEGER  N, MNP, NP, NUMBEG, NUMMIX, INIT, LDY, IJAC, LWORK, IWORK(LIWORK), LIWORK, IFAIL
REAL (KIND=nag_wp)  TOL, X(MNP), Y(LDY,MNP), ABT(N), DELEPS, WORK(LWORK)
EXTERNAL  FCN, G, JACOBF, JACOBG, JACEPS, JACGEP

3  Description

D02RAF solves a two-point boundary value problem for a system of n ordinary differential equations in the interval a,b with b>a. The system is written in the form
yi = f i x, y 1 , y 2 ,, y n ,   i=1,2,,n (1)
and the derivatives fi are evaluated by FCN. With the differential equations (1) must be given a system of n (nonlinear) boundary conditions
gi ya,yb = 0 ,   i=1,2,,n ,
where
y x = y 1 x , y 2 x ,, y n x T . (2)
The functions gi are evaluated by G. The solution is computed using a finite difference technique with deferred correction allied to a Newton iteration to solve the finite difference equations. The technique used is described fully in Pereyra (1979).
You must supply an absolute error tolerance and may also supply an initial mesh for the finite difference equations and an initial approximate solution (alternatively a default mesh and approximation are used). The approximate solution is corrected using Newton iteration and deferred correction. Then, additional points are added to the mesh and the solution is recomputed with the aim of making the error everywhere less than your tolerance and of approximately equidistributing the error on the final mesh. The solution is returned on this final mesh.
If the solution is required at a few specific points then these should be included in the initial mesh. If, on the other hand, the solution is required at several specific points then you should use the interpolation routines provided in Chapter E01 if these points do not themselves form a convenient mesh.
The Newton iteration requires Jacobian matrices
fi yj , gi yja  and  gi yjb .
These may be supplied through JACOBF for fi yj  and JACOBG for the others. Alternatively the Jacobians may be calculated by numerical differentiation using the algorithm described in Curtis et al. (1974).
For problems of the type (1) and (2) for which it is difficult to determine an initial approximation from which the Newton iteration will converge, a continuation facility is provided. You must set up a family of problems
y = f x,y,ε ,   g ya,yb,ε = 0 , (3)
where f = f 1 , f 2 ,, f n T  etc., and where ε is a continuation parameter. The choice ε=0 must give a problem (3) which is easy to solve and ε=1 must define the problem whose solution is actually required. The routine solves a sequence of problems with ε values
0 = ε1 < ε2 < < εp = 1 . (4)
The number p and the values εi are chosen by the routine so that each problem can be solved using the solution of its predecessor as a starting approximation. Jacobians f ε  and g ε  are required and they may be supplied by you via JACEPS and JACGEP respectively or may be computed by numerical differentiation.

4  References

Curtis A R, Powell M J D and Reid J K (1974) On the estimation of sparse Jacobian matrices J. Inst. Maths. Applics. 13 117–119
Pereyra V (1979) PASVA3: An adaptive finite-difference Fortran program for first order nonlinear, ordinary boundary problems 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

5  Parameters

1:     N – INTEGERInput
On entry: n, the number of differential equations.
Constraint: N>0.
2:     MNP – INTEGERInput
On entry: MNP must be set to the maximum permitted number of points in the finite difference mesh. If LWORK or LIWORK are too small then internally MNP will be replaced by the maximum permitted by these values. (A warning message will be output if on entry IFAIL is set to obtain monitoring information.)
Constraint: MNP32.
3:     NP – INTEGERInput/Output
On entry: must be set to the number of points to be used in the initial mesh.
Constraint: 4NPMNP.
On exit: the number of points in the final mesh.
4:     NUMBEG – INTEGERInput
On entry: the number of left-hand boundary conditions (that is the number involving ya only).
Constraint: 0NUMBEG<N.
5:     NUMMIX – INTEGERInput
On entry: the number of coupled boundary conditions (that is the number involving both ya and yb).
Constraint: 0NUMMIXN-NUMBEG.
6:     TOL – REAL (KIND=nag_wp)Input
On entry: a positive absolute error tolerance. If
a=x1<x2<<xNP=b
is the final mesh, zjxi is the jth component of the approximate solution at xi, and yjx is the jth component of the true solution of (1) and (2), then, except in extreme circumstances, it is expected that
zjxi-yjxiTOL,  i=1,2,,NP​ and ​j=1,2,,n. (5)
Constraint: TOL>0.0.
7:     INIT – INTEGERInput
On entry: indicates whether you wish to supply an initial mesh and approximate solution (INIT=1) or whether default values are to be used, (INIT=0).
Constraint: INIT=0 or 1.
8:     X(MNP) – REAL (KIND=nag_wp) arrayInput/Output
On entry: you must set X1=a and XNP=b. If INIT=0 on entry a default equispaced mesh will be used, otherwise you must specify a mesh by setting Xi=xi, for i=2,3,,NP-1.
Constraints:
  • if INIT=0, X1<XNP;
  • if INIT=1, X1<X2<<XNP.
On exit: X1,X2,,XNP define the final mesh (with the returned value of NP) and X1=a and XNP=b.
9:     Y(LDY,MNP) – REAL (KIND=nag_wp) arrayInput/Output
On entry: if INIT=0, then Y need not be set.
If INIT=1, then the array Y must contain an initial approximation to the solution such that Yji contains an approximation to
yjxi,  i=1,2,,NP​ and ​j=1,2,,n.
On exit: the approximate solution zjxi satisfying (5) on the final mesh, that is
Yji=zjxi,  i=1,2,,NP​ and ​j=1,2,,n,
where NP is the number of points in the final mesh. If an error has occurred then Y contains the latest approximation to the solution. The remaining columns of Y are not used.
10:   LDY – INTEGERInput
On entry: the first dimension of the array Y as declared in the (sub)program from which D02RAF is called.
Constraint: LDYN.
11:   ABT(N) – REAL (KIND=nag_wp) arrayOutput
On exit: ABTi, for i=1,2,,n, holds the largest estimated error (in magnitude) of the ith component of the solution over all mesh points.
12:   FCN – SUBROUTINE, supplied by the user.External Procedure
FCN must evaluate the functions fi (i.e., the derivatives yi) at a general point x for a given value of ε, the continuation parameter (see Section 3).
The specification of FCN is:
SUBROUTINE FCN ( X, EPS, Y, F, N)
INTEGER  N
REAL (KIND=nag_wp)  X, EPS, Y(N), F(N)
1:     X – REAL (KIND=nag_wp)Input
On entry: x, the value of the independent variable.
2:     EPS – REAL (KIND=nag_wp)Input
On entry: ε, the value of the continuation parameter. This is 1 if continuation is not being used.
3:     Y(N) – REAL (KIND=nag_wp) arrayInput
On entry: yi, for i=1,2,,n, the values of the dependent variables at x.
4:     F(N) – REAL (KIND=nag_wp) arrayOutput
On exit: the values of the derivatives fi evaluated at x given ε, for i=1,2,,n.
5:     N – INTEGERInput
On entry: n, the number of equations.
FCN must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which D02RAF is called. Parameters denoted as Input must not be changed by this procedure.
13:   G – SUBROUTINE, supplied by the user.External Procedure
G must evaluate the boundary conditions in equation (3) and place them in the array BC.
The specification of G is:
SUBROUTINE G ( EPS, YA, YB, BC, N)
INTEGER  N
REAL (KIND=nag_wp)  EPS, YA(N), YB(N), BC(N)
1:     EPS – REAL (KIND=nag_wp)Input
On entry: ε, the value of the continuation parameter. This is 1 if continuation is not being used.
2:     YA(N) – REAL (KIND=nag_wp) arrayInput
On entry: the value yia, for i=1,2,,n.
3:     YB(N) – REAL (KIND=nag_wp) arrayInput
On entry: the value yib, for i=1,2,,n.
4:     BC(N) – REAL (KIND=nag_wp) arrayOutput
On exit: the values gi ya,yb,ε , for i=1,2,,n. These must be ordered as follows:
(i) first, the conditions involving only ya (see NUMBEG);
(ii) next, the NUMMIX coupled conditions involving both ya and yb (see NUMMIX); and,
(iii) finally, the conditions involving only yb (N-NUMBEG-NUMMIX).
5:     N – INTEGERInput
On entry: n, the number of equations.
G must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which D02RAF is called. Parameters denoted as Input must not be changed by this procedure.
14:   IJAC – INTEGERInput
On entry: indicates whether or not you are supplying Jacobian evaluation routines.
IJAC0
You must supply JACOBF and JACOBG and also, when continuation is used, JACEPS and JACGEP.
IJAC=0
Numerical differentiation is used to calculate the Jacobian and the routines D02GAW, D02GAX, D02GAY and D02GAZ respectively may be used as the dummy parameters.
15:   JACOBF – SUBROUTINE, supplied by the NAG Library or the user.External Procedure
JACOBF evaluates the Jacobian fi yj , for i=1,2,,n and j=1,2,,n, given x and yj, for j=1,2,,n.
If all Jacobians are to be approximated internally by numerical differentiation then it must be replaced by the NAG defined null function pointer NULLFN.
The specification of JACOBF is:
SUBROUTINE JACOBF ( X, EPS, Y, F, N)
INTEGER  N
REAL (KIND=nag_wp)  X, EPS, Y(N), F(N,N)
1:     X – REAL (KIND=nag_wp)Input
On entry: x, the value of the independent variable.
2:     EPS – REAL (KIND=nag_wp)Input
On entry: ε, the value of the continuation parameter. This is 1 if continuation is not being used.
3:     Y(N) – REAL (KIND=nag_wp) arrayInput
On entry: yi, for i=1,2,,n, the values of the dependent variables at x.
4:     F(N,N) – REAL (KIND=nag_wp) arrayOutput
On exit: Fji must be set to the value of fi yj , evaluated at the point x,y, for i=1,2,,n and j=1,2,,n.
5:     N – INTEGERInput
On entry: n, the number of equations.
JACOBF must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which D02RAF is called. Parameters denoted as Input must not be changed by this procedure.
16:   JACOBG – SUBROUTINE, supplied by the NAG Library or the user.External Procedure
JACOBG evaluates the Jacobians gi yja  and gi yjb . The ordering of the rows of AJ and BJ must correspond to the ordering of the boundary conditions described in the specification of G.
If all Jacobians are to be approximated internally by numerical differentiation then it must be replaced by the NAG defined null function pointer NULLFN.
The specification of JACOBG is:
SUBROUTINE JACOBG ( EPS, YA, YB, AJ, BJ, N)
INTEGER  N
REAL (KIND=nag_wp)  EPS, YA(N), YB(N), AJ(N,N), BJ(N,N)
1:     EPS – REAL (KIND=nag_wp)Input
On entry: ε, the value of the continuation parameter. This is 1 if continuation is not being used.
2:     YA(N) – REAL (KIND=nag_wp) arrayInput
On entry: the value yia, for i=1,2,,n.
3:     YB(N) – REAL (KIND=nag_wp) arrayInput
On entry: the value yib, for i=1,2,,n.
4:     AJ(N,N) – REAL (KIND=nag_wp) arrayOutput
On exit: AJij must be set to the value gi yja , for i=1,2,,n and j=1,2,,n.
5:     BJ(N,N) – REAL (KIND=nag_wp) arrayOutput
On exit: BJij must be set to the value gi yjb , for i=1,2,,n and j=1,2,,n.
6:     N – INTEGERInput
On entry: n, the number of equations.
JACOBG must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which D02RAF is called. Parameters denoted as Input must not be changed by this procedure.
17:   DELEPS – REAL (KIND=nag_wp)Input/Output
On entry: must be given a value which specifies whether continuation is required. If DELEPS0.0 or DELEPS1.0 then it is assumed that continuation is not required. If 0.0<DELEPS<1.0 then it is assumed that continuation is required unless DELEPS<machine precision when an error exit is taken. DELEPS is used as the increment ε2-ε1 (see (4)) and the choice DELEPS=0.1 is recommended.
On exit: an overestimate of the increment εp-εp-1 (in fact the value of the increment which would have been tried if the restriction εp=1 had not been imposed). If continuation was not requested then DELEPS=0.0.
If continuation is not requested then JACEPS and JACGEP may each be replaced by dummy actual parameters in the call to D02RAF. (D02GAW and D02GAX respectively may be used as the dummy parameters.)
18:   JACEPS – SUBROUTINE, supplied by the NAG Library or the user.External Procedure
JACEPS evaluates the derivative fi ε  given x and y if continuation is being used.
If all Jacobians (derivatives) are to be approximated internally by numerical differentiation, or continuation is not being used, then it must be replaced by the NAG defined null function pointer NULLFN.
The specification of JACEPS is:
SUBROUTINE JACEPS ( X, EPS, Y, F, N)
INTEGER  N
REAL (KIND=nag_wp)  X, EPS, Y(N), F(N)
1:     X – REAL (KIND=nag_wp)Input
On entry: x, the value of the independent variable.
2:     EPS – REAL (KIND=nag_wp)Input
On entry: ε, the value of the continuation parameter.
3:     Y(N) – REAL (KIND=nag_wp) arrayInput
On entry: the solution values yi, for i=1,2,,n, at the point x.
4:     F(N) – REAL (KIND=nag_wp) arrayOutput
On exit: Fi must contain the value fi ε  at the point x,y, for i=1,2,,n.
5:     N – INTEGERInput
On entry: n, the number of equations.
JACEPS must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which D02RAF is called. Parameters denoted as Input must not be changed by this procedure.
19:   JACGEP – SUBROUTINE, supplied by the NAG Library or the user.External Procedure
JACGEP evaluates the derivatives gi ε  if continuation is being used.
If all Jacobians (derivatives) are to be approximated internally by numerical differentiation, or continuation is not being used, then it must be replaced by the NAG defined null function pointer NULLFN.
The specification of JACGEP is:
SUBROUTINE JACGEP ( EPS, YA, YB, BCEP, N)
INTEGER  N
REAL (KIND=nag_wp)  EPS, YA(N), YB(N), BCEP(N)
1:     EPS – REAL (KIND=nag_wp)Input
On entry: ε, the value of the continuation parameter.
2:     YA(N) – REAL (KIND=nag_wp) arrayInput
On entry: the value of yia, for i=1,2,,n.
3:     YB(N) – REAL (KIND=nag_wp) arrayInput
On entry: the value of yib, for i=1,2,,n.
4:     BCEP(N) – REAL (KIND=nag_wp) arrayOutput
On exit: BCEPi must contain the value of gi ε , for i=1,2,,n.
5:     N – INTEGERInput
On entry: n, the number of equations.
JACGEP must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which D02RAF is called. Parameters denoted as Input must not be changed by this procedure.
20:   WORK(LWORK) – REAL (KIND=nag_wp) arrayWorkspace
21:   LWORK – INTEGERInput
On entry: the dimension of the array WORK as declared in the (sub)program from which D02RAF is called.
Constraint: LWORKMNP×3N2+6N+2+4N2+3N.
22:   IWORK(LIWORK) – INTEGER arrayWorkspace
23:   LIWORK – INTEGERInput
On entry: the dimension of the array IWORK as declared in the (sub)program from which D02RAF is called.
Constraints:
  • if IJAC0, LIWORKMNP×2×N+1+N;
  • if IJAC=0, LIWORKMNP×2×N+1+N2+4×N+2.
24:   IFAIL – INTEGERInput/Output
For this routine, the normal use of IFAIL is extended to control the printing of error and warning messages as well as specifying hard or soft failure (see Section 3.3 in the Essential Introduction).
On entry: IFAIL must be set to a value with the decimal expansion cba, where each of the decimal digits c, b and a must have a value of 0 or 1.
a=0 specifies hard failure, otherwise soft failure;
b=0 suppresses error messages, otherwise error messages will be printed (see Section 6);
c=0 suppresses warning messages, otherwise warning messages will be printed (see Section 6).
The recommended value for inexperienced users is 110 (i.e., hard failure with all messages printed).
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
One or more of the parameters N, MNP, NP, NUMBEG, NUMMIX, TOL, DELEPS, LWORK or LIWORK is incorrectly set, or X1XNP or the mesh points Xi are not in strictly ascending order.
IFAIL=2
A finer mesh is required for the accuracy requested; that is MNP is not large enough. This error exit normally occurs when the problem being solved is difficult (for example, there is a boundary layer) and high accuracy is requested. A poor initial choice of mesh points will make this error exit more likely.
IFAIL=3
The Newton iteration has failed to converge. There are several possible causes for this error:
(i) faulty coding in one of the Jacobian calculation routines;
(ii) if IJAC=0 then inaccurate Jacobians may have been calculated numerically (this is a very unlikely cause); or,
(iii) a poor initial mesh or initial approximate solution has been selected either by you or by default or there are not enough points in the initial mesh. Possibly, you should try the continuation facility.
IFAIL=4
The Newton iteration has reached round-off error level. It could be however that the answer returned is satisfactory. The error is likely to occur if too high an accuracy is requested.
IFAIL=5
The Jacobian calculated by JACOBG (or the equivalent matrix calculated by numerical differentiation) is singular. This may occur due to faulty coding of JACOBG or, in some circumstances, to a zero initial choice of approximate solution (such as is chosen when INIT=0).
IFAIL=6
There is no dependence on ε when continuation is being used. This can be due to faulty coding of JACEPS or JACGEP or, in some circumstances, to a zero initial choice of approximate solution (such as is chosen when INIT=0).
IFAIL=7
DELEPS is required to be less than machine precision for continuation to proceed. It is likely that either the problem (3) has no solution for some value near the current value of ε (see the advisory print out from D02RAF) or that the problem is so difficult that even with continuation it is unlikely to be solved using this routine. If the latter cause is suspected then using more mesh points initially may help.
IFAIL=8
IFAIL=9
A serious error has occurred in an internal call. Check all array subscripts and subroutine parameter lists in calls to D02RAF. Seek expert help.

7  Accuracy

The solution returned by the routine will be accurate to your tolerance as defined by the relation (5) except in extreme circumstances. The final error estimate over the whole mesh for each component is given in the array ABT. If too many points are specified in the initial mesh, the solution may be more accurate than requested and the error may not be approximately equidistributed.

8  Further Comments

There are too many factors present to quantify the timing. The time taken by D02RAF is negligible only on very simple problems.
You are strongly recommended to set IFAIL to obtain self-explanatory error messages, and also monitoring information about the course of the computation. Monitoring information is written to a logical advisory message unit which normally default to the same unit number as the error message unit (see Section 3.4 in the Essential Introduction for details); the advisory message unit number can be changed by calling X04ABF.
In the case where you wish to solve a sequence of similar problems, the use of the final mesh and solution from one case as the initial mesh is strongly recommended for the next.

9  Example

This example solves the differential equation
y=-yy-2ε1-y2
with ε=1 and boundary conditions
y0=y0=0,  y10=1
to an accuracy specified by TOL=1.0E−4. The continuation facility is used with the continuation parameter ε introduced as in the differential equation above and with DELEPS=0.1 initially. (The continuation facility is not needed for this problem and is used here for illustration.)

9.1  Program Text

Program Text (d02rafe.f90)

9.2  Program Data

Program Data (d02rafe.d)

9.3  Program Results

Program Results (d02rafe.r)

Produced by GNUPLOT 4.4 patchlevel 0 0 2 4 6 8 10 0 2 4 6 8 10 0 0.2 0.4 0.6 0.8 1 1.2 1.4 1.6 1.8 y y' and y'' x Example Program Solution of Third-order BVP y y' y''

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

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