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

NAG Library Routine Document

D02NMF

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

D02NMF is a reverse communication routine for integrating stiff systems of explicit ordinary differential equations.

2  Specification

INTEGER  NEQ, LDYSAV, ITOL, INFORM(23), SDYSAV, NWKJAC, JACPVT(NJCPVT), NJCPVT, IMON, INLN, IRES, IREVCM, ITASK, ITRACE, IFAIL
REAL (KIND=nag_wp)  T, TOUT, Y(NEQ), YDOT(NEQ), RWORK(50+4*NEQ), RTOL(*), ATOL(*), YSAV(LDYSAV,SDYSAV), WKJAC(NWKJAC)

3  Description

D02NMF is a general purpose routine for integrating the initial value problem for a stiff system of explicit ordinary differential equations,
y=gt,y.
An outline of a typical calling program is given below:
!     Declarations 

      call linear algebra setup routine 
      call integrator setup routine 
      IREVCM=0 
 1000 CALL D02NMF(NEQ, LDYSAV, T, TOUT, Y, YDOT, RWORK, RTOL,           &
      	          ATOL, ITOL, INFORM, YSAVE, SDYSAV, WKJAC, NWKJAC,     &
     		  JACPVT, NJCPVT, IMON, INLN, IRES, IREVCM, ITASK,      &
		  ITRACE, IFAIL) 
      IF (IREVCM.GT.0) THEN 
        IF (IREVCM. EQ. 8) THEN 
          supply the Jacobian matrix                                  (i)
        ELSE IF(IREVCM.EQ.9) THEN 
          perform monitoring tasks requested by the user             (ii)
        ELSE IF(IRECVM.EQ.1.OR.IREVCM.GE.3.AND.IREVCM.LE.5) THEN 
          evaluate the derivative                                   (iii)
        ELSE IF(IREVCM.EQ.10) THEN 
          indicates an unsuccessful step 
        ENDIF 
        GO TO 1000 
      ENDIF 

!     post processing (optional linear algebra diagnostic call 
!     (sparse case only), optional integrator diagnostic call) 

      STOP 
      END
There are three major operations that may be required of the calling (sub)program on an intermeditate return (IREVCM0) from D02NMF; these are denoted (i), (ii) and (iii) above.
The following sections describe in greater detail exactly what is required of each of these operations.
(i) Supply the Jacobian Matrix
You need only provide this facility if the parameter JCEVAL='A' (or JCEVAL='F' if using sparse matrix linear algebra) in a call to the linear algebra setup routine (see JCEVAL in D02NSF). If the Jacobian matrix is to be evaluated numerically by the integrator, then the remainder of section (i) can be ignored.
We must define the system of nonlinear equations which is solved internally by the integrator. The time derivative, y, has the form
y=y-z/hd,
where h is the current step size and d is a parameter that depends on the integration method in use. The vector y is the current solution and the vector z depends on information from previous time steps. This means that d dy ​ ​ = hd ddy ​ ​ .
The system of nonlinear equations that is solved has the form
y-gt,y=0
but is solved in the form
rt,y=0,
where the function r is defined by
rt,y=hdy-z/hd-gt,y.
It is the Jacobian matrix r y  that you must supply as follows:
ri yj =1-hd gi yj if ​i=j, ri yj =0-hd gi yj otherwise,
where t, h and d are located in RWORK19, RWORK16 and RWORK20 respectively and the array Y contains the current values of the dependent variables. Only the nonzero elements of the Jacobian need be set, since the locations where it is to be stored are preset to zero.
Hereafter in this document this operation will be referred to as JAC.
(ii) Perform Tasks Requested by You
This operation is essentially a monitoring function and additionally provides the opportunity of changing the current values of Y, HNEXT (the step size that the integrator proposes to take on the next step), HMIN (the minimum step size to be taken on the next step), and HMAX (the maximum step size to be taken on the next step). The scaled local error at the end of a timestep may be obtained by calling real function D02ZAF as follows:
      IFAIL = 1
      ERRLOC = D02ZAF(NEQ,RWORK(51+NEQ),RWORK(51),IFAIL)
