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.
The routine may be called by the names d02hbf or nagf_ode_bvp_shoot_genpar.
3Description
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).
4References
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
5Arguments
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 .
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).
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 .
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
This routine uses an ifail input value codification that differs from the normal case to distinguish between errors and warnings (see Section 4 in the Introduction to the NAG Library FL Interface).
On entry: ifail must be set to one of the values below to set behaviour on detection of an error; these values have no effect when no error is detected. The behaviour relate to whether or not program execution is halted and whether or not messages are printed when an error or warning is detected.
For environments where it might be inappropriate to halt program execution when an error is detected, the value , , or is recommended. If the printing of messages is undesirable, then the value is recommended. Otherwise, the recommended value is . When the value , , or is used it is essential to test the value of ifail on exit.
On exit: unless the routine detects an error or a warning has been flagged (see Section 6).
6Error 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:
On entry, .
Constraint: .
On entry, .
Constraint: .
On entry, and .
Constraint: .
On entry, and .
Constraint: ; that is, .
On entry a negative or zero convergence test tolerance has been set.
On entry a negative or zero local error tolerance has been set.
In the integration with initial or final parameters, the step size was reduced too far for the integration to proceed. Either this routine is not a suitable method for solving the problem, or the initial choice of parameters is very poor.
The step length for the integration became too short to proceed when calculating the residual.
An initial step-length could be found for integration to proceed with the current parameters.
In the integration with initial or final parameters, a suitable initial step could not be found. Either this routine is not suitable for solving the problem, or the initial choice of parameters is very poor.
The step-length required to calculate the Jacobian to sufficient accuracy is too small
An initial step-length could be found for Jacobian calculation to proceed with the current parameters.
The Jacobian has an insignificant column. Make sure that the solution vector depends on all the parameters.
An internal singular value decomposition has failed.
This error can be avoided by changing the initial parameter estimates.
The Newton iteration has failed to converge.
This can indicate a poor initial choice of parameters or a very difficult problem.
Consider varying elements of the parameter convergence control if the residuals are small; otherwise vary initial parameter estimates.
Internal error in Newton method. Please contact NAG.
Internal error in calculating Jacobian. Please contact NAG.
Internal error in calculating residual. Please contact NAG.
Internal error in calculating residual. Please contact NAG.
An unexpected error has been triggered by this routine. Please
contact NAG.
See Section 7 in the Introduction to the NAG Library FL Interface for further information.
Your licence key may have expired or may not have been installed correctly.
See Section 8 in the Introduction to the NAG Library FL Interface for further information.
Dynamic memory allocation failed.
See Section 9 in the Introduction to the NAG Library FL Interface for further information.
7Accuracy
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.
8Parallelism and Performance
d02hbf is not thread safe and should not be called from a multithreaded user program. Please see Section 1 in FL Interface Multithreading 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.
9Further Comments
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). 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;
(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;
(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; and
(e)differential equations with certain terms defined by other independent (driving) differential equations.
10Example
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).