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

NAG Library Routine Document

D02HAF

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

D02HAF solves a two-point boundary value problem for a system of ordinary differential equations, using a Runge–Kutta–Merson method and a Newton iteration in a shooting and matching technique.

2  Specification

SUBROUTINE D02HAF ( U, V, N, A, B, TOL, FCN, SOLN, M1, W, SDW, IFAIL)
INTEGER  N, M1, SDW, IFAIL
REAL (KIND=nag_wp)  U(N,2), V(N,2), A, B, TOL, SOLN(N,M1), W(N,SDW)
EXTERNAL  FCN

3  Description

D02HAF solves a two-point boundary value problem for a system of n ordinary differential equations in the range a,b. The system is written in the form:
yi=fix,y1,y2,,yn,  i=1,2,,n (1)
and the derivatives fi are evaluated by FCN. Initially, n boundary values of the variables yi must be specified, some at a and some at b. You must supply estimates of the remaining n boundary values (called parameters below); the subroutine corrects these by a form of Newton iteration. It also calculates the complete solution on an equispaced mesh if required.
Starting from the known and estimated values of yi at a, the subroutine integrates the equations from a to b (using a Runge–Kutta–Merson method). The differences between the values of yi at b from integration and those specified initially should be zero for the true solution. (These differences are called residuals below.) The subroutine uses a generalized Newton method to reduce the residuals to zero, by calculating corrections to the estimated boundary values. This process is repeated iteratively until convergence is obtained, or until the routine can no longer reduce the residuals. See Hall and Watt (1976) for a simple discussion of shooting and matching techniques.

4  References

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

5  Parameters

1:     U(N,2) – REAL (KIND=nag_wp) arrayInput/Output
On entry: Ui1 must be set to the known or estimated value of yi at a and Ui2 must be set to the known or estimated value of yi at b, for i=1,2,,n.
On exit: the known values unaltered, and corrected values of the estimates, unless an error has occurred. If an error has occurred, U contains the known values and the latest values of the estimates.
2:     V(N,2) – REAL (KIND=nag_wp) arrayInput
On entry: Vij must be set to 0.0 if Uij is a known value and to 1.0 if Uij is an estimated value, for i=1,2,,n and j=1,2.
Constraint: precisely n of the Vij must be set to 0.0, i.e., precisely n of the Uij must be known values, and these must not be all at a or all at b.
3:     N – INTEGERInput
On entry: n, the number of equations.
Constraint: N2.
4:     A – REAL (KIND=nag_wp)Input
On entry: a, the initial point of the interval of integration.
5:     B – REAL (KIND=nag_wp)Input
On entry: b, the final point of the interval of integration.
6:     TOL – REAL (KIND=nag_wp)Input
On entry: must be set to a small quantity suitable for:
(a) testing the local error in yi during integration,
(b) testing for the convergence of yi at b,
(c) calculating the perturbation in estimated boundary values for yi, which are used to obtain the approximate derivatives of the residuals for use in the Newton iteration.
You are advised to check your results by varying TOL.
Constraint: TOL>0.0.
7:     FCN – SUBROUTINE, supplied by the user.External Procedure
FCN must evaluate the functions fi (i.e., the derivatives yi), for i=1,2,,n, at a general point x.
The specification of FCN is:
SUBROUTINE FCN ( X, Y, F)
REAL (KIND=nag_wp)  X, Y(*), F(*)
In the description of the parameters of D02HAF below, n denotes the actual value of N in the call of D02HAF.
1:     X – REAL (KIND=nag_wp)Input
On entry: x, the value of the argument.
2:     Y(*) – REAL (KIND=nag_wp) arrayInput
On entry: yi, for i=1,2,,n, the value of the argument.
3:     F(*) – REAL (KIND=nag_wp) arrayOutput
On exit: the values of fix, for i=1,2,,n.
FCN must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which D02HAF is called. Parameters denoted as Input must not be changed by this procedure.
8:     SOLN(N,M1) – REAL (KIND=nag_wp) arrayOutput
On exit: the solution when M1>1.
9:     M1 – INTEGERInput
On entry: a value which controls output.
M1=1
The final solution is not evaluated.
M1>1
The final values of yi at interval b-a/M1-1 are calculated and stored in the array SOLN by columns, starting with values yi at a stored in SOLNi1, for i=1,2,,n.
Constraint: M11.
10:   W(N,SDW) – REAL (KIND=nag_wp) arrayOutput
On exit: if IFAIL=2, 3, 4 or 5, Wi1, for i=1,2,,n, contains the solution at the point where the integration fails and the point of failure is returned in W12.
11:   SDW – INTEGERInput
On entry: the second dimension of the array W as declared in the (sub)program from which D02HAF is called.
Constraint: SDW3N+17+max11,N.
12:   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 V, N, M1, SDW, or TOL is incorrectly set.
IFAIL=2
The step length for the integration is too short whilst calculating the residual (see Section 8).
IFAIL=3
No initial step length could be chosen for the integration whilst calculating the residual.
Note: IFAIL=2 or 3 can occur due to choosing too small a value for TOL or due to choosing the wrong direction of integration. Try varying TOL and interchanging a and b. These error exits can also occur for very poor initial estimates of the unknown initial values and, in extreme cases, because D02HAF cannot be used to solve the problem posed.
IFAIL=4
As for IFAIL=2 but the error occurred when calculating the Jacobian of the derivatives of the residuals with respect to the parameters.
IFAIL=5
As for IFAIL=3 but the error occurred when calculating the derivatives of the residuals with respect to the parameters.
IFAIL=6
The calculated Jacobian has an insignificant column.
Note: IFAIL=4, 5 or 6 usually indicate a badly scaled problem. You may vary the size of TOL or change to one of the more general routines D02HBF or D02SAF which afford more control over the calculations.
IFAIL=7
The linear algebra routine (F08KBF (DGESVD)) used has failed. This error exit should not occur and can be avoided by changing the estimated initial values.
IFAIL=8
The Newton iteration has failed to converge.
Note: IFAIL=8 can indicate poor initial estimates or a very difficult problem. Consider varying TOL if the residuals are small in the monitoring output. If the residuals are large try varying the initial estimates.
IFAIL=9
IFAIL=10
IFAIL=11
IFAIL=12
IFAIL=13
Indicates that a serious error has occurred in an internal call. Check all array subscripts and subroutine parameter lists in calls to D02HAF. Seek expert help.

