NAG Library Routine Document
D02RAF
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
ordinary differential equations in the interval
with
. The system is written in the form
and the derivatives
are evaluated by
FCN. With the differential equations
(1) must be given a system of
(nonlinear) boundary conditions
where
The functions
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
These may be supplied through
JACOBF for
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
where
etc., and where
is a continuation parameter. The choice
must give a problem
(3) which is easy to solve and
must define the problem whose solution is actually required. The routine solves a sequence of problems with
values
The number
and the values
are chosen by the routine so that each problem can be solved using the solution of its predecessor as a starting approximation. Jacobians
and
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: , the number of differential equations.
Constraint:
.
- 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:
.
- 3: NP – INTEGERInput/Output
On entry: must be set to the number of points to be used in the initial mesh.
Constraint:
.
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 only).
Constraint:
.
- 5: NUMMIX – INTEGERInput
On entry: the number of coupled boundary conditions (that is the number involving both and ).
Constraint:
.
- 6: TOL – REAL (KIND=nag_wp)Input
On entry: a positive absolute error tolerance. If
is the final mesh,
is the
th component of the approximate solution at
, and
is the
th component of the true solution of
(1) and
(2), then, except in extreme circumstances, it is expected that
Constraint:
.
- 7: INIT – INTEGERInput
On entry: indicates whether you wish to supply an initial mesh and approximate solution () or whether default values are to be used, ().
Constraint:
or .
- 8: X(MNP) – REAL (KIND=nag_wp) arrayInput/Output
On entry: you must set and . If on entry a default equispaced mesh will be used, otherwise you must specify a mesh by setting
, for .
Constraints:
- if , ;
- if , .
On exit:
define the final mesh (with the returned value of
NP) and
and
.
- 9: Y(LDY,MNP) – REAL (KIND=nag_wp) arrayInput/Output
On entry: if
, then
Y need not be set.
If
, then the array
Y must contain an initial approximation to the solution such that
contains an approximation to
On exit: the approximate solution
satisfying
(5) on the final mesh, that is
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:
.
- 11: ABT(N) – REAL (KIND=nag_wp) arrayOutput
On exit: , for , holds the largest estimated error (in magnitude) of the th component of the solution over all mesh points.
- 12: FCN – SUBROUTINE, supplied by the user.External Procedure
FCN must evaluate the functions
(i.e., the derivatives
) at a general point
for a given value of
, the continuation parameter (see
Section 3).
The specification of
FCN is:
INTEGER |
N |
REAL (KIND=nag_wp) |
X, EPS, Y(N), F(N) |
|
- 1: X – REAL (KIND=nag_wp)Input
On entry: , the value of the independent variable.
- 2: EPS – REAL (KIND=nag_wp)Input
On entry: , the value of the continuation parameter. This is if continuation is not being used.
- 3: Y(N) – REAL (KIND=nag_wp) arrayInput
On entry: , for , the values of the dependent variables at .
- 4: F(N) – REAL (KIND=nag_wp) arrayOutput
On exit: the values of the derivatives
evaluated at given , for .
- 5: N – INTEGERInput
On entry: , 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:
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 if continuation is not being used.
- 2: YA(N) – REAL (KIND=nag_wp) arrayInput
On entry: the value
, for .
- 3: YB(N) – REAL (KIND=nag_wp) arrayInput
On entry: the value
, for .
- 4: BC(N) – REAL (KIND=nag_wp) arrayOutput
On exit: the values
, for
. These must be ordered as follows:
(i) |
first, the conditions involving only (see NUMBEG); |
(ii) |
next, the NUMMIX coupled conditions involving both and (see NUMMIX); and, |
(iii) |
finally, the conditions involving only (). |
- 5: N – INTEGERInput
On entry: , 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.
- You must supply JACOBF and JACOBG and also, when continuation is used, JACEPS and JACGEP.
- 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
, for
and
, given
and
, for
.
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: , the value of the independent variable.
- 2: EPS – REAL (KIND=nag_wp)Input
On entry: , the value of the continuation parameter. This is if continuation is not being used.
- 3: Y(N) – REAL (KIND=nag_wp) arrayInput
On entry: , for , the values of the dependent variables at .
- 4: F(N,N) – REAL (KIND=nag_wp) arrayOutput
On exit: must be set to the value of , evaluated at the point , for and .
- 5: N – INTEGERInput
On entry: , 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
and
. 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:
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 if continuation is not being used.
- 2: YA(N) – REAL (KIND=nag_wp) arrayInput
On entry: the value
, for .
- 3: YB(N) – REAL (KIND=nag_wp) arrayInput
On entry: the value
, for .
- 4: AJ(N,N) – REAL (KIND=nag_wp) arrayOutput
On exit: must be set to the value , for and .
- 5: BJ(N,N) – REAL (KIND=nag_wp) arrayOutput
On exit: must be set to the value , for and .
- 6: N – INTEGERInput
On entry: , 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
or
then it is assumed that continuation is not required. If
then it is assumed that continuation is required unless
when an error exit is taken.
DELEPS is used as the increment
(see
(4)) and the choice
is recommended.
On exit: an overestimate of the increment
(in fact the value of the increment which would have been tried if the restriction
had not been imposed). If continuation was not requested then
.
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
given
and
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: , 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
, for , at the point .
- 4: F(N) – REAL (KIND=nag_wp) arrayOutput
On exit: must contain the value at the point , for .
- 5: N – INTEGERInput
On entry: , 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
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:
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
, for .
- 3: YB(N) – REAL (KIND=nag_wp) arrayInput
On entry: the value of
, for .
- 4: BCEP(N) – REAL (KIND=nag_wp) arrayOutput
On exit: must contain the value of , for .
- 5: N – INTEGERInput
On entry: , 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:
.
- 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 , ;
- if , .
- 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
, where each of the decimal digits
,
and
must have a value of
or
.
|
specifies hard failure, otherwise soft failure; |
|
suppresses error messages, otherwise error messages will be printed (see Section 6); |
|
suppresses warning messages, otherwise warning messages will be printed (see Section 6). |
The recommended value for inexperienced users is (i.e., hard failure with all messages printed).
On exit:
unless the routine detects an error or a warning has been flagged (see
Section 6).
6 Error Indicators and Warnings
If on entry
or
, explanatory error messages are output on the current error message unit (as defined by
X04AAF).
Errors or warnings detected by the routine:
One or more of the parameters
N,
MNP,
NP,
NUMBEG,
NUMMIX,
TOL,
DELEPS,
LWORK or
LIWORK is incorrectly set, or
or the mesh points
are not in strictly ascending order.
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.
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 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. |
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.
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
).
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
).
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.
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.
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
with
and boundary conditions
to an accuracy specified by
. The continuation facility is used with the continuation parameter
introduced as in the differential equation above and with
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)