naginterfaces.library.ode.ivp_​stiff_​exp_​sparjac

naginterfaces.library.ode.ivp_stiff_exp_sparjac(t, tout, y, comm, rtol, atol, itol, fcn, itask, itrace, jac=None, monitr=None, data=None, io_manager=None)[source]

ivp_stiff_exp_sparjac is a direct communication function for integrating stiff systems of explicit ordinary differential equations when the Jacobian is a sparse matrix.

For full information please refer to the NAG Library document for d02nd

https://www.nag.com/numeric/nl/nagdoc_29.3/flhtml/d02/d02ndf.html

Parameters
tfloat

, the value of the independent variable. The input value of is used only on the first call as the initial point of the integration.

toutfloat

The next value of at which a computed solution is desired. For the initial , the input value of is used to determine the direction of integration. Integration is permitted in either direction (see also ).

yfloat, array-like, shape

The values of the dependent variables (solution). On the first call the first elements of must contain the vector of initial values.

commdict, communication object, modified in place

Communication structure.

This argument must have been initialized by prior calls to ivp_stiff_sparjac_setup() and one of ivp_stiff_bdf() or ivp_stiff_blend().

rtolfloat, array-like, shape

Note: the required length for this argument is determined as follows: if : ; otherwise: .

The relative local error tolerance.

atolfloat, array-like, shape

Note: the required length for this argument is determined as follows: if : ; otherwise: .

The absolute local error tolerance.

itolint

A value to indicate the form of the local error test. indicates to ivp_stiff_exp_sparjac whether to interpret either or both of or as a vector or a scalar. The error test to be satisfied is , where is defined as follows:

1

scalar

scalar

2

scalar

vector

3

vector

scalar

4

vector

vector

is an estimate of the local error in , computed internally, and the choice of norm to be used is defined by a previous call to an integrator setup function.

fcncallable (f, ires) = fcn(t, y, ires, data=None)

must evaluate the derivative vector for the explicit ordinary differential equation system, defined by .

Parameters
tfloat

, the current value of the independent variable.

yfloat, ndarray, shape

The value of , for .

iresint

.

dataarbitrary, optional, modifiable in place

User-communication data for callback functions.

Returns
ffloat, array-like, shape

The value , given by , for .

iresint

You may set as follows to indicate certain conditions in to the integrator:

Indicates a normal return from , that is has not been altered by you and integration continues.

Indicates to the integrator that control should be passed back immediately to the calling (sub)program with the error indicator set to = 11.

Indicates to the integrator that an error condition has occurred in the solution vector, its time derivative or in the value of . The integrator will use a smaller time step to try to avoid this condition. If this is not possible the integrator returns to the calling (sub)program with the error indicator set to = 7.

Indicates to the integrator to stop its current operation and to enter immediately with argument .

itaskint

The task to be performed by the integrator.

Normal computation of output values of at (by overshooting and interpolating).

Take one step only and return.

Stop at the first internal integration point at or beyond and return.

Normal computation of output values of at but without overshooting (e.g., see ivp_stiff_dassl()). must be specified as an option in one of the integrator setup functions before the first call to the integrator, or specified in the optional input function before a continuation call. may be equal to or beyond , but not before it, in the direction of integration.

Take one step only and return, without passing (e.g., see ivp_stiff_dassl()). must be specified as under .

itraceint

The level of output that is printed by the integrator. may take the value , , , or .

is assumed and similarly if , is assumed.

No output is generated.

Only warning messages are printed on the current error message unit (see FileObjManager).

Warning messages are printed as above, and on the file object associated with the advisory I/O unit (see FileObjManager) 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 .

jacNone or callable pdj = jac(t, y, h, d, j, pdj, data=None), optional

Note: if this argument is None then a NAG-supplied facility will be used.

must evaluate the Jacobian of the system.

If this option is not required, the actual argument for must be None. You must indicate to the integrator whether this option is to be used by setting the argument appropriately in a call to the sparse linear algebra setup function ivp_stiff_sparjac_setup().

First we must define the system of nonlinear equations which is solved internally by the integrator.

The time derivative, , generated internally, has the form

where is the current step size and is an argument that depends on the integration method in use.

The vector is the current solution and the vector depends on information from previous time steps.

This means that .

The system of nonlinear equations that is solved has the form

but it is solved in the form

where is the function defined by

It is the Jacobian matrix that you must supply in as follows:

Parameters
tfloat

, the current value of the independent variable.