7  Accuracy

If the process converges, the accuracy to which the unknown parameters are determined is usually close to that specified by you; the solution, if requested, may be determined to a required accuracy by varying TOL.

8  Further Comments

The time taken by D02HAF depends on the complexity of the system, and on the number of iterations required. In practice, integration of the differential equations is by far the most costly process involved.
Wherever it occurs in the routine, the error parameter TOL is used in ‘mixed’ form; that is TOL always occurs in expressions of the form TOL×1+yi. Though not ideal for every application, it is expected that this mixture of absolute and relative error testing will be adequate for most purposes.
You are strongly recommended to set IFAIL to obtain self-explanatory error messages, and also monitoring information about the course of the computation. You may select the channel numbers on which this output is to appear by calls of X04AAF (for error messages) or X04ABF (for monitoring information) – see Section 9 for an example. Otherwise the default channel numbers will be used, as specified in the Users' Note. The monitoring information produced at each iteration includes the current parameter values, the residuals and 2-norms: a basic norm and a current norm. At each iteration the aim is to find parameter values which make the current norm less than the basic norm. Both these norms should tend to zero as should the residuals. (They would all be zero if the exact parameters were used as input.) For more details, you may consult the specification of D02SAF, and especially the description of the parameter MONIT there.
The computing time for integrating the differential equations can sometimes depend critically on the quality of the initial estimates. If it seems that too much computing time is required and, in particular, if the values of the residuals printed by the monitoring routine are much larger than the expected values of the solution at b, then the coding of FCN should be checked for errors. If no errors can be found, an independent attempt should be made to improve the initial estimates. In practical problems it is not uncommon for the differential equation to have a singular point at one or both ends of the range. Suppose a is a singular point; then the derivatives yi in (1) (in Section 3) cannot be evaluated at a, usually because one or more of the expressions for fi give overflow. In such a case it is necessary for you to take a a short distance away from the singularity, and to find values for yi at the new value of a (e.g., use the first one or two terms of an analytical (power series) solution). You should experiment with the new position of a; if it is taken too close to the singular point, the derivatives fi will be inaccurate, and the routine may sometimes fail with IFAIL=2 or 3 or, in extreme cases, with an overflow condition. A more general treatment of singular solutions is provided by the subroutine D02HBF.
Another difficulty which often arises in practice is the case when one end of the range, b say, is at infinity. You must approximate the end point by taking a finite value for b, which is obtained by estimating where the solution will reach its asymptotic state. The estimate can be checked by repeating the calculation with a larger value of b. If b is very large, and if the matching point is also at b, the numerical solution may suffer a considerable loss of accuracy in integrating across the range, and the program may fail with IFAIL=6 or 8. (In the former case, solutions from all initial values at a are tending to the same curve at infinity.) The simplest remedy is to try to solve the equations with a smaller value of b, and then to increase b in stages, using each solution to give boundary value estimates for the next calculation. For problems where some terms in the asymptotic form of the solution are known, D02HBF will be more successful.
If the unknown quantities are not boundary values, but are eigenvalues or the length of the range or some other parameters occurring in the differential equations, D02HBF may be used.

9  Example

This example finds the angle at which a projectile must be fired for a given range.
The differential equations are:
y = tanϕ v = -0.032 tanϕ v - 0.02v cosϕ ϕ = -0.032 v2 ,
with the following boundary conditions:
y= 0, v= 0.5 at   x= 0, y= 0 at   x= 5.
The remaining boundary conditions are estimated as:
ϕ=1.15 at  x=0, ϕ=1.2, v=0.46 at  x=5.
We write y=Z1, v=Z2, ϕ=Z3. To check the accuracy of the results the problem is solved twice with TOL=5.0E−3 and 5.0E−4 respectively. Note the call to X04ABF before the call to D02HAF.

9.1  Program Text

Program Text (d02hafe.f90)

9.2  Program Data

Program Data (d02hafe.d)

9.3  Program Results

Program Results (d02hafe.r)

Produced by GNUPLOT 4.4 patchlevel 0 -1.5 -1 -0.5 0 0.5 1 1.5 2 2.5 3 3.5 0 1 2 3 4 5 Solution x Example Program Solution of Two-point Boundary-value Problem using Runge-Kutta-Merson and Newton Correction in a Shooting Method height velocity angle

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

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