d02ejf integrates a stiff system of first-order ordinary differential equations over an interval with suitable initial conditions, using a variable-order, variable-step method implementing the Backward Differentiation Formulae (BDF), until a user-specified function, if supplied, of the solution is zero, and returns the solution at points specified by you, if desired.
The routine may be called by the names d02ejf or nagf_ode_ivp_bdf_zero_simple.
3Description
d02ejf advances the solution of a system of ordinary differential equations
from to using a variable-order, variable-step method implementing the BDF. The system is defined by fcn, which evaluates in terms of and (see Section 5). The initial values of must be given at .
The solution is returned via the output at points specified by you, if desired: this solution is obtained by interpolation on solution values produced by the method. As the integration proceeds a check can be made on the user-specified function to determine an interval where it changes sign. The position of this sign change is then determined accurately by interpolation to the solution. It is assumed that is a continuous function of the variables, so that a solution of can be determined by searching for a change in sign in . The accuracy of the integration, the interpolation and, indirectly, of the determination of the position where , is controlled by the arguments tol and relabs. The Jacobian of the system may be supplied in pederv, if it is available.
For a description of BDF and their practical implementation see Hall and Watt (1976).
4References
Hall G and Watt J M (ed.) (1976) Modern Numerical Methods for Ordinary Differential Equations Clarendon Press, Oxford
5Arguments
1: – Real (Kind=nag_wp)Input/Output
On entry: the initial value of the independent variable .
Constraint:
.
On exit: if g is supplied by you, x contains the point where , unless anywhere on the range x to xend, in which case, x will contain xend. If g is not supplied x contains xend, unless an error has occurred, when it contains the value of at the error.
2: – Real (Kind=nag_wp)Input
On entry: the final value of the independent variable. If , integration will proceed in the negative direction.
Constraint:
.
3: – IntegerInput
On entry: , the number of differential equations.
Constraint:
.
4: – Real (Kind=nag_wp) arrayInput/Output
On entry: the initial values of the solution at .
On exit: the computed values of the solution at the final point .
5: – Subroutine, supplied by the user.External Procedure
fcn must evaluate the functions (i.e., the derivatives ) for given values of its arguments .
On entry: , the value of the independent variable.
2: – Real (Kind=nag_wp) arrayInput
Note: the dimension, , of y is n as in the call of d02ejf.
On entry: , for , the value of the variable.
3: – Real (Kind=nag_wp) arrayOutput
Note: the dimension, , of f is n as in the call of d02ejf.
On exit: the value of
, for .
fcn must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which d02ejf 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 d02ejf. If your code inadvertently does return any NaNs or infinities, d02ejf is likely to produce unexpected results.
6: – Subroutine, supplied by the NAG Library or the user.External Procedure
pederv must evaluate the Jacobian of the system (that is, the partial derivatives ) for given values of the variables .
On entry: , the value of the independent variable.
2: – Real (Kind=nag_wp) arrayInput
Note: the dimension, , of y is n as in the call of d02ejf.
On entry: , for , the value of the variable.
3: – Real (Kind=nag_wp) arrayOutput
Note: the dimension of pw is , with n as in the call of d02ejf.
On exit: must contain the value of , for and .
pederv must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which d02ejf is called. Arguments denoted as Input must not be changed by this procedure.
Note:pederv should not return floating-point NaN (Not a Number) or infinity values, since these are not handled by d02ejf. If your code inadvertently does return any NaNs or infinities, d02ejf is likely to produce unexpected results.
If you do not wish to supply the Jacobian, the actual argument pedervmust be the
dummy routine d02ejy. (d02ejy is included in the NAG Library.)
7: – Real (Kind=nag_wp)Input/Output
On entry: must be set to a positive tolerance for controlling the error in the integration. Hence tol affects the determination of the position where , if g is supplied.
d02ejf has been designed so that, for most problems, a reduction in tol leads to an approximately proportional reduction in the error in the solution. However, the actual relation between tol and the accuracy achieved cannot be guaranteed. You are strongly recommended to call d02ejf with more than one value for tol and to compare the results obtained to estimate their accuracy. In the absence of any prior knowledge, you might compare the results obtained by calling d02ejf with and if correct decimal digits are required in the solution.
Constraint:
.
On exit: normally unchanged. However if the range x to xend is so short that a small change in tol is unlikely to make any change in the computed solution, then, on return, tol has its sign changed.
8: – Character(1)Input
On entry: the type of error control. At each step in the numerical solution an estimate of the local error, , is made. For the current step to be accepted the following condition must be satisfied:
where is a small machine-dependent number and is an estimate of the local error at , computed internally. If the appropriate condition is not satisfied, the step size is reduced and the solution is recomputed on the current step. If you wish to measure the error in the computed solution in terms of the number of correct decimal places, relabs should be set to 'A' on entry, whereas if the error requirement is in terms of the number of correct significant digits, relabs should be set to 'R'. If you prefer a mixed error test, relabs should be set to 'M', otherwise if you have no preference, relabs should be set to the default 'D'. Note that in this case 'D' is taken to be 'R'.
Constraint:
, , or .
9: – Subroutine, supplied by the NAG Library or the user.External Procedure
output permits access to intermediate values of the computed solution (for example to print or plot them), at successive user-specified points. It is initially called by d02ejf with (the initial value of ). You must reset xsol to the next point (between the current xsol and xend) where output is to be called, and so on at each call to output. If, after a call to output, the reset point xsol is beyond xend, d02ejf will integrate to xend with no further calls to output; if a call to output is required at the point , xsol must be given precisely the value xend.
On entry: , the value of the independent variable.
On exit: you must set xsol to the next value of at which output is to be called.
2: – Real (Kind=nag_wp) arrayInput
Note: the dimension, , of y is n as in the call of d02ejf.
On entry: the computed solution at the point xsol.
output must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which d02ejf is called. Arguments denoted as Input must not be changed by this procedure.
Note:output should not return floating-point NaN (Not a Number) or infinity values, since these are not handled by d02ejf. If your code inadvertently does return any NaNs or infinities, d02ejf is likely to produce unexpected results.
If you do not wish to access intermediate output, the actual argument outputmust be the
dummy routine d02ejx. (d02ejx is included in the NAG Library.)
10: – real (Kind=nag_wp) Function, supplied by the user.External Procedure
g must evaluate the function for specified values . It specifies the function for which the first position where is to be found.
On entry: , the value of the independent variable.
2: – Real (Kind=nag_wp) arrayInput
Note: the dimension, , of y is n as in the call of d02ejf.
On entry: , for , the value of the variable.
g must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which d02ejf is called. Arguments denoted as Input must not be changed by this procedure.
Note:g should not return floating-point NaN (Not a Number) or infinity values, since these are not handled by d02ejf. If your code inadvertently does return any NaNs or infinities, d02ejf is likely to produce unexpected results.
If you do not require the root-finding option, the actual argument gmust be the
dummy routine d02ejw. (d02ejw is included in the NAG Library.)
11: – Real (Kind=nag_wp) arrayWorkspace
12: – IntegerInput
On entry: the dimension of the array w as declared in the (sub)program from which d02ejf is called.
Constraint:
.
13: – IntegerInput/Output
On entry: ifail must be set to , or to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of means that an error message is printed while a value of means that it is not.
If halting is not appropriate, the value or is recommended. If message printing is undesirable, then the value is recommended. Otherwise, the value is recommended. 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: ; that is, .
On entry, .
Constraint: .
On entry, .
Constraint: , , or .
On entry, .
Constraint: .
On entry, and .
Constraint: .
Integration successful as far as , but further progress not possible with the input value of .
With the given value of tol, no further progress can be made across the integration range from the current point . (See Section 9 for a discussion of this error exit.) The components contain the computed values of the solution at the current point . If you have supplied , no point at which changes sign has been located up to the point .
No integration steps have been taken. Progress not possible with the input value of .
No integration steps have been taken. xsol has been set illegally.
Integration successful as far as , but xsol has been reset illegally.
No change in sign of the function was detected in the integration range.
Integration successful as far as , but an internal error has occurred during rootfinding.
Integration successful as far as , but an internal error has occurred during interpolation.
Impossible error — internal variable .
Impossible error — internal variable .
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
The accuracy of the computation of the solution vector y may be controlled by varying the local error tolerance tol. In general, a decrease in local error tolerance should lead to an increase in accuracy. You are advised to choose unless you have a good reason for a different choice. It is particularly appropriate if the solution decays.
If the problem is a root-finding one, then the accuracy of the root determined will depend strongly on and
, for . Large values for these quantities may imply large errors in the root.
8Parallelism and Performance
Background information to multithreading can be found in the Multithreading documentation.
d02ejf is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
d02ejf 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
If more than one root is required, then to determine the second and later roots d02ejf may be called again starting a short distance past the previously determined roots. Alternatively you may construct your own root-finding code using d02nbf (and other routines in Sub-chapter D02M–N), c05azfandd02xkf.
If it is easy to code, you should supply pederv. However, it is important to be aware that if pederv is coded incorrectly, a very inefficient integration may result and possibly even a failure to complete the integration (see ).
10Example
We illustrate the solution of five different problems. In each case the differential system is the well-known stiff Robertson problem.
with initial conditions , at . We solve each of the following problems with local error tolerances and .
(i)To integrate to producing output at intervals of until a point is encountered where . The Jacobian is calculated numerically.
(ii)As (i) but with the Jacobian calculated analytically.