!     CHECK IFAIL BEFORE PROCEEDING
The following gives details of the location within the array RWORK of variables that may be of interest to you:
Variable Specification Location
TCURR the current value of the independent variable RWORK19
HLAST last step size successfully used by the integrator RWORK15
HNEXT step size that the integrator proposes to take on the next step RWORK16
HMIN minimum step size to be taken on the next step RWORK17
HMAX maximum step size to be taken on the next step RWORK18
NQU the order of the integrator used on the last step RWORK10
You are advised to consult the description of MONITR in D02NBF for details on what optional input can be made.
If Y is changed, then IMON must be set to 2 before return to D02NMF. If either of the values of HMIN or HMAX are changed, then IMON must be set 3 before return to D02NMF. If HNEXT is changed, then IMON must be set to 4 before return to D02NMF.
In addition you can force D02NMF to evaluate the residual vector
y-gt,y
by setting IMON=0 and INLN=3 and then returning to D02NMF; on return to this monitoring operation the residual vector will be stored in RWORK50+2×NEQ+i, for i=1,2,,NEQ.
Hereafter in this document this operation will be referred to as MONITR.
(iii) Evaluate the Derivative
This operation must evaluate the derivative vector for the explicit ordinary differential equation system defined by
y=gt,y,
where t is located in RWORK19.
Hereafter in this document this operation will be referred to as FCN.

4  References

See the D02M–N sub-chapter Introduction.

5  Parameters