yfloat, ndarray, shape

, for , the current solution component.

hfloat

The current step size.

dfloat

The argument which depends on the integration method.

jint

The column of the Jacobian that must return in the array .

pdjfloat, ndarray, shape

Is set to zero.

dataarbitrary, optional, modifiable in place

User-communication data for callback functions.

Returns
pdjfloat, array-like, shape

should be set to the th element of the Jacobian, where is given by . Only nonzero elements of this array need be set, since it is preset to zero before the call to .

monitrNone or callable (hnext, y, imon, inln, hmin, hmax) = monitr(t, hlast, hnext, y, ydot, comm, r, acor, imon, hmin, hmax, nqu, data=None), optional

Note: if this argument is None then a NAG-supplied facility will be used.

performs tasks requested by you.

If this option is not required, the actual argument for must be None.

Parameters
tfloat

The current value of the independent variable.

hlastfloat

The last step size successfully used by the integrator.

hnextfloat

The step size that the integrator proposes to take on the next step.

yfloat, ndarray, shape

, the values of the dependent variables evaluated at .

ydotfloat, ndarray, shape

The time derivatives of the vector .

commdict, communication object, modifiable in place

Communication structure.

This argument may be passed as argument in a call to ivp_stiff_nat_interp() or in a call to ivp_stiff_c1_interp() to enable you to carry out interpolation using either of those functions.

rfloat, ndarray, shape

If and , the first elements contain the residual vector, .

acorfloat, ndarray, shape

With , contains the weight used for the th equation when the norm is evaluated, and contains the estimated local error for the th equation. The scaled local error at the end of a timestep may be obtained by calling ivp_stiff_errest().

imonint

A flag indicating under what circumstances was called:

Entry from the integrator after (set in ) caused an early termination (this facility could be used to locate discontinuities).

The current step failed repeatedly.

Entry after a call to the internal nonlinear equation solver (see ).

The current step was successful.

hminfloat

The minimum step size to be taken on the next step.

hmaxfloat

The maximum step size to be taken on the next step.

nquint

The order of the integrator used on the last step. This is supplied to enable you to carry out interpolation using either of the functions ivp_stiff_nat_interp() or ivp_stiff_c1_interp().

dataarbitrary, optional, modifiable in place

User-communication data for callback functions.

Returns
hnextfloat

The next step size to be used. If this is different from the input value, must be set to .

yfloat, array-like, shape

These values must not be changed unless is set to .

imonint

May be reset to determine subsequent action in ivp_stiff_exp_sparjac.

Integration is to be halted. A return will be made from the integrator to the calling (sub)program with = 12.

Allow the integrator to continue with its own internal strategy. The integrator will try up to three restarts unless is set on exit.

Return to the internal nonlinear equation solver, where the action taken is determined by the value of (see ).

Normal exit to the integrator to continue integration.

Restart the integration at the current time point. The integrator will restart from order when this option is used. The solution , provided by , will be used for the initial conditions.

Try to continue with the same step size and order as was to be used before the call to . and may be altered if desired.

Continue the integration but using a new value of and possibly new values of and .

inlnint

The action to be taken by the internal nonlinear equation solver when is exited with . By setting and returning to the integrator, the residual vector is evaluated and placed in the array , and then is called again. At present this is the only option available: must not be set to any other value.

hminfloat

The minimum step size to be used. If this is different from the input value, must be set to or .

hmaxfloat

The maximum step size to be used. If this is different from the input value, must be set to or . If is set to zero, no limit is assumed.

dataarbitrary, optional

User-communication data for callback functions.

io_managerFileObjManager, optional

Manager for I/O in this routine.

Returns
tfloat

The value at which the computed solution is returned (usually at ).

yfloat, ndarray, shape

The computed solution vector, evaluated at (usually ).

ydotfloat, ndarray, shape

The time derivatives of the vector at the last integration point.

Raises
NagValueError
(errno )

set .

Constraint: .

(errno )

Failure during internal time interpolation. and the current time are too close.

and and the current time is .

(errno )

On entry, or and is before the current time in the direction of integration.

, and the current time is .

(errno )

and is more than an integration step behind the current time.

, current time minus step size: .

(errno )

The initial stepsize, , is too small.

(errno )

On entry, or and is before in the direction of integration.

, and .

(errno )

On entry, .

Constraint: .

(errno )

On entry, .

Constraint: .

(errno )

Either the value of is not the same as the value supplied to the setup function or a communication array has become corrupted.

