NAG Library Routine Document

d02nvf  (ivp_stiff_bdf)

 Contents

    1  Purpose
    7  Accuracy
    10  Example

1
Purpose

d02nvf is a setup routine which must be called prior to linear algebra setup routines and integrators from the SPRINT suite of routines, if Backward Differentiation Formulae (BDF) are to be used.

2
Specification

Fortran Interface
Subroutine d02nvf ( neqmax, sdysav, maxord, method, petzld, con, tcrit, hmin, hmax, h0, maxstp, mxhnil, norm, rwork, ifail)
Integer, Intent (In):: neqmax, sdysav, maxord, maxstp, mxhnil
Integer, Intent (Inout):: ifail
Real (Kind=nag_wp), Intent (In):: tcrit, hmin, hmax, h0
Real (Kind=nag_wp), Intent (Inout):: con(6), rwork(50+4*neqmax)
Logical, Intent (In):: petzld
Character (1), Intent (In):: method, norm
C Header Interface
#include nagmk26.h
void  d02nvf_ ( const Integer *neqmax, const Integer *sdysav, const Integer *maxord, const char *method, const logical *petzld, double con[], const double *tcrit, const double *hmin, const double *hmax, const double *h0, const Integer *maxstp, const Integer *mxhnil, const char *norm, double rwork[], Integer *ifail, const Charlen length_method, const Charlen length_norm)

3
Description

An integrator setup routine must be called before the call to any linear algebra setup routine or integrator from the SPRINT suite of routines in this sub-chapter. This setup routine, d02nvf, makes the choice of the BDF integrator and permits you to define options appropriate to this choice. Alternative choices of integrator from this suite are the BLEND method and the DASSL implementation of the BDF method which can be chosen by initial calls to d02nwf or d02mvf respectively.

4
References

See the D02M–N Sub-chapter Introduction.

5
Arguments

1:     neqmax – IntegerInput
On entry: a bound on the maximum number of differential equations to be solved.
Constraint: neqmax1.
2:     sdysav – IntegerInput
On entry: the second dimension of the array ysav that will be supplied to the integrator, as declared in the (sub)program from which the integrator is called.
Constraint: sdysavmaxord+1.
3:     maxord – IntegerInput
On entry: the maximum order to be used for the BDF method.
Constraint: 0<maxord5.
4:     method – Character(1)Input
On entry: specifies the method to be used to solve the system of nonlinear equations arising on each step of the BDF code.
method='N'
A modified Newton iteration is used.
method='F'
Functional iteration is used.
method='D'
A modified Newton iteration is used.
Note:  a linear algebra setup routine must be called even when using functional iteration, since if difficulty is encountered a switch is made to a modified Newton method.
Only the first character of the actual argument method is passed to d02nvf; hence it is permissible for the actual argument to be more descriptive e.g., ‘Newton’, ‘Functional iteration’ or ‘Default’ in a call to d02nvf.
Constraint: method='N', 'F' or 'D'.
5:     petzld – LogicalInput
On entry: specifies whether the Petzold local error test is to be used. If petzld is set to .TRUE. on entry, the Petzold local error test is used, otherwise a conventional test is used. The Petzold test results in extra overhead cost but is more stable and reliable for differential/algebraic equations.
6:     con6 – Real (Kind=nag_wp) arrayInput/Output
On entry: values to be used to control step size choice during integration. If any coni=0.0 on entry, it is replaced by its default value described below. In most cases this is the recommended setting.
con1, con2, and con3 are factors used to bound step size changes. If the current step size h fails, the modulus of the next step size is bounded by con1×h. The default value of con1 is 2.0. Note that the new step size may be used with a method of different order to the failed step. If the initial step size is h, the modulus of the step size on the second step is bounded by con3×h. At any other stage in the integration, if the current step size is h, the modulus of the next step size is bounded by con2×h. The default values are 10.0 for con2 and 1000.0 for con3.
con4, con5 and con6 are ‘tuning’ constants used in determining the next order and step size. They are used to scale the error estimates used in determining whether to keep the same order of the BDF method, decrease the order or increase the order respectively. The larger the value of coni, for i=4,5,6, the less likely the choice of the corresponding order. The default values are: con4=1.2, con5=1.3, con6=1.4.
Constraints:
These constraints must be satisfied after any zero values have been replaced by their default values.
  • 0.0<con1con2con3;
  • coni1.0, for i=2,3,,6.
On exit: the values actually used by d02nvf.
7:     tcrit – Real (Kind=nag_wp)Input
On entry: a point beyond which integration must not be attempted. The use of tcrit is described under the argument itask in the specification for the integrator (e.g., see d02nbf). A value, 0.0 say, must be specified even if itask subsequently specifies that tcrit will not be used.
8:     hmin – Real (Kind=nag_wp)Input
On entry: the minimum absolute step size to be allowed. Set hmin=0.0 if this option is not required.
9:     hmax – Real (Kind=nag_wp)Input
On entry: the maximum absolute step size to be allowed. Set hmax=0.0 if this option is not required.
10:   h0 – Real (Kind=nag_wp)Input
On entry: the step size to be attempted on the first step. Set h0=0.0 if the initial step size is calculated internally.
11:   maxstp – IntegerInput
On entry: the maximum number of steps to be attempted during one call to the integrator after which it will return with ifail=2. Set maxstp=0 if no limit is to be imposed.
12:   mxhnil – IntegerInput
On entry: the maximum number of warnings printed (if itrace0) per problem when t+h=t on a step (h= current step size). If mxhnil0, a default value of 10 is assumed.
13:   norm – Character(1)Input
On entry: indicates the type of norm to be used.
norm='M'
Maximum norm.
norm='A'
Averaged L2 norm.
norm='D'
Is the same as norm='A'.
If vnorm denotes the norm of the vector v of length n, for the averaged L2 norm
vnorm=1ni=1nvi/wi2,  
while for the maximum norm
vnorm=maxivi/wi.  
If you wish to weight the maximum norm or the L2 norm, rtol and atol should be scaled appropriately on input to the integrator (see under itol in the specification of the integrator for the formulation of the weight vector wi from rtol and atol, e.g., see d02nbf).
Only the first character to the actual argument norm is passed to d02nvf; hence it is permissible for the actual argument to be more descriptive e.g., ‘Maximum’, ‘Average L2’ or ‘Default’ in a call to d02nvf.
Constraint: norm='M', 'A' or 'D'.
14:   rwork50+4×neqmax – Real (Kind=nag_wp) arrayCommunication Array
This must be the same workspace array as the array rwork supplied to the integrator. It is used to pass information from the setup routine to the integrator and therefore the contents of this array must not be changed before calling the integrator.
15:   ifail – IntegerInput/Output
On entry: ifail must be set to 0, -1​ or ​1. If you are unfamiliar with this argument you should refer to Section 3.4 in How to Use the NAG Library and its Documentation 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 argument, 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 illegal input was detected.
ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 3.9 in How to Use the NAG Library and its Documentation for further information.
ifail=-399
Your licence key may have expired or may not have been installed correctly.
See Section 3.8 in How to Use the NAG Library and its Documentation for further information.
ifail=-999
Dynamic memory allocation failed.
See Section 3.7 in How to Use the NAG Library and its Documentation for further information.

7
Accuracy

Not applicable.

8
Parallelism and Performance

d02nvf is not threaded in any implementation.

9
Further Comments

None.

10
Example

See Section 10 in d02nbf.
© The Numerical Algorithms Group Ltd, Oxford, UK. 2017