Note: before using this routine, please read the Users' Note for your implementation to check the interpretation of bold italicised terms and other implementation-dependent details.
REAL (KIND=nag_wp)
RMSERR(N), ERRMAX, TERRMX, RWSAV(32*N+350)
3 Description
D02PUF and its associated routines (D02PEF, D02PFF, 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 or D02PFF, 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.
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 Parameters
1: N – INTEGERInput
On entry: , the number of ordinary differential equations in the system to be solved by the integration routine.
On exit: approximates the RMS average of the true error of the numerical solution for the th solution component, for . The average is taken over all steps from the beginning of the integration to the current integration point.
3: ERRMAX – REAL (KIND=nag_wp)Output
On exit: the maximum weighted approximate true error taken over all solution components and all steps.
4: TERRMX – REAL (KIND=nag_wp)Output
On exit: the first value of the independent variable where an approximate true error attains the maximum value, ERRMAX.
5: IWSAV() – INTEGER arrayCommunication Array
6: RWSAV() – REAL (KIND=nag_wp) arrayCommunication Array
On entry: these must be the same arrays supplied in a previous call to D02PEF or D02PFF. They must remain unchanged between calls.
On exit: information about the integration for use on subsequent calls to D02PEF or D02PFF or other associated routines.
7: IFAIL – INTEGERInput/Output
On entry: IFAIL must be set to , . If you are unfamiliar with this parameter you should refer to Section 3.3 in the Essential Introduction 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, if you are not familiar with this parameter, 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:
No error assessment is available since the integrator has not actually taken any successful steps.
No error assessment is available since you did not ask for it in your call to the setup routine.
On entry, a previous call to the setup routine has not been made or the communication arrays have become corrupted, or a catastrophic error has already been detected elsewhere. You cannot continue integrating the problem.
On entry, , but the value passed to the setup routine was .
You cannot call this routine before you have called the integrator.
You have already made one call to this routine after the the integrator could not achieve specified accuracy. You cannot call this routine again.
7 Accuracy
Not applicable.
8 Further Comments
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.
9 Example
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 ).