NAG Library Routine Document
d02pef
(ivp_rkts_range)
1
Purpose
d02pef solves an initial value problem for a first-order system of ordinary differential equations using Runge–Kutta methods.
2
Specification
Fortran Interface
Subroutine d02pef ( |
f,
n,
twant,
tgot,
ygot,
ypgot,
ymax,
iuser,
ruser,
iwsav,
rwsav,
ifail) |
Integer, Intent (In) | :: |
n | Integer, Intent (Inout) | :: |
iuser(*),
iwsav(130),
ifail | Real (Kind=nag_wp), Intent (In) | :: |
twant | Real (Kind=nag_wp), Intent (Inout) | :: |
ygot(n),
ymax(n),
ruser(*),
rwsav(32*n+350) | Real (Kind=nag_wp), Intent (Out) | :: |
tgot,
ypgot(n) | External | :: |
f |
|
C Header Interface
#include nagmk26.h
void |
d02pef_ (
void (NAG_CALL *f)(
const double *t,
const Integer *n,
const double y[],
double yp[],
Integer iuser[],
double ruser[]),
const Integer *n,
const double *twant,
double *tgot,
double ygot[],
double ypgot[],
double ymax[],
Integer iuser[],
double ruser[],
Integer iwsav[],
double rwsav[],
Integer *ifail) |
|
3
Description
d02pef and its associated routines (
d02pqf,
d02ptf and
d02puf) solve an initial value problem for a first-order system of ordinary differential equations. The routines, based on Runge–Kutta methods and derived from RKSUITE (see
Brankin et al. (1991)), integrate
where
is the vector of
solution components and
is the independent variable.
d02pef is designed for the usual task, namely to compute an approximate solution at a sequence of points. You must first call
d02pqf to specify the problem and how it is to be solved. Thereafter you call
d02pef repeatedly with successive values of
twant, the points at which you require the solution, in the range from
tstart to
tend (as specified in
d02pqf). In this manner
d02pef returns the point at which it has computed a solution
tgot (usually
twant), the solution there (
ygot) and its derivative (
ypgot). If
d02pef encounters some difficulty in taking a step toward
twant, then it returns the point of difficulty (
tgot) and the solution and derivative computed there (
ygot and
ypgot, respectively).
In the call to
d02pqf you can specify either the first step size for
d02pef to attempt or that it computes automatically an appropriate value. Thereafter
d02pef estimates an appropriate step size for its next step. This value and other details of the integration can be obtained after any call to
d02pef by a call to
d02ptf. The local error is controlled at every step as specified in
d02pqf. If you wish to assess the true error, you must set
method to a positive value
in the call to
d02pqf. This assessment can be obtained after any call to
d02pef by a call to
d02puf.
For more complicated tasks, you are referred to routines
d02pff,
d02prf and
d02psf, all of which are used by
d02pef.
4
References
Brankin R W, Gladwell I and Shampine L F (1991) RKSUITE: A suite of Runge–Kutta codes for the initial value problems for ODEs SoftReport 91-S1 Southern Methodist University
5
Arguments
- 1: – Subroutine, supplied by the user.External Procedure
-
f must evaluate the functions
(that is the first derivatives
) for given values of the arguments
,
.
The specification of
f is:
Fortran Interface
Integer, Intent (In) | :: |
n | Integer, Intent (Inout) | :: |
iuser(*) | Real (Kind=nag_wp), Intent (In) | :: |
t,
y(n) | Real (Kind=nag_wp), Intent (Inout) | :: |
ruser(*) | Real (Kind=nag_wp), Intent (Out) | :: |
yp(n) |
|
C Header Interface
#include nagmk26.h
void |
f (
const double *t,
const Integer *n,
const double y[],
double yp[],
Integer iuser[],
double ruser[]) |
|
- 1: – Real (Kind=nag_wp)Input
-
On entry: , the current value of the independent variable.
- 2: – IntegerInput
-
On entry: , the number of ordinary differential equations in the system to be solved.
- 3: – Real (Kind=nag_wp) arrayInput
-
On entry: the current values of the dependent variables,
, for .
- 4: – Real (Kind=nag_wp) arrayOutput
-
On exit: the values of
, for .
- 5: – Integer arrayUser Workspace
- 6: – Real (Kind=nag_wp) arrayUser Workspace
-
f is called with the arguments
iuser and
ruser as supplied to
d02pef. You should use the arrays
iuser and
ruser to supply information to
f.
f must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which
d02pef is called. Arguments denoted as
Input must
not be changed by this procedure.
Note: f should not return floating-point NaN (Not a Number) or infinity values, since these are not handled by
d02pef. If your code inadvertently
does return any NaNs or infinities,
d02pef is likely to produce unexpected results.
- 2: – IntegerInput
-
On entry: , the number of ordinary differential equations in the system to be solved.
Constraint:
.
- 3: – Real (Kind=nag_wp)Input
-
On entry: , the next value of the independent variable where a solution is desired.
Constraint:
twant must be closer to
tend than the previous value of
tgot (or
tstart on the first call to
d02pef); see
d02pqf for a description of
tstart and
tend.
twant must not lie beyond
tend in the direction of integration.
- 4: – Real (Kind=nag_wp)Output
-
On exit:
, the value of the independent variable at which a solution has been computed. On successful exit with
,
tgot will equal
twant. On exit with
, a solution has still been computed at the value of
tgot but in general
tgot will not equal
twant.
- 5: – Real (Kind=nag_wp) arrayInput/Output
-
On entry: on the first call to
d02pef,
ygot need not be set. On all subsequent calls
ygot must remain unchanged.
On exit: an approximation to the true solution at the value of
tgot. At each step of the integration to
tgot, the local error has been controlled as specified in
d02pqf. The local error has still been controlled even when
, that is after a return with
.
- 6: – Real (Kind=nag_wp) arrayOutput
-
On exit: an approximation to the first derivative of the true solution at
tgot.
- 7: – Real (Kind=nag_wp) arrayInput/Output
-
On entry: on the first call to
d02pef,
ymax need not be set. On all subsequent calls
ymax must remain unchanged.
On exit: contains the largest value of computed at any step in the integration so far.
- 8: – Integer arrayUser Workspace
- 9: – Real (Kind=nag_wp) arrayUser Workspace
-
iuser and
ruser are not used by
d02pef, but are passed directly to
f and may be used to pass information to this routine.
- 10: – Integer arrayCommunication Array
- 11: – Real (Kind=nag_wp) arrayCommunication Array
-
On entry: these must be the same arrays supplied in a previous call to
d02pqf. They must remain unchanged between calls.
On exit: information about the integration for use on subsequent calls to d02pef or other associated routines.
- 12: – IntegerInput/Output
-
On entry:
ifail must be set to
,
. If you are unfamiliar with this argument you should refer to
Section 3.4 in How to Use the NAG Library and its Documentation for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value
is recommended. If the output of error messages is undesirable, then the value
is recommended. Otherwise, because for this routine the values of the output arguments may be useful even if
on exit, the recommended value is
.
When the value 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).
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:
-
On entry, a previous call to the setup routine has not been made or the communication arrays have become corrupted.
On entry, , but the value passed to the setup routine was .
On entry, the communication arrays have become corrupted, or a catastrophic error has already been detected elsewhere. You cannot continue integrating the problem.
tend (setup) had already been reached in a previous call.
To start a new problem, you will need to call the setup routine.
twant does not lie in the direction of integration.
.
twant is too close to the last value of
tgot (
tstart on setup).
When using the method of order
at setup, these must differ by at least
. Their absolute difference is
.
twant lies beyond
tend (setup) in the direction of integration, but is very close to
tend.
You may have intended
.
.
twant lies beyond
tend (setup) in the direction of integration.
and
.
You cannot call this routine after it has returned an error.
You must call the setup routine to start another problem.
You cannot call this routine when you have specified, in the setup routine, that the step integrator will be used.
-
This routine is being used inefficiently because the step size has been reduced drastically many times to obtain answers at many points. Using the order and pair method at setup is more appropriate here. You can continue integrating this problem.
-
Approximately function evaluations have been used to compute the solution since the integration started or since this message was last printed. However, you can continue integrating the problem.
-
Approximately
function evaluations have been used to compute the solution since the integration started or since this message was last printed. Your problem has been diagnosed as stiff. If the situation persists, it will cost roughly
times as much to reach
tend (setup) as it has cost to reach the current time. You should probably call routines intended for stiff problems. However, you can continue integrating the problem.
-
In order to satisfy your error requirements the solver has to use a step size of at the current time, . This step size is too small for the machine precision, and is smaller than .
-
The global error assessment algorithm failed at start of integration.
The integration is being terminated.
The global error assessment may not be reliable for times beyond .
The integration is being terminated.
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
The accuracy of integration is determined by the arguments
tol and
thresh in a prior call to
d02pqf (see the routine document for
d02pqf for further details and advice). Note that only the local error at each step is controlled by these arguments. The error estimates obtained are not strict bounds but are usually reliable over one step. Over a number of steps the overall error may accumulate in various ways, depending on the properties of the differential system.
8
Parallelism and Performance
d02pef 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.
If
d02pef returns with
and the accuracy specified by
tol and
thresh is really required then you should consider whether there is a more fundamental difficulty. For example, the solution may contain a singularity. In such a region the solution components will usually be large in magnitude. Successive output values of
ygot and
ymax should be monitored (or
d02pff should be used since this takes one integration step at a time) with the aim of trapping the solution before the singularity. In any case numerical integration cannot be continued through a singularity, and analytical treatment may be necessary.
Performance statistics are available after any return from
d02pef by a call to
d02ptf. If
in the call to
d02pqf, global error assessment is available after a return from
d02pef with
,
,
,
,
or
by a call to
d02puf.
After a failure with
or
each of the diagnostic routines
d02ptf and
d02puf may be called only once.
If d02pef returns with then it is advisable to change to another code more suited to the solution of stiff problems. d02pef will not return with if the problem is actually stiff but it is estimated that integration can be completed using less function evaluations than already computed.
10
Example
This example solves the equation
reposed as
over the range
with initial conditions
and
. Relative error control is used with threshold values of
for each solution component and compute the solution at intervals of length
across the range. A low-order Runge–Kutta method (see
d02pqf) is also used with tolerances
and
in turn so that the solutions can be compared.
See also
Section 10 in
d02puf.
10.1
Program Text
Program Text (d02pefe.f90)
10.2
Program Data
Program Data (d02pefe.d)
10.3
Program Results
Program Results (d02pefe.r)