NAG C Library Function Document
nag_dae_ivp_dassl_gen (d02nec)
1
Purpose
nag_dae_ivp_dassl_gen (d02nec) is a function for integrating stiff systems of implicit ordinary differential equations coupled with algebraic equations.
2
Specification
#include <nag.h> |
#include <nagd02.h> |
void |
nag_dae_ivp_dassl_gen (Integer neq,
double *t,
double tout,
double y[],
double ydot[],
double rtol[],
double atol[],
Integer *itask,
void |
(*res)(Integer neq,
double t,
const double y[],
const double ydot[],
double r[],
Integer *ires,
Nag_Comm *comm),
|
|
void |
(*jac)(Integer neq,
double t,
const double y[],
const double ydot[],
double pd[],
double cj,
Nag_Comm *comm),
|
|
Integer icom[],
double com[],
Integer lcom,
Nag_Comm *comm,
NagError *fail) |
|
3
Description
nag_dae_ivp_dassl_gen (d02nec) is a general purpose function for integrating the initial value problem for a stiff system of implicit ordinary differential equations with coupled algebraic equations written in the form
nag_dae_ivp_dassl_gen (d02nec) uses the DASSL implementation of the Backward Differentiation Formulae (BDF) of orders one to five to solve a system of the above form for
(
y) and
(
ydot). Values for
y and
ydot at the initial time must be given as input. These values must be consistent, (i.e., if
t,
y,
ydot are the given initial values, they must satisfy
). The function solves the system from
to
.
An outline of a typical calling program for
nag_dae_ivp_dassl_gen (d02nec) is given below. It calls the DASSL implementation of the BDF integrator setup function
nag_dae_ivp_dassl_setup (d02mwc) and the banded matrix setup function
nag_dae_ivp_dassl_linalg (d02npc) (if required), and, if the integration needs to proceed, calls
nag_dae_ivp_dassl_cont (d02mcc) before continuing the integration.
/* declarations */
EXTERN res, jac
.
.
.
/* Initialize the integrator */
nag_dae_ivp_dassl_setup(...);
/* Is the Jacobian matrix banded? */
if (banded) {nag_dae_ivp_dassl_linalg(...);}
/* Set dt to the required temporal resolution */
/* Set tend to the final time */
/* Call the integrator for each temporal value */
itask = 0;
while (tout<tend && itask>-1) {
nag_dae_ivp_dassl_gen (...);
if (itask != 1)
tout = MIN(tout+dt,tend);
/* Print the solution */
}
.
.
.
4
References
None.
5
Arguments
- 1:
– IntegerInput
-
On entry: the number of differential-algebraic equations to be solved.
Constraint:
.
- 2:
– double *Input/Output
-
On initial entry: the initial value of the independent variable, .
On intermediate exit:
, the current value of the independent variable.
On final exit: the value of the independent variable at which the computed solution
is returned (usually at
tout).
- 3:
– doubleInput
-
On entry: the next value of at which a computed solution is desired.
On initial entry:
tout is used to determine the direction of integration. Integration is permitted in either direction (see also
itask).
Constraint:
.
- 4:
– doubleInput/Output
-
On initial entry: the vector of initial values of the dependent variables .
On intermediate exit:
the computed solution vector, , evaluated at .
On final exit: the computed solution vector, evaluated at (usually ).
- 5:
– doubleInput/Output
-
On initial entry:
ydot must contain approximations to the time derivatives
of the vector
evaluated at the initial value of the independent variable.
On exit: the time derivatives of the vector at the last integration point.
- 6:
– doubleInput/Output
-
Note: the dimension,
dim, of the array
rtol depends on the value of
vector_tol as set in
nag_dae_ivp_dassl_setup (d02mwc); it
must be at least
- when ;
- when .
On entry: the relative local error tolerance.
Constraint:
, for
where when and otherwise.
On exit:
rtol remains unchanged unless
nag_dae_ivp_dassl_gen (d02nec) exits with
NE_ODE_TOL in which case the values may have been increased to values estimated to be appropriate for continuing the integration.
- 7:
– doubleInput/Output
-
Note: the dimension,
dim, of the array
atol depends on the value of
vector_tol as set in
nag_dae_ivp_dassl_setup (d02mwc); it
must be at least
- when ;
- when .
On entry: the absolute local error tolerance.
Constraint:
, for
where when and otherwise.
On exit:
atol remains unchanged unless
nag_dae_ivp_dassl_gen (d02nec) exits with
NE_ODE_TOL in which case the values may have been increased to values estimated to be appropriate for continuing the integration.
- 8:
– Integer *Input/Output
-
On initial entry: need not be set.
On exit: the task performed by the integrator on successful completion or an indicator that a problem occurred during integration.
- The integration to tout was successfully completed () by stepping exactly to tout.
- The integration to tout was successfully completed () by stepping past tout. y and ydot are obtained by interpolation.
- Different negative values of itask returned correspond to different failure exits. fail should always be checked in such cases and the corrective action taken where appropriate.
itask must remain
unchanged between calls to
nag_dae_ivp_dassl_gen (d02nec).
- 9:
– function, supplied by the userExternal Function
-
res must evaluate the residual
The specification of
res is:
void |
res (Integer neq,
double t,
const double y[],
const double ydot[],
double r[],
Integer *ires,
Nag_Comm *comm)
|
|
- 1:
– IntegerInput
-
On entry: the number of differential-algebraic equations being solved.
- 2:
– doubleInput
-
On entry: , the current value of the independent variable.
- 3:
– const doubleInput
-
On entry: , for , the current solution component.
- 4:
– const doubleInput
-
On entry: the derivative of the solution at the current point .
- 5:
– doubleOutput
-
On exit:
must contain the
th component of
, for
where
- 6:
– Integer *Input/Output
-
On entry: is always equal to zero.
On exit:
ires should normally be left unchanged. However, if an illegal value of
y is encountered,
ires should be set to
;
nag_dae_ivp_dassl_gen (d02nec) will then attempt to resolve the problem so that illegal values of
y are not encountered.
ires should be set to
if you wish to return control to the calling function; this will cause
nag_dae_ivp_dassl_gen (d02nec) to exit with
NE_RES_FLAG.
- 7:
– Nag_Comm *
Pointer to structure of type Nag_Comm; the following members are relevant to
res.
- user – double *
- iuser – Integer *
- p – Pointer
The type Pointer will be
void *. Before calling
nag_dae_ivp_dassl_gen (d02nec) you may allocate memory and initialize these pointers with various quantities for use by
res when called from
nag_dae_ivp_dassl_gen (d02nec) (see
Section 3.3.1.1 in How to Use the NAG Library and its Documentation).
Note: res should not return floating-point NaN (Not a Number) or infinity values, since these are not handled by
nag_dae_ivp_dassl_gen (d02nec). If your code inadvertently
does return any NaNs or infinities,
nag_dae_ivp_dassl_gen (d02nec) is likely to produce unexpected results.
- 10:
– function, supplied by the userExternal Function
-
Evaluates the matrix of partial derivatives,
, where
If this option is not required, the actual argument for
jac may be specified as NULLFN. You must indicate to the integrator whether this option is to be used by setting the argument
jceval appropriately in a call to the setup function
nag_dae_ivp_dassl_setup (d02mwc).
The specification of
jac is:
void |
jac (Integer neq,
double t,
const double y[],
const double ydot[],
double pd[],
double cj,
Nag_Comm *comm)
|
|
- 1:
– IntegerInput
-
On entry: the number of differential-algebraic equations being solved.
- 2:
– doubleInput
-
On entry: , the current value of the independent variable.
- 3:
– const doubleInput
-
On entry: , for , the current solution component.
- 4:
– const doubleInput
-
On entry: the derivative of the solution at the current point .
- 5:
– doubleInput/Output
-
Note: the dimension of the array
pd will be
when the Jacobian is full and will be
when the Jacobian is banded (that is, a prior call to
nag_dae_ivp_dassl_linalg (d02npc) has been made) .
On entry:
pd is preset to zero before the call to
jac.
On exit: if the Jacobian is full then
, for
and
; if the Jacobian is banded then
, for
; (see also in
nag_dgbtrf (f07bdc)).
- 6:
– doubleInput
-
On entry:
cj is a scalar constant which will be defined in
nag_dae_ivp_dassl_gen (d02nec).
- 7:
– Nag_Comm *
Pointer to structure of type Nag_Comm; the following members are relevant to
jac.
- user – double *
- iuser – Integer *
- p – Pointer
The type Pointer will be
void *. Before calling
nag_dae_ivp_dassl_gen (d02nec) you may allocate memory and initialize these pointers with various quantities for use by
jac when called from
nag_dae_ivp_dassl_gen (d02nec) (see
Section 3.3.1.1 in How to Use the NAG Library and its Documentation).
Note: jac should not return floating-point NaN (Not a Number) or infinity values, since these are not handled by
nag_dae_ivp_dassl_gen (d02nec). If your code inadvertently
does return any NaNs or infinities,
nag_dae_ivp_dassl_gen (d02nec) is likely to produce unexpected results.
- 11:
– IntegerCommunication Array
-
icom contains information which is usually of no interest, but is necessary for subsequent calls. However you may find the following useful:
- The order of the method to be attempted on the next step.
- The order of the method used on the last step.
- The number of steps taken so far.
- The number of calls to res so far.
- The number of evaluations of the matrix of partial derivatives needed so far.
- The total number of error test failures so far.
- The total number of convergence test failures so far.
- 12:
– doubleCommunication Array
-
com contains information which is usually of no interest, but is necessary for subsequent calls. However you may find the following useful:
- The step size to be attempted on the next step.
- The current value of the independent variable, i.e., the farthest point integration has reached. This will be different from t only when interpolation has been performed ().
- 13:
– IntegerInput
-
On entry: the dimension of the array
com.
Constraint:
where
is the maximum order that can be used by the integration method (see
maxord in
nag_dae_ivp_dassl_setup (d02mwc));
when the Jacobian is full and
when the Jacobian is banded; and,
when the Jacobian is to be evaluated numerically and
otherwise.
- 14:
– Nag_Comm *
-
The NAG communication argument (see
Section 3.3.1.1 in How to Use the NAG Library and its Documentation).
- 15:
– NagError *Input/Output
-
The NAG error argument (see
Section 3.7 in How to Use the NAG Library and its Documentation).
6
Error Indicators and Warnings
- NE_ALLOC_FAIL
-
Dynamic memory allocation failed.
See
Section 2.3.1.2 in How to Use the NAG Library and its Documentation for further information.
- NE_ARRAY_INPUT
-
All elements of
rtol and
atol are zero.
Some element of
atol is less than zero.
Some element of
rtol is less than zero.
- NE_BAD_PARAM
-
On entry, argument had an illegal value.
- NE_CONV_CONT
-
The corrector could not converge and the error test failed repeatedly. . Stepsize .
The corrector repeatedly failed to converge with . . Stepsize .
- NE_CONV_JACOBG
-
The iteration matrix is singular. . Stepsize .
- NE_CONV_ROUNDOFF
-
The error test failed repeatedly with . . Stepsize .
- NE_INITIALIZATION
-
Either the initialization function has not been called prior to the first call of this function or a communication array has become corrupted.
- NE_INT
-
A previous call to this function returned with and no appropriate action was taken.
- NE_INT_2
-
com array is of insufficient length; length required
; actual length
.
- NE_INT_ARG_LT
-
On entry, .
Constraint: .
- NE_INTERNAL_ERROR
-
An internal error has occurred in this function. Check the function call and any array sizes. If the call is correct then please contact
NAG for assistance.
See
Section 2.7.6 in How to Use the NAG Library and its Documentation for further information.
- NE_MAX_STEP
-
Maximum number of steps taken on this call before reaching
tout:
, maximum number of steps
.
- NE_NO_LICENCE
-
Your licence key may have expired or may not have been installed correctly.
See
Section 2.7.5 in How to Use the NAG Library and its Documentation for further information.
- NE_ODE_TOL
-
A solution component has become zero when a purely relative tolerance (zero absolute tolerance) was selected for that component. , for component .
Too much accuracy requested for precision of machine.
rtol and
atol were increased by scale factor
. Try running again with these scaled tolerances.
,
.
- NE_REAL_2
-
tout is behind
t in the direction of
:
,
.
tout is too close to
t to start integration:
:
.
- NE_REAL_ARG_EQ
-
On entry, .
Constraint: .
- NE_RES_FLAG
-
ires was set to
during a call to
res and could not be resolved.
. Stepsize
.
ires was set to
during a call to
res.
. Stepsize
.
Repeated occurrences of input constraint violations have been detected. This could result in a potential infinite loop: . Current violation corresponds to exit with .
- NE_SINGULAR_POINT
-
The initial
ydot could not be computed.
. Stepsize
.
7
Accuracy
The accuracy of the numerical solution may be controlled by a careful choice of the arguments
rtol and
atol. 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).
8
Parallelism and Performance
nag_dae_ivp_dassl_gen (d02nec) is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
nag_dae_ivp_dassl_gen (d02nec) makes calls to BLAS and/or LAPACK routines, which may be threaded within the vendor library used by this implementation. Consult the documentation for the vendor library for further information.
Please consult the
x06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this function. Please also consult the
Users' Note for your implementation for any additional implementation-specific information.
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. For banded systems the cost is proportional to , while for full systems the cost is proportional to
. Note however that for moderately sized problems which are only mildly nonlinear the cost may be dominated by factors proportional to and respectively.
10
Example
This example solves the well-known stiff Robertson problem written in implicit form
with initial conditions
and
over the range
the BDF method (setup function
nag_dae_ivp_dassl_setup (d02mwc) and
nag_dae_ivp_dassl_linalg (d02npc)).
10.1
Program Text
Program Text (d02nece.c)
10.2
Program Data
None.
10.3
Program Results
Program Results (d02nece.r)