D02PWF (PDF version)
D02 Chapter Contents
D02 Chapter Introduction
NAG Library Manual

NAG Library Routine Document

D02PWF

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.

+ Contents

    1  Purpose
    7  Accuracy

1  Purpose

D02PWF resets the end point in an integration performed by D02PDF.

2  Specification

SUBROUTINE D02PWF ( TENDNU, IFAIL)
INTEGER  IFAIL
REAL (KIND=nag_wp)  TENDNU

3  Description

D02PWF and its associated routines (D02PDF, D02PVF, D02PXF, D02PYF and D02PZF) 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
y=ft,y  given  yt0=y0
where y is the vector of n solution components and t is the independent variable.
D02PWF is used to reset the final value of the independent variable, tf, 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 D02PDF) in the current direction of integration. It is much more efficient to use D02PWF for this purpose than to use D02PVF 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 D02PVF.

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 tf.
Constraint: signTENDNU-TNOW=signTEND-TSTART, where TSTART and TEND are as supplied in the previous call to D02PVF and TNOW is returned by the preceding call to D02PDF. TENDNU must be distinguishable from TNOW for the method and the machine precision being used.
2:     IFAIL – INTEGERInput/Output
On entry: IFAIL must be set to 0, -1​ or ​1. 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 -1​ or ​1 is recommended. If the output of error messages is undesirable, then the value 1 is recommended. Otherwise, if you are not familiar with this parameter, the recommended value is 0. When the value -1​ or ​1 is used it is essential to test the value of IFAIL on exit.
On exit: IFAIL=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6  Error Indicators and Warnings

If on entry IFAIL=0 or -1, explanatory error messages are output on the current error message unit (as defined by X04AAF).
Errors or warnings detected by the routine:
IFAIL=1
On entry, an invalid input value for TENDNU was detected or an invalid call to D02PWF was made, for example without a previous call to the integration routine D02PDF. You cannot continue integrating the problem.

7  Accuracy

Not applicable.

8  Further Comments

None.

9  Example

This example integrates a two body problem. The equations for the coordinates xt,yt of one body as functions of time t in a suitable frame of reference are
x=-xr3
y=-yr3,   r=x2+y2.
The initial conditions
x0=1-ε, x0=0 y0=0, y0= 1+ε 1-ε
lead to elliptic motion with 0<ε<1. ε=0.7 is selected and reposed as
y1=y3 y2=y4 y3=- y1r3 y4=- y2r3
over the range 0,6π. Relative error control is used with threshold values of 1.0E−10 for each solution component and compute the solution at intervals of length π across the range using D02PWF to reset the end of the integration range. A high-order Runge–Kutta method (METHOD=3) is also used with tolerances TOL=1.0E−4 and TOL=1.0E−5 in turn so that the solutions may be compared. The value of π is obtained by using X01AAF.
Note that the length of TOL=1.0E−4 and WORK is large enough for any valid combination of input arguments to D02PVF.

9.1  Program Text

Program Text (d02pwfe.f90)

9.2  Program Data

Program Data (d02pwfe.d)

9.3  Program Results

Program Results (d02pwfe.r)

Produced by GNUPLOT 4.4 patchlevel 0 -0.8 -0.6 -0.4 -0.2 0 0.2 0.4 0.6 0.8 -2 -1.5 -1 -0.5 0 0.5 -0.1 -0.05 0 0.05 0.1 -0.25 -0.2 -0.15 -0.1 -0.05 0 0.05 Orbit - y y Deviation from True Ellipse Orbit - x Example Program Solution with TOL = 0.1e-04 x Deviation from True Ellipse orbit deviation o

D02PWF (PDF version)
D02 Chapter Contents
D02 Chapter Introduction
NAG Library Manual

© The Numerical Algorithms Group Ltd, Oxford, UK. 2012