d02njf is a general purpose routine for integrating the initial value problem for a stiff system of implicit ordinary differential equations coupled with algebraic equations, written in the form
It is designed specifically for the case where the resulting Jacobian is a sparse matrix (see the description of
jac).
Both interval and step oriented modes of operation are available and also modes designed to permit intermediate output within an interval oriented mode.
An outline of a typical calling program for
d02njf is given below. It calls
the sparse matrix linear algebra setup routine
d02nuf,
the Backward Differentiation Formula (BDF) integrator setup
routine
d02nvf, its diagnostic counterpart
d02nyf,
and
the sparse matrix linear algebra diagnostic routine
d02nxf.
! Declarations
External resid, jac, monitr
.
.
.
ifail = 0
Call d02nvf(...,ifail)
Call d02nuf(neq, neqmax, jceval, nwkjac, ia, nia, ja, nja, &
jacpvt, njcpvt, sens, u, eta, lblock, isplit, &
rwork, ifail)
ifail = -1
Call d02njf(neq, neqmax, t, tout, y, ydot, rwork, rtol, &
atol, itol, inform, resid, ysave, ny2dim, jac, &
wkjac, nwkjac, jacpvt, njcpvt, monitr, lderiv, &
itask, itrace, ifail)
If(ifail.eq.1 .or. ifail.ge.14) Stop
ifail = 0
Call d02nxf(...)
Call d02nyf(...)
.
.
.
Stop
End
The linear algebra setup routine
d02nuf and
one of
the integrator setup
routines,
d02mvf,
d02nvf or
d02nwf,
must be called prior to the call of
d02njf.
Either or both of the integrator diagnostic routine
d02nyf, or the
sparse matrix linear algebra diagnostic routine
d02nxf, may be called after the call to
d02njf.
There is also a routine,
d02nzf, designed to permit you to change step size on a continuation call to
d02njf without restarting the integration process.
If on entry
or
, explanatory error messages are output on the current error message unit (as defined by
x04aaf).
The accuracy of the numerical solution may be controlled by a careful choice of the arguments
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
with
small but positive).
Background information to multithreading can be found in the
Multithreading documentation.
d02njf is not thread safe and should not be called from a multithreaded user program. Please see
Section 1 in FL Interface Multithreading for more information on thread safety.
Please consult the
X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this routine. Please also consult the
Users' Note for your implementation for any additional implementation-specific information.
Since numerical stability and memory are often conflicting requirements when solving ordinary differential systems where the Jacobian matrix is sparse we provide a diagnostic routine,
d02nxf, whose aim is to inform you how much memory is required to solve the problem and to give you some indicators of numerical stability.
In general, you are advised to choose the BDF option (setup routine
d02nvf) but if efficiency is of great importance and especially if it is suspected that
has complex eigenvalues near the imaginary axis for some part of the integration, you should try the BLEND option (setup routine
d02nwf).
This example solves the well-known stiff Robertson problem written as a mixed differential/algebraic system in implicit form
exploiting the fact that, from the initial conditions
and
, we know that
for all time. We integrate over the range
with vector relative error control and scalar absolute error control (
) and using the BDF integrator (setup routine
d02nvf)
and a modified Newton method.
The Jacobian is evaluated, in turn, using the 'A' (Analytical) and 'F' (Full information) options.
We provide a monitor routine to terminate the integration when the value of the component a falls below
.