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

NAG Library Routine Document

D02LAF

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

D02LAF is a routine for integrating a non-stiff system of second-order ordinary differential equations using Runge–Kutta–Nystrom techniques.

2  Specification

SUBROUTINE D02LAF ( FCN, NEQ, T, TEND, Y, YP, YDP, RWORK, LRWORK, IFAIL)
INTEGER  NEQ, LRWORK, IFAIL
REAL (KIND=nag_wp)  T, TEND, Y(NEQ), YP(NEQ), YDP(NEQ), RWORK(LRWORK)
EXTERNAL  FCN

3  Description

Given the initial values x,y1,y2,,yNEQ,y1,y2,,yNEQ D02LAF integrates a non-stiff system of second-order differential equations of the type
yi=fix,y1,y2,,yNEQ,  i=1,2,,NEQ,
from x=T to x=TEND using a Runge–Kutta–Nystrom formula pair. The system is defined by FCN, which evaluates fi in terms of x and y1,y2,,yNEQ, where y1,y2,,yNEQ are supplied at x.
There are two Runge–Kutta–Nystrom formula pairs implemented in this routine. The lower order method is intended if you have moderate accuracy requirements and may be used in conjunction with the interpolation routine D02LZF to produce solutions and derivatives at user-specified points. The higher order method is intended if you have high accuracy requirements.
In one-step mode the routine returns approximations to the solution, derivative and fi at each integration point. In interval mode these values are returned at the end of the integration range. You select the order of the method, the mode of operation, the error control and various optional inputs by a prior call to D02LXF.
For a description of the Runge–Kutta–Nystrom formula pairs see Dormand et al. (1986a) and Dormand et al. (1986b) and for a description of their practical implementation see Brankin et al. (1989).

4  References

Brankin R W, Dormand J R, Gladwell I, Prince P J and Seward W L (1989) Algorithm 670: A Runge–Kutta–Nystrom Code ACM Trans. Math. Software 15 31–40
Dormand J R, El–Mikkawy M E A and Prince P J (1986a) Families of Runge–Kutta–Nystrom formulae Mathematical Report TPMR 86-1 Teesside Polytechnic
Dormand J R, El–Mikkawy M E A and Prince P J (1986b) High order embedded Runge–Kutta–Nystrom formulae Mathematical Report TPMR 86-2 Teesside Polytechnic

5  Parameters

1:     FCN – SUBROUTINE, supplied by the user.External Procedure
FCN must evaluate the functions fi (that is the second derivatives yi) for given values of its arguments x, y1,y2,,yNEQ.
The specification of FCN is:
SUBROUTINE FCN ( NEQ, T, Y, F)
INTEGER  NEQ
REAL (KIND=nag_wp)  T, Y(NEQ), F(NEQ)
1:     NEQ – INTEGERInput
On entry: the number of differential equations.
2:     T – REAL (KIND=nag_wp)Input
On entry: x, the value of the argument.
3:     Y(NEQ) – REAL (KIND=nag_wp) arrayInput
On entry: yi, for i=1,2,,NEQ, the value of the argument.
4:     F(NEQ) – REAL (KIND=nag_wp) arrayOutput
On exit: the value of fi, for i=1,2,,NEQ.
FCN must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which D02LAF is called. Parameters denoted as Input must not be changed by this procedure.
2:     NEQ – INTEGERInput
On entry: the number of second-order ordinary differential equations to be solved by D02LAF. It must contain the same value as the parameter NEQ used in a prior call to D02LXF.
Constraint: NEQ1.
3:     T – REAL (KIND=nag_wp)Input/Output
On entry: the initial value of the independent variable x.
Constraint: TTEND.
On exit: the value of the independent variable, which is usually TEND, unless an error has occurred or the code is operating in one-step mode. If the integration is to be continued, possibly with a new value for TEND, T must not be changed.
4:     TEND – REAL (KIND=nag_wp)Input
On entry: the end point of the range of integration. If TEND<T on initial entry, integration will proceed in the negative direction. TEND may be reset, in the direction of integration, before any continuation call.
5:     Y(NEQ) – REAL (KIND=nag_wp) arrayInput/Output
On entry: the initial values of the solution y1,y2,,yNEQ.
On exit: the computed values of the solution at the exit value of T. If the integration is to be continued, possibly with a new value for TEND, these values must not be changed.
6:     YP(NEQ) – REAL (KIND=nag_wp) arrayInput/Output
On entry: the initial values of the derivatives y1,y2,,yNEQ.
On exit: the computed values of the derivatives at the exit value of T. If the integration is to be continued, possibly with a new value for TEND, these values must not be changed.
7:     YDP(NEQ) – REAL (KIND=nag_wp) arrayInput/Output
On entry: must be unchanged from a previous call to D02LAF.
On exit: the computed values of the second derivative at the exit value of T, unless illegal input is detected, in which case the elements of YDP may not have been initialized. If the integration is to be continued, possibly with a new value for TEND, these values must not be changed.
8:     RWORK(LRWORK) – REAL (KIND=nag_wp) arrayCommunication Array
This must be the same parameter RWORK as supplied to D02LXF. It is used to pass information from D02LXF to D02LAF, and from D02LAF to both D02LYF and D02LZF. Therefore the contents of this array must not be changed before the call to D02LAF or calling either of the routines D02LYF and D02LZF.
9:     LRWORK – INTEGERInput
On entry: the dimension of the array RWORK as declared in the (sub)program from which D02LAF is called.
This must be the same parameter LRWORK as supplied to D02LXF.
10:   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, because for this routine the values of the output parameters may be useful even if IFAIL0 on exit, the recommended value is -1. 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
Illegal input detected, i.e., one of the following conditions:
  • on any call, T=TEND, or the value of NEQ or LRWORK has been altered;
  • on a continuation call, the direction of integration has been changed;
  • D02LXF had not been called previously, or the previous call to D02LXF resulted in an error exit.
