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.
D02PRF and its associated routines (D02PFF, D02PQF, D02PSF, D02PTF and D02PUF) 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.
D02PRF is used to reset the final value of the independent variable, , when the integration is already underway. It can be used to extend or reduce the range of integration. The new value must be beyond the current value of the independent variable (as returned in TNOW by D02PFF) in the current direction of integration. It is much more efficient to use D02PRF for this purpose than to use D02PQF which involves the overhead of a complete restart of the integration.
If you want to change the direction of integration then you must restart by a call to D02PQF.
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: TENDNU – REAL (KIND=nag_wp)Input
On entry: the new value for .
Constraint:
, where TSTART and TEND are as supplied in the previous call to D02PQF and TNOW is returned by the preceding call to D02PFF (i.e., integration must proceed in the same direction as before). TENDNU must be distinguishable from TNOW for the method and the machine precision being used.
2: IWSAV() – INTEGER arrayCommunication Array
3: RWSAV() – REAL (KIND=nag_wp) arrayCommunication Array
Note: the communication array RWSAV used by the other routines in the suite must be used here however, only the first elements will be referenced.
On entry: these must be the same arrays supplied in a previous call to D02PFF. They must remain unchanged between calls.
On exit: information about the integration for use on subsequent calls to D02PFF or other associated routines.
4: 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:
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, TENDNU is not beyond TNOW (step integrator) in the direction of integration. The direction is negative, and .
On entry, TENDNU is not beyond TNOW (step integrator) in the direction of integration. The direction is positive, and .
On entry, TENDNU is too close to TNOW (step integrator). Their difference is , but this quantity must be at least .
You cannot call this routine after the integrator has returned an error.
You cannot call this routine before you have called the setup routine.
You cannot call this routine before you have called the step integrator.
You cannot call this routine when the range integrator has been used.
7 Accuracy
Not applicable.
8 Further Comments
None.
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 compute the solution at intervals of length across the range using D02PRF to reset the end of the integration range. A high-order Runge–Kutta method () is also used with tolerances and in turn so that the solutions may be compared.