d02puf provides details about global error assessment computed during an integration with either
d02pef,
d02pff or
d02pgf.
d02puf and its associated routines (
d02pef,
d02pff,
d02pgf,
d02phf,
d02pjf,
d02pqf,
d02prf,
d02psf and
d02ptf) solve the 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.
After a call to
d02pef,
d02pff or
d02pgf,
d02puf can be called for information about error assessment, if this assessment was specified in the setup routine
d02pqf. A more accurate ‘true’ solution
is computed in a secondary integration. The error is measured as specified in
d02pqf for local error control. At each step in the primary integration, an average magnitude
of component
is computed, and the error in the component is
It is difficult to estimate reliably the true error at a single point. For this reason the RMS (root-mean-square) average of the estimated global error in each solution component is computed. This average is taken over all steps from the beginning of the integration through to the current integration point. If all has gone well, the average errors reported will be comparable to
tol (see
d02pqf). The maximum error seen in any component in the integration so far and the point where the maximum error first occurred are also reported.
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
If on entry
or
, explanatory error messages are output on the current error message unit (as defined by
x04aaf).
Not applicable.
If the integration has proceeded ‘well’ and the problem is smooth enough, stable and not too difficult then the values returned in the arguments
rmserr and
errmax should be comparable to the value of
tol specified in the prior call to
d02pqf.
This example integrates a two body problem. The equations for the coordinates
of one body as functions of time
in a suitable frame of reference are
The initial conditions
lead to elliptic motion with
.
is selected and the system of ODEs is reposed as
over the range
. Relative error control is used with threshold values of
for each solution component and a high-order Runge–Kutta method (
) with tolerance
.
Note that for illustration purposes since it is not necessary for this problem, this example integrates to the end of the range regardless of efficiency concerns (i.e., returns from
d02pef with
,
or
).