NAG Library Routine Document
d02hbf
(bvp_shoot_genpar)
1
Purpose
d02hbf solves a two-point boundary value problem for a system of ordinary differential equations, using initial value techniques and Newton iteration; it generalizes subroutine
d02haf to include the case where parameters other than boundary values are to be determined.
2
Specification
Fortran Interface
Subroutine d02hbf ( |
p,
n1,
pe,
e,
n,
soln,
m1,
fcn,
bc,
range,
w,
sdw,
ifail) |
Integer, Intent (In) | :: |
n1,
n,
m1,
sdw | Integer, Intent (Inout) | :: |
ifail | Real (Kind=nag_wp), Intent (In) | :: |
pe(n1),
e(n) | Real (Kind=nag_wp), Intent (Inout) | :: |
p(n1) | Real (Kind=nag_wp), Intent (Out) | :: |
soln(n,m1),
w(n,sdw) | External | :: |
fcn,
bc,
range |
|
C Header Interface
#include nagmk26.h
void |
d02hbf_ (
double p[],
const Integer *n1,
const double pe[],
const double e[],
const Integer *n,
double soln[],
const Integer *m1,
void (NAG_CALL *fcn)(
const double *x,
const double y[],
double f[],
const double p[]),
void (NAG_CALL *bc)(
double g1[],
double g2[],
const double p[]),
void (NAG_CALL *range)(
double *a,
double *b,
const double p[]),
double w[],
const Integer *sdw,
Integer *ifail) |
|
3
Description
d02hbf solves a two-point boundary value problem by determining the unknown parameters
of the problem. These parameters may be, but need not be, boundary values; they may include eigenvalue parameters in the coefficients of the differential equations, length of the range of integration, etc. The notation and methods used are similar to those of
d02haf and you are advised to study this first. (The parameters
correspond precisely to the unknown boundary conditions in
d02haf.) It is assumed that we have a system of
first-order ordinary differential equations of the form:
and that the derivatives
are evaluated by
fcn. The system, including the boundary conditions given by
bc and the range of integration given by
range, involves the
unknown parameters
which are to be determined, and for which initial estimates must be supplied. The number of unknown parameters
must not exceed the number of equations
. If
, we assume that
equations of the system are not involved in the matching process. These are usually referred to as ‘driving equations’; they are independent of the parameters and of the solutions of the other
equations. In numbering the equations for
fcn, the driving equations must be put
first.
The estimated values of the parameters are corrected by a form of Newton iteration. The Newton correction on each iteration is calculated using a Jacobian matrix whose th element depends on the derivative of the th component of the solution, , with respect to the th parameter, . This matrix is calculated by a simple numerical differentiation technique which requires evaluations of the differential system.
If the argument
ifail is set appropriately, the routine automatically prints messages to inform you of the flow of the calculation. These messages are discussed in detail in
Section 9.
d02hbf is a simplified version of
d02saf which is described in detail in
Gladwell (1979).
4
References
Gladwell I (1979) The development of the boundary value codes in the ordinary differential equations chapter of the NAG Library 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
Arguments
You are strongly recommended to read
Sections 3 and
9 in conjunction with this section.
- 1: – Real (Kind=nag_wp) arrayInput/Output
-
On entry: an estimate for the
th argument, , for .
On exit: the corrected value for the th argument, unless an error has occurred, when it contains the last calculated value of the argument.
- 2: – IntegerInput
-
On entry: , the number of arguments.
Constraint:
.
- 3: – Real (Kind=nag_wp) arrayInput
-
On entry: the elements of
pe must be given small positive values. The element
is used
(i) |
in the convergence test on the th argument in the Newton iteration, and |
(ii) |
in perturbing the th argument when approximating the derivatives of the components of the solution with respect to this argument for use in the Newton iteration. |
The elements should not be chosen too small. They should usually be several orders of magnitude larger than machine precision.
Constraint:
, for .
- 4: – Real (Kind=nag_wp) arrayInput
-
On entry: the elements of
e must be given positive values. The element
is used in the bound on the local error in the
th component of the solution
during integration.
The elements should not be chosen too small. They should usually be several orders of magnitude larger than machine precision.
Constraint:
, for .
- 5: – IntegerInput
-
On entry: , the total number of differential equations.
Constraint:
.
- 6: – Real (Kind=nag_wp) arrayOutput
-
On exit: the solution when .
- 7: – IntegerInput
-
On entry: a value which controls exit values.
- The final solution is not calculated.
- The final values of the solution at interval (length of range)/ are calculated and stored sequentially in the array soln starting with the values of the solutions evaluated at the first end point (see range) stored in the first column of soln.
Constraint:
.
- 8: – 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,
p) |
Real (Kind=nag_wp), Intent (In) | :: |
x,
y(*),
p(*) | Real (Kind=nag_wp), Intent (Out) | :: |
f(*) |
|
C Header Interface
#include nagmk26.h
void |
fcn (
const double *x,
const double y[],
double f[],
const double p[]) |
|
In the description of the arguments of
d02hbf below,
and
denote the numerical values of
n and
n1 in the call of
d02hbf.
- 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 value of
, for
. The
may depend upon the parameters
, for
. If there are any driving equations (see
Section 3) then these must be numbered first in the ordering of the components of
f in
fcn.
- 4: – Real (Kind=nag_wp) arrayInput
-
On entry: the current estimate of the argument
, for .
fcn must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which
d02hbf 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
d02hbf. If your code inadvertently
does return any NaNs or infinities,
d02hbf is likely to produce unexpected results.
- 9: – Subroutine, supplied by the user.External Procedure
-
bc must place in
g1 and
g2 the boundary conditions at
and
respectively (see
range).
The specification of
bc is:
Fortran Interface
Subroutine bc ( |
g1,
g2,
p) |
Real (Kind=nag_wp), Intent (In) | :: |
p(*) | Real (Kind=nag_wp), Intent (Out) | :: |
g1(*),
g2(*) |
|
C Header Interface
#include nagmk26.h
void |
bc (
double g1[],
double g2[],
const double p[]) |
|
In the description of the arguments of
d02hbf below,
and
denote the numerical values of
n and
n1 in the call of
d02hbf.
- 1: – Real (Kind=nag_wp) arrayOutput
-
On exit: the value of
, (where this may be a known value or a function of the parameters , for and ).
- 2: – Real (Kind=nag_wp) arrayOutput
-
On exit: the value of
, for
, (where these may be known values or functions of the parameters
, for
). If
, so that there are some driving equations, the first
values of
g2 need not be set since they are never used.
- 3: – Real (Kind=nag_wp) arrayInput
-
On entry: an estimate of the argument
, for .
bc must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which
d02hbf is called. Arguments denoted as
Input must
not be changed by this procedure.
Note: bc should not return floating-point NaN (Not a Number) or infinity values, since these are not handled by
d02hbf. If your code inadvertently
does return any NaNs or infinities,
d02hbf is likely to produce unexpected results.
- 10: – Subroutine, supplied by the user.External Procedure
-
range must evaluate the boundary points
and
, each of which may depend on the arguments
. The integrations in the shooting method are always from
to
.
The specification of
range is:
Fortran Interface
Subroutine range ( |
a,
b,
p) |
Real (Kind=nag_wp), Intent (In) | :: |
p(*) | Real (Kind=nag_wp), Intent (Out) | :: |
a,
b |
|
C Header Interface
#include nagmk26.h
void |
range (
double *a,
double *b,
const double p[]) |
|
In the description of the arguments of
d02hbf below,
denotes the actual value of
n1 in the call of
d02hbf.
- 1: – Real (Kind=nag_wp)Output
-
On exit: , one of the boundary points.
- 2: – Real (Kind=nag_wp)Output
-
On exit: the second boundary point,
. Note that
forces the direction of integration to be that of increasing
. If
a and
b are interchanged the direction of integration is reversed.
- 3: – Real (Kind=nag_wp) arrayInput
-
On entry: the current estimate of the
th argument, , for .
range must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which
d02hbf is called. Arguments denoted as
Input must
not be changed by this procedure.
Note: range should not return floating-point NaN (Not a Number) or infinity values, since these are not handled by
d02hbf. If your code inadvertently
does return any NaNs or infinities,
d02hbf is likely to produce unexpected results.
- 11: – Real (Kind=nag_wp) arrayOutput
-
Used mainly for workspace.
On exit: with
,
,
or
(see
Section 6),
, for
, contains the solution at the point
when the error occurred.
contains
.
- 12: – IntegerInput
-
On entry: the second dimension of the array
w as declared in the (sub)program from which
d02hbf is called.
Constraint:
.
- 13: – 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
n,
n1,
m1,
sdw,
e or
pe is incorrectly set.
-
The step length for the integration became 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
e or due to choosing the wrong direction of integration. Try varying
e and interchanging
and
. These error exits can also occur for very poor initial choices of the parameters in the array
p and, in extreme cases, because
d02hbf cannot be used to solve the problem posed.
-
As for but the error occurred when calculating the Jacobian.
-
As for but the error occurred when calculating the Jacobian.
-
The calculated Jacobian has an insignificant column. This can occur because a parameter is incorrectly entered when posing the problem.
Note: ,
or
usually indicate a badly scaled problem. You may vary the size of
pe. Otherwise the use of the more general
d02saf which affords more control over the calculations is advised.
-
The linear algebra routine used (
f08kbf (dgesvd)) has failed. This error exit should not occur and can be avoided by changing the initial estimates
.
-
The Newton iteration has failed to converge. This can indicate a poor initial choice of parameters or a very difficult problem. Consider varying the elements if the residuals are small in the monitoring output. If the residuals are large, try varying the initial parameters .
-
Indicates that a serious error has occurred in an internal call. Check all array subscripts and subroutine argument lists in the call to d02hbf. 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
e.
8
Parallelism and Performance
d02hbf 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.
d02hbf 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 d02hbf 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 they occur in the routine, the error arguments contained in the arrays
e and
pe are used in ‘mixed’ form; that is
always occurs in expressions of the form
and
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 may determine a suitable direction of integration
to
and suitable values for
by integrations with
d02pef. The best direction of integration is usually the direction of decreasing solutions.
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, in particular about the other monitoring information printed, you are advised to 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 for the parameters
. 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,
bc and
range should be checked for errors. If no errors can be found, an independent attempt should be made to improve the initial estimates for
.
The subroutine can be used to solve a very wide range of problems, for example:
(a) |
eigenvalue problems, including problems where the eigenvalue occurs in the boundary conditions; |
(b) |
problems where the differential equations depend on some parameters which are to be determined so as to satisfy certain boundary conditions (see Example 2 in Section 10); |
(c) |
problems where one of the end points of the range of integration is to be determined as the point where a variable takes a particular value (see Example 2 in Section 10); |
(d) |
singular problems and problems on infinite ranges of integration where the values of the solution at or or both are determined by a power series or an asymptotic expansion (or a more complicated expression) and where some of the coefficients in the expression are to be determined (see Example 1 in Section 10); and |
(e) |
differential equations with certain terms defined by other independent (driving) differential equations. |
10
Example
For this routine two examples are presented. There is a single example program for d02hbf, with a main program and the code to solve the two example problems given in Example 1 (EX1) and Example 2 (EX2).
Example 1 (EX1)
This example finds the solution of the differential equation
on the range
, with boundary conditions
and
. We cannot use the differential equation at
because it is singular, so we take a truncated power series expansion
near the origin where
is one of the parameters to be determined. We choose the interval as
and setting
, we can determine all the boundary conditions. We take
. We write
,
, and estimate
,
. Note the call to
x04abf before the call to
d02hbf.
Example 2 (EX2)
This example finds the gravitational constant and the range over which a projectile must be fired to hit the target with a given velocity.
The differential equations are
on the range
, with boundary conditions
We write
,
,
. We estimate
,
and
(though this last estimate is not important).
10.1
Program Text
Program Text (d02hbfe.f90)
10.2
Program Data
Program Data (d02hbfe.d)
10.3
Program Results
Program Results (d02hbfe.r)