Note: this routine uses reverse communication. Its use involves an initial entry, intermediate exits and re-entries, and a final exit, as indicated by the parameter IREVCM. Between intermediate exits and re-entries, all parameters other than YDOT, RWORK, WKJAC, IMON, INLN and IRES must remain unchanged.
1:     NEQ – INTEGERInput
On initial entry: the number of differential equations to be solved.
Constraint: NEQ1.
2:     LDYSAV – INTEGERInput
On initial entry: an upper bound on the maximum number of differential equations to be solved during the integration.
Constraint: LDYSAVNEQ.
3:     T – REAL (KIND=nag_wp)Input/Output
On initial entry: t, the value of the independent variable. The input value of T is used only on the first call as the initial point of the integration.
On final exit: the value at which the computed solution y is returned (usually at TOUT).
4:     TOUT – REAL (KIND=nag_wp)Input
On initial entry: the next value of t at which a computed solution is desired. For the initial t, the input value of TOUT is used to determine the direction of integration. Integration is permitted in either direction (see also ITASK).
Constraint: TOUTT.
5:     Y(NEQ) – REAL (KIND=nag_wp) arrayInput/Output
On initial entry: the values of the dependent variables (solution). On the first call the first NEQ elements of y must contain the vector of initial values.
On final exit: the computed solution vector evaluated at T (usually t=TOUT).
6:     YDOT(NEQ) – REAL (KIND=nag_wp) arrayInput/Output
On intermediate re-entry: must be set to the derivatives as defined under the description of IREVCM.
On final exit: the time derivatives y of the vector y at the last integration point.
7:     RWORK(50+4×NEQ) – REAL (KIND=nag_wp) arrayCommunication Array
On initial entry: must be the same array as used by one of the method setup routines D02MVF, D02NVF or D02NWF, and by one of the storage setup routines D02NTF, D02NUF or D02NVF. The contents of RWORK must not be changed between any call to a setup routine and the first call to D02NMF.
On intermediate re-entry: elements of RWORK must be set to quantities as defined under the description of IREVCM.
On intermediate exit: contains information for JAC, FCN and MONITR operations as described in Section 3 and the parameter IREVCM.
8:     RTOL(*) – REAL (KIND=nag_wp) arrayInput
Note: the dimension of the array RTOL must be at least 1 if ITOL=1 or 2, and at least NEQ otherwise.
On initial entry: the relative local error tolerance.
Constraint: RTOLi0.0 for all relevant i (see ITOL).
9:     ATOL(*) – REAL (KIND=nag_wp) arrayInput
Note: the dimension of the array ATOL must be at least 1 if ITOL=1 or 3, and at least NEQ otherwise.
On initial entry: the absolute local error tolerance.
Constraint: ATOLi0.0 for all relevant i (see ITOL).
10:   ITOL – INTEGERInput
On initial entry: a value to indicate the form of the local error test. ITOL indicates to D02NMF whether to interpret either or both of RTOL or ATOL as a vector or a scalar. The error test to be satisfied is ei/wi<1.0, where wi is defined as follows:
ITOL RTOL ATOL wi
1 scalar scalar RTOL1×yi+ATOL1
2 scalar vector RTOL1×yi+ATOLi
3 vector scalar RTOLi×yi+ATOL1
4 vector vector RTOLi×yi+ATOLi
ei is an estimate of the local error in yi, computed internally, and the choice of norm to be used is defined by a previous call to an integrator setup routine.
Constraint: ITOL=1, 2, 3 or 4.
11:   INFORM(23) – INTEGER arrayCommunication Array
12:   YSAV(LDYSAV,SDYSAV) – REAL (KIND=nag_wp) arrayCommunication Array
13:   SDYSAV – INTEGERInput
On initial entry: the second dimension of the array YSAV as declared in the (sub)program from which D02NMF is called. An appropriate value for SDYSAV is described in the specifications of the integrator setup routines D02NVF and D02NWF. This value must be the same as that supplied to the integrator setup routine.
14:   WKJAC(NWKJAC) – REAL (KIND=nag_wp) arrayInput/Output
On intermediate re-entry: elements of the Jacobian as defined under the description of IREVCM. If a numerical Jacobian was requested then WKJAC is used for workspace.
On intermediate exit: the Jacobian is overwritten.
15:   NWKJAC – INTEGERInput
On initial entry: the dimension of the array WKJAC as declared in the (sub)program from which D02NMF is called. The actual size depends on the linear algebra method used. An appropriate value for NWKJAC is described in the specifications of the linear algebra setup routines D02NSF, D02NTF and D02NUF for full, banded and sparse matrix linear algebra respectively. This value must be the same as that supplied to the linear algebra setup routine.
16:   JACPVT(NJCPVT) – INTEGER arrayCommunication Array
17:   NJCPVT – INTEGERInput
On initial entry: the dimension of the array JACPVT as declared in the (sub)program from which D02NMF is called. The actual size depends on the linear algebra method used. An appropriate value for NJCPVT is described in the specifications of the linear algebra setup routines D02NTF and D02NUF for banded and sparse matrix linear algebra respectively. This value must be the same as that supplied to the linear algebra setup routine. When full matrix linear algebra is chosen, the array JACPVT is not used and hence NJCPVT should be set to 1.
18:   IMON – INTEGERInput/Output
On intermediate exit: used to pass information between D02NMF and the MONITR operation (see Section 3). With IREVCM=9, IMON contains a flag indicating under what circumstances the return from D02NMF occurred:
IMON=-2
Exit from D02NMF after IRES=4 caused an early termination (this facility could be used to locate discontinuities).
IMON=-1
The current step failed repeatedly.
IMON=0
Exit from D02NMF after a call to the internal nonlinear equation solver.
IMON=1
The current step was successful.
On intermediate re-entry: may be reset to determine subsequent action in D02NMF.
IMON=-2
Integration is to be halted. A return will be made from D02NMF to the calling (sub)program with IFAIL=12.
IMON=-1
Allow D02NMF to continue with its own internal strategy. The integrator will try up to three restarts unless IMON-1.
IMON=0
Return to the internal nonlinear equation solver, where the action taken is determined by the value of INLN.
IMON=1
Normal exit to D02NMF to continue integration.
IMON=2
Restart the integration at the current time point. The integrator will restart from order 1 when this option is used. The solution Y, provided by the MONITR operation (see Section 3), will be used for the initial conditions.
IMON=3
Try to continue with the same step size and order as was to be used before entering the MONITR operation (see Section 3). HMIN and HMAX may be altered if desired.
IMON=4
Continue the integration but using a new value of HNEXT and possibly new values of HMIN and HMAX.
19:   INLN – INTEGERInput/Output
On intermediate re-entry: with IMON=0 and IREVCM=9, INLN specifies the action to be taken by the internal nonlinear equation solver. By setting INLN=3 and returning to D02NMF, the residual vector is evaluated and placed in RWORK50+2×NEQ+i, for i=1,2,,NEQ and then the MONITR operation (see Section 3) is invoked again. At present this is the only option available: INLN must not be set to any other value.
On intermediate exit: contains a flag indicating the action to be taken, if any, by the internal nonlinear equation solver.
20:   IRES – INTEGERInput/Output
On intermediate exit: with IREVCM=1, 2, 3, 4 or 5, IRES contains the value 1.
On intermediate re-entry: should be unchanged unless one of the following actions is required of D02NMF in which case IRES should be set accordingly.
IRES=2
Indicates to D02NMF that control should be passed back immediately to the calling (sub)program with the error indicator set to IFAIL=11.
IRES=3
Indicates to D02NMF that an error condition has occurred in the solution vector, its time derivative or in the value of t. The integrator will use a smaller time step to try to avoid this condition. If this is not possible D02NMF returns to the calling (sub)program with the error indicator set to IFAIL=7.
IRES=4
Indicates to D02NMF to stop its current operation and to enter the MONITR operation (see Section 3) immediately.
21:   IREVCM – INTEGERInput/Output
On initial entry: must contain 0.
On intermediate re-entry: should remain unchanged.
On intermediate exit: indicates what action you must take before re-entering. The possible exit values of IREVCM are 1, 3, 4, 5, 8, 9 or 10, which should be interpreted as follows:
IREVCM=1, 3, 4 and 5
Indicates that an FCN operation (see Section 3) is required: y=gt,y must be supplied, where Yi is located in yi, for i=1,2,,NEQ.
For IREVCM=1 or 3, yi should be placed in location RWORK50+2×NEQ+i, for i=1,2,,NEQ.
For IREVCM=4, yi should be placed in location RWORK50+NEQ+i, for i=1,2,,NEQ.
For IREVCM=5, yi should be placed in location YDOTi, for i=1,2,,NEQ.
IREVCM=8
Indicates that a JAC operation (see Section 3) is required: the Jacobian matrix must be supplied.
If full matrix linear algebra is being used, then the i,jth element of the Jacobian must be stored in WKJACj-1×NEQ+i.
If banded matrix linear algebra is being used then the i,jth element of the Jacobian must be stored in WKJACi-1×mB+k, where mB=mL+mU+1 and k=minmL-i+1,0+j; here mL and mU are the number of subdiagonals and superdiagonals, respectively, in the band.
If sparse matrix linear algebra is being used then D02NRF must be called to determine which column of the Jacobian is required and where it should be stored.
 CALL D02NRF(J, IPLACE, INFORM) 