This error exit can be caused if elements of RWORK have been overwritten.
IFAIL=2
The maximum number of steps has been attempted. (See parameter MAXSTP in D02LXF.) If integration is to be continued then you need only reset IFAIL and call the routine again and a further MAXSTP steps will be attempted.
IFAIL=3
In order to satisfy the error requirements, the step size needed is too small for the machine precision being used.
IFAIL=4
The code has detected two successive error exits at the current value of x and cannot proceed. Check all input variables.
IFAIL=5
The code has detected inefficient use of the integration method. The step size has been reduced by a significant amount too often in order to hit the output points specified by TEND. (Of the last 100 or more successful steps more than 10% are steps with sizes that have had to be reduced by a factor of greater than a half.)

7  Accuracy

The accuracy of integration is determined by the parameters TOL, THRES and THRESP in a prior call to D02LXF. Note that only the local error at each step is controlled by these parameters. 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 system. The code is designed so that a reduction in TOL should lead to an approximately proportional reduction in the error. You are strongly recommended to call D02LAF with more than one value for TOL and to compare the results obtained to estimate their accuracy.
The accuracy obtained depends on the type of error test used. If the solution oscillates around zero a relative error test should be avoided, whereas if the solution is exponentially increasing an absolute error test should not be used. For a description of the error test see the specifications of the parameters TOL, THRES and THRESP in routine document D02LXF.

8  Further Comments

If D02LAF fails with IFAIL=3 then the value of TOL may be so small that a solution cannot be obtained, in which case the routine should be called again with a larger value for TOL. If the accuracy requested is really needed then you should consider whether there is a more fundamental difficulty. For example:
(a) in the region of a singularity the solution components will usually be of a large magnitude. D02LAF could be used in one-step mode to monitor the size of the solution 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;
(b) if the solution contains fast oscillatory components, the routine will require a very small step size to preserve stability. This will usually be exhibited by excessive computing time and sometimes an error exit with IFAIL=3. The Runge–Kutta–Nystrom methods are not efficient in such cases and you should consider reposing your problem as a system of first-order ordinary differential equations and then using a routine from sub-chapter D02M–N with the Blend formulae (see D02MVF).
D02LAF can be used for producing results at short intervals (for example, for tabulation), in two ways. By far the less efficient is to call D02LAF successively over short intervals, t+i-1×h to t+i×h, although this is the only way if the higher order method has been selected and precisely not what it is intended for. A more efficient way, only for use when the lower order method has been selected, is to use D02LAF in one-step mode. The output values of parameters Y, YP, YDP, T and RWORK are set correctly for a call to D02LZF to compute the solution and derivative at the required points.

9  Example

This example solves the following system (the two body problem)
y1 = -y1/y12+y223/2 y2 = -y2/y12+y223/2
over the range 0,20 with initial conditions y1=1.0-ε, y2=0.0, y1=0.0 and y2= 1+ε 1-ε  where ε, the eccentricity, is 0.5. The system is solved using the lower order method with relative local error tolerances 1.0E−4 and 1.0E−5 and default threshold tolerances. D02LAF is used in one-step mode (ONESTP=.TRUE.) and D02LZF provides solution values at intervals of 2.0.

9.1  Program Text

Program Text (d02lafe.f90)

9.2  Program Data

Program Data (d02lafe.d)

9.3  Program Results

Program Results (d02lafe.r)

Produced by GNUPLOT 4.4 patchlevel 0 -1 -0.8 -0.6 -0.4 -0.2 0 0.2 0.4 0.6 0.8 1 1.2 -1.6 -1.4 -1.2 -1 -0.8 -0.6 -0.4 -0.2 0 0.2 0.4 0.6 y x Example Program Second-order ODE Solution using Runge-Kutta-Nystrom The Two-body Problem (using shifts to distinguish orbits) o 1st orbit o 2nd orbit+(0,0.1) o 3rd orbit+(0,0.2) 1 2 3

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

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