, (setup) .

(errno )

On entry, an illegal (negative) minimum stepsize was provided in a prior call to a setup function. .

(errno )

On entry, is less than with respect to the direction of integration given by the sign of in a prior call to a setup function.

, and .

(errno )

On entry, an illegal (negative) maximum number of steps was provided in a prior call to a setup function. .

(errno )

On entry, .

Constraint: .

(errno )

On entry, and .

Constraint: .

(errno )

On entry, .

Constraint: .

(errno )

Either the function was entered on a continuation call without a prior call of this function, or a communication array has become corrupted.

(errno )

On entry, is too close to to start integration.

and .

(errno )

On entry, .

Constraint: .

(errno )

Either the integrator setup function has not been called prior to the first call of this function, or a communication array has become corrupted.

(errno )

On entry, an illegal (negative) maximum stepsize was provided in a prior call to a setup function. .

(errno )

Either the linear algebra setup function has not been called prior to the first call of this function, or a communication array has become corrupted.

(errno )

set .

Constraint: .

(errno )

appears to have overwritten the solution vector.

Further integration will not be attempted.

(errno )

At time the maximum number of allowed steps on this call was taken before reaching the next output point .

Maximum number of steps .

(errno )

Too much accuracy requested for precision of the machine at time .

The tolerances should be checked; the requested accuracy should be reduced by a factor of at least .

(errno )

The derivative evaluation procedure set the error flag repeatedly despite attempts by the integrator to avoid this.

(errno )

A singular Jacobian has been encountered. You should check the problem formulation and Jacobian calculation.

(errno )

Workspace error occurred when trying to form the Jacobian matrix in calculating the initial values of the solution and its time derivative.

(errno )

Not enough integer store provided for sparse matrix solver.

Units of store needed: . Amount provided: .

(errno )

Larger integer workspace required.

Provided: ; required: .

(errno )

Not enough real store provided for sparse matrix solver.

Units of store needed: . Amount provided: .

(errno )

On entry, too much accuracy requested for precision of the machine at the start of problem. The tolerances should be checked; the requested accuracy should be reduced by a factor of at least .

(errno )

The linear algebra setup function for sparse Jacobian was not called first.

Warns
NagAlgorithmicWarning
(errno )

There were repeated error-test failures on an attempted step, before completing the requested task, but the integration was successful as far as . The problem may have a singularity, or the local error requirements may be inappropriate.

(errno )

There were repeated convergence-test failures on an attempted step, before completing the requested task, but the integration was successful as far as . This may be caused by an inaccurate Jacobian matrix or one which is incorrectly computed.

(errno )

At time , error weight became zero. Check the values of , and supplied.

(errno )

Weight number used in the local error test is too small. Check the values of and .

and may both be zero.

Weight .

(errno )

set , which signals that the integration should terminate. at time .

(errno )

A return was forced by setting , but the integration was successful as far as .

(errno )

The requested task has been completed, but it is estimated that a small change in and is unlikely to produce any change in the computed solution. (This ONLY applies when you are NOT operating in one step mode; that is, when or .)

Notes

No equivalent traditional C interface for this routine exists in the NAG Library.

ivp_stiff_exp_sparjac is a general purpose function for integrating the initial value problem for a stiff system of explicit ordinary differential equations,

It is designed specifically for the case where the Jacobian is a sparse matrix.

Both interval and step oriented modes of operation are available and also modes designed to permit intermediate output within an interval oriented mode.

A typical calling program for ivp_stiff_exp_sparjac would involve calling the sparse matrix linear algebra setup function ivp_stiff_sparjac_setup(), the Backward Differentiation Formula (BDF) integrator setup function ivp_stiff_bdf(), its diagnostic counterpart ivp_stiff_integ_diag(), and the sparse linear algebra diagnostic function ivp_stiff_sparjac_diag() as well as the call to ivp_stiff_exp_sparjac. The linear algebra setup function ivp_stiff_sparjac_setup() and one of the integrator setup functions, ivp_stiff_bdf() or ivp_stiff_blend(), must be called prior to the call of ivp_stiff_exp_sparjac. Either or both of the integrator diagnostic function ivp_stiff_integ_diag(), or the sparse matrix linear algebra diagnostic function ivp_stiff_sparjac_diag(), may be called after the call to ivp_stiff_exp_sparjac. There is also a function, ivp_stiff_contin(), designed to permit you to change step size on a continuation call to ivp_stiff_exp_sparjac without restarting the integration process.