will return in J the number of the column of the Jacobian that is required and will set IPLACE=1 or 2. If IPLACE=1, then the i,jth element of the Jacobian must be stored in RWORK50+2×NEQ+i; otherwise it must be stored in RWORK50+NEQ+i.
IREVCM=9
Indicates that a MONITR operation (see Section 3) can be performed.
IREVCM=10
Indicates that the current step was not successful, due to error test failure or convergence test failure. The only information supplied to you on this return is the current value of the independent variable t, located in RWORK19. No values must be changed before re-entering D02NMF; this facility enables you to determine the number of unsuccessful steps.
On final exit: IREVCM=0 indicated the user-specified task has been completed or an error has been encountered (see the descriptions for ITASK and IFAIL).
Constraint: IREVCM=0, 1, 3, 4, 5, 8, 9 or 10.
22:   ITASK – INTEGERInput
On initial entry: the task to be performed by the integrator.
ITASK=1
Normal computation of output values of yt at t=TOUT (by overshooting and interpolating).
ITASK=2
Take one step only and return.
ITASK=3
Stop at the first internal integration point at or beyond t=TOUT and return.
ITASK=4
Normal computation of output values of yt at t=TOUT but without overshooting t=TCRIT. TCRIT must be specified as an option in one of the integrator setup routines before the first call to the integrator, or specified in the optional input routine before a continuation call. TCRIT (e.g., see D02NVF) may be equal to or beyond TOUT, but not before it in the direction of integration.
ITASK=5
Take one step only and return, without passing TCRIT (e.g., see D02NVF). TCRIT must be specified under ITASK=4.
Constraint: 1ITASK5.
23:   ITRACE – INTEGERInput
On initial entry: the level of output that is printed by the integrator. ITRACE may take the value -1, 0, 1, 2 or 3.
ITRACE<-1
-1 is assumed and similarly if ITRACE>3, then 3 is assumed.
ITRACE=-1
No output is generated.
ITRACE=0
Only warning messages are printed on the current error message unit (see X04AAF).
ITRACE>0
Warning messages are printed as above, and on the current advisory message unit (see X04ABF) output is generated which details Jacobian entries, the nonlinear iteration and the time integration. The advisory messages are given in greater detail the larger the value of ITRACE.
24:   IFAIL – INTEGERInput/Output
On initial 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 final 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, the integrator detected an illegal input, or that a linear algebra and/or integrator setup routine has not been called prior to the call to the integrator. If ITRACE0, the form of the error will be detailed on the current error message unit (see X04AAF).
IFAIL=2
The maximum number of steps specified has been taken (see the description of optional inputs in the integrator setup routines and the optional input continuation routine, D02NZF).
IFAIL=3
With the given values of RTOL and ATOL no further progress can be made across the integration range from the current point T. The components Y1,Y2,,YNEQ contain the computed values of the solution at the current point T.
IFAIL=4
There were repeated error test failures on an attempted step, before completing the requested task, but the integration was successful as far as T. The problem may have a singularity, or the local error requirements may be inappropriate.
IFAIL=5
There were repeated convergence test failures on an attempted step, before completing the requested task, but the integration was successful as far as T. This may be caused by an inaccurate Jacobian matrix or one which is incorrectly computed.
IFAIL=6
Some error weight wi became zero during the integration (see the description of ITOL). Pure relative error control ATOLi=0.0 was requested on a variable (the ith) which has now vanished. The integration was successful as far as T.
IFAIL=7
The FCN operation (see Section 3) set the error flag IRES=3 continually despite repeated attempts by the integrator to avoid this.
IFAIL=8
Not used for this integrator.
IFAIL=9
A singular Jacobian r y  has been encountered. This error exit is unlikely to be taken when solving explicit ordinary differential equations. You should check the problem formulation and Jacobian calculation.
IFAIL=10
An error occurred during Jacobian formulation or back-substitution (a more detailed error description may be directed to the current error message unit, see X04AAF).
IFAIL=11
The FCN operation (see Section 3) signalled the integrator to halt the integration and return by setting IRES=2. Integration was successful as far as T.
IFAIL=12
The MONITR operation (see Section 3) set IMON=-2 and so forced a return but the integration was successful as far as T.
IFAIL=13
The requested task has been completed, but it is estimated that a small change in RTOL and ATOL is unlikely to produce any change in the computed solution. (Only applies when you are not operating in one step mode, that is when ITASK2 or 5.)
IFAIL=14
The values of RTOL and ATOL are so small that D02NMF is unable to start the integration.

