NAG Library Routine Document
d02haf
(bvp_shoot_bval)
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
Fortran Interface
Subroutine d02haf ( |
u,
v,
n,
a,
b,
tol,
fcn,
soln,
m1,
w,
sdw,
ifail) |
Integer, Intent (In) | :: |
n,
m1,
sdw | Integer, Intent (Inout) | :: |
ifail | Real (Kind=nag_wp), Intent (In) | :: |
v(n,2),
a,
b,
tol | Real (Kind=nag_wp), Intent (Inout) | :: |
u(n,2) | Real (Kind=nag_wp), Intent (Out) | :: |
soln(n,m1),
w(n,sdw) | External | :: |
fcn |
|
C Header Interface
#include nagmk26.h
void |
d02haf_ (
double u[],
const double v[],
const Integer *n,
const double *a,
const double *b,
const double *tol,
void (NAG_CALL *fcn)(
const double *x,
const double y[],
double f[]),
double soln[],
const Integer *m1,
double w[],
const Integer *sdw,
Integer *ifail) |
|
3
Description
d02haf solves a two-point boundary value problem for a system of
ordinary differential equations in the range
. The system is written in the form:
and the derivatives
are evaluated by
fcn. Initially,
boundary values of the variables
must be specified, some at
and some at
. You must supply estimates of the remaining
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
at
, the subroutine integrates the equations from
to
(using a Runge–Kutta–Merson method). The differences between the values of
at
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
Arguments
- 1: – Real (Kind=nag_wp) arrayInput/Output
-
On entry: must be set to the known or estimated value of at and must be set to the known or estimated value of at , for .
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: – Real (Kind=nag_wp) arrayInput
-
On entry: must be set to if is a known value and to if is an estimated value, for and .
Constraint:
precisely of the must be set to , i.e., precisely of the must be known values, and these must not be all at or all at .
- 3: – IntegerInput
-
On entry: , the number of equations.
Constraint:
.
- 4: – Real (Kind=nag_wp)Input
-
On entry: , the initial point of the interval of integration.
- 5: – Real (Kind=nag_wp)Input
-
On entry: , the final point of the interval of integration.
- 6: – Real (Kind=nag_wp)Input
-
On entry: must be set to a small quantity suitable for:
(a) |
testing the local error in during integration, |
(b) |
testing for the convergence of at , |
(c) |
calculating the perturbation in estimated boundary values for , 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:
.
- 7: – Subroutine, supplied by the user.External Procedure
-
fcn must evaluate the functions
(i.e., the derivatives
), for
, at a general point
.
The specification of
fcn is:
Fortran Interface
Subroutine fcn ( |
x,
y,
f) |
Real (Kind=nag_wp), Intent (In) | :: |
x,
y(*) | Real (Kind=nag_wp), Intent (Out) | :: |
f(*) |
|
C Header Interface
#include nagmk26.h
void |
fcn (
const double *x,
const double y[],
double f[]) |
|
In the description of the arguments of
d02haf below,
denotes the actual value of
n in the call of
d02haf.
- 1: – Real (Kind=nag_wp)Input
-
On entry: , the value of the argument.
- 2: – Real (Kind=nag_wp) arrayInput
-
On entry: , for , the value of the argument.
- 3: – Real (Kind=nag_wp) arrayOutput
-
On exit: the values of
, for .
fcn must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which
d02haf is called. Arguments denoted as
Input must
not be changed by this procedure.
Note: fcn should not return floating-point NaN (Not a Number) or infinity values, since these are not handled by
d02haf. If your code inadvertently
does return any NaNs or infinities,
d02haf is likely to produce unexpected results.
- 8: – Real (Kind=nag_wp) arrayOutput
-
On exit: the solution when .
- 9: – IntegerInput
-
On entry: a value which controls output.
- The final solution is not evaluated.
- The final values of
at interval are calculated and stored in the array soln by columns, starting with values at stored in , for .
Constraint:
.
- 10: – Real (Kind=nag_wp) arrayOutput
-
On exit: if , , or ,
, for , contains the solution at the point where the integration fails and the point of failure is returned in .
- 11: – IntegerInput
-
On entry: the second dimension of the array
w as declared in the (sub)program from which
d02haf is called.
Constraint:
.
- 12: – 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.4 in How to Use the NAG Library and its Documentation).
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 arguments
v,
n,
m1,
sdw, or
tol is incorrectly set.
-
The step length for the integration is too short whilst calculating the residual (see
Section 9).
-
No initial step length could be chosen for the integration whilst calculating the residual.
Note: or
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
and
. 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.
-
As for but the error occurred when calculating the Jacobian of the derivatives of the residuals with respect to the parameters.
-
As for but the error occurred when calculating the derivatives of the residuals with respect to the parameters.
-
The calculated Jacobian has an insignificant column.
Note: ,
or
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.
-
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.
-
The Newton iteration has failed to converge.
Note: 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.
-
Indicates that a serious error has occurred in an internal call. Check all array subscripts and subroutine argument lists in calls to d02haf. Seek expert help.
An unexpected error has been triggered by this routine. Please
contact
NAG.
See
Section 3.9 in How to Use the NAG Library and its Documentation for further information.
Your licence key may have expired or may not have been installed correctly.
See
Section 3.8 in How to Use the NAG Library and its Documentation for further information.
Dynamic memory allocation failed.
See
Section 3.7 in How to Use the NAG Library and its Documentation for further information.
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
Parallelism and Performance
d02haf is not thread safe and should not be called from a multithreaded user program. Please see
Section 3.12.1 in How to Use the NAG Library and its Documentation for more information on thread safety.
d02haf makes calls to BLAS and/or LAPACK routines, which may be threaded within the vendor library used by this implementation. Consult the documentation for the vendor library for further information.
Please consult the
X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this routine. Please also consult the
Users' Note for your implementation for any additional implementation-specific information.
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 argument
tol is used in ‘mixed’ form; that is
tol always occurs in expressions of the form
. 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 unit numbers on which this output is to appear by calls of
x04aaf (for error messages) or
x04abf (for monitoring information) – see
Section 10 for an example. Otherwise the default unit 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
-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 argument
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
, 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
is a singular point; then the derivatives
in
(1) (in
Section 3) cannot be evaluated at
, usually because one or more of the expressions for
give overflow. In such a case it is necessary for you to take
a short distance away from the singularity, and to find values for
at the new value of
(e.g., use the first one or two terms of an analytical (power series) solution). You should experiment with the new position of
; if it is taken too close to the singular point, the derivatives
will be inaccurate, and the routine may sometimes fail with
or
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,
say, is at infinity. You must approximate the end point by taking a finite value for
, 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
. If
is very large, and if the matching point is also at
, the numerical solution may suffer a considerable loss of accuracy in integrating across the range, and the program may fail with
or
. (In the former case, solutions from all initial values at
are tending to the same curve at infinity.) The simplest remedy is to try to solve the equations with a smaller value of
, and then to increase
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.
10
Example
This example finds the angle at which a projectile must be fired for a given range.
The differential equations are:
with the following boundary conditions:
The remaining boundary conditions are estimated as:
We write
,
,
. To check the accuracy of the results the problem is solved twice with
.
and
respectively. Note the call to
x04abf before the call to
d02haf.
10.1
Program Text
Program Text (d02hafe.f90)
10.2
Program Data
Program Data (d02hafe.d)
10.3
Program Results
Program Results (d02hafe.r)