7  Accuracy

The accuracy of the numerical solution may be controlled by a careful choice of the parameters RTOL and ATOL, and to a much lesser extent by the choice of norm. You are advised to use scalar error control unless the components of the solution are expected to be poorly scaled. For the type of decaying solution typical of many stiff problems, relative error control with a small absolute error threshold will be most appropriate (that is, you are advised to choose ITOL=1 with ATOL1 small but positive).

8  Further Comments

The cost of computing a solution depends critically on the size of the differential system and to a lesser extent on the degree of stiffness of the problem; also on the type of linear algebra being used. For further details see Section 8 of the documents for D02NBF (full matrix), D02NCF (banded matrix) or D02NDF (sparse matrix).
In general, you are advised to choose the backward differentiation formula option (setup routine D02NVF) but if efficiency is of great importance and especially if it is suspected that g y  has complex eigenvalues near the imaginary axis for some part of the integration, you should try the BLEND option (setup routine D02NWF).

9  Example

This example solves the well-known stiff Robertson problem
a = -0.04a+1.0E4bc-3.0E7b2 b = -0.04a-1.0E4bc-3.0E7b2 c = -0.04a-1.0E4bc-3.0E7b2
over the range 0,10 with initial conditions a=1.0 and b=c=0.0 and with scalar error control (ITOL=1). The integration proceeds until TOUT=10.0 is passed, providing C1 interpolation at intervals of 2.0 through a MONITR operation. The integration method used is the BDF method (setup routine D02NVF) with a modified Newton method. The Jacobian is a full matrix, which is specified using the setup routine D02NSF; this Jacobian is to be calculated numerically.

9.1  Program Text

Program Text (d02nmfe.f90)

9.2  Program Data

Program Data (d02nmfe.d)

9.3  Program Results

Program Results (d02nmfe.r)

Produced by GNUPLOT 4.4 patchlevel 0 0 0.2 0.4 0.6 0.8 1 1.2 0.0001 0.001 0.01 0.1 1 10 0 5e-06 1e-05 1.5e-05 2e-05 2.5e-05 3e-05 3.5e-05 4e-05 Solution (a,c) Solution (b) x(logscale) Example Program Stiff Explicit ODE, Reverse Communication Stiff Robertson Problem using BDF with Newton Iterations a b c

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

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