PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_ode_ivp_adams_roots (d02qf)
Purpose
nag_ode_ivp_adams_roots (d02qf) is a function for integrating a non-stiff system of first-order ordinary differential equations using a variable-order variable-step Adams' method. A root-finding facility is provided.
Syntax
[
t,
y,
root,
rwork,
iwork,
ifail] = d02qf(
fcn,
t,
y,
tout,
g,
neqg,
rwork,
iwork, 'neqf',
neqf)
[
t,
y,
root,
rwork,
iwork,
ifail] = nag_ode_ivp_adams_roots(
fcn,
t,
y,
tout,
g,
neqg,
rwork,
iwork, 'neqf',
neqf)
Note: the interface to this routine has changed since earlier releases of the toolbox:
At Mark 22: |
lrwork and liwork were removed from the interface |
At Mark 22: |
lrwork and liwork were removed from the interface |
Description
Given the initial values
nag_ode_ivp_adams_roots (d02qf) integrates a non-stiff system of first-order differential equations of the type
from
to
using a variable-order variable-step Adams' method. The system is defined by
fcn, which evaluates
in terms of
and
, and
are supplied at
. The function is capable of finding roots (values of
) of prescribed event functions of the form
Each
is considered to be independent of the others so that roots are sought of each
individually. The root reported by the function will be the first root encountered by any
. Two techniques for determining the presence of a root in an integration step are available: the sophisticated method described in
Watts (1985) and a simplified method whereby sign changes in each
are looked for at the ends of each integration step. The event functions are defined by
g supplied by you which evaluates
in terms of
and
. In one-step mode the function returns an approximation to the solution at each integration point. In interval mode this value is returned at the end of the integration range. If a root is detected this approximation is given at the root. You select the mode of operation, the error control, the root-finding technique and various optional inputs by a prior call to the setup function
nag_ode_ivp_adams_setup (d02qw).
For a description of the practical implementation of an Adams' formula see
Shampine and Gordon (1975) and
Shampine and Watts (1979).
References
Shampine L F and Gordon M K (1975) Computer Solution of Ordinary Differential Equations – The Initial Value Problem W H Freeman & Co., San Francisco
Shampine L F and Watts H A (1979) DEPAC – design of a user oriented package of ODE solvers Report SAND79-2374 Sandia National Laboratory
Watts H A (1985) RDEAM – An Adams ODE code with root solving capability Report SAND85-1595 Sandia National Laboratory
Parameters
Compulsory Input Parameters
- 1:
– function handle or string containing name of m-file
-
fcn must evaluate the functions
(that is the first derivatives
) for given values of its arguments
,
.
[f] = fcn(neqf, x, y)
Input Parameters
- 1:
– int64int32nag_int scalar
-
The number of differential equations.
- 2:
– double scalar
-
The current value of the argument .
- 3:
– double array
-
, for , the current value of the argument.
Output Parameters
- 1:
– double array
-
The value of
, for .
- 2:
– double scalar
-
After a call to
nag_ode_ivp_adams_setup (d02qw) with
(i.e., an initial entry),
t must be set to the initial value of the independent variable
.
- 3:
– double array
-
The initial values of the solution .
- 4:
– double scalar
-
The next value of
at which a computed solution is required. For the initial
t, the input value of
tout is used to determine the direction of integration. Integration is permitted in either direction. If
on exit,
tout must be reset beyond
t in the direction of integration, before any continuation call.
- 5:
– function handle or string containing name of m-file
-
g must evaluate a given component of
at a specified point.
If root-finding is not required the actual argument for
g must be the string
nag_ode_ivp_adams_roots_dummy_g (d02qfz). (
nag_ode_ivp_adams_roots_dummy_g (d02qfz) is included in the NAG Toolbox.)
[result] = g(neqf, x, y, yp, k)
Input Parameters
- 1:
– int64int32nag_int scalar
-
The number of differential equations being solved.
- 2:
– double scalar
-
The current value of the independent variable.
- 3:
– double array
-
The current values of the dependent variables.
- 4:
– double array
-
The current values of the derivatives of the dependent variables.
- 5:
– int64int32nag_int scalar
-
The component of which must be evaluated.
Output Parameters
- 1:
– double scalar
-
The value of the component of at the specified point.
- 6:
– int64int32nag_int scalar
-
The number of event functions which you are defining for root-finding. If root-finding is not required the value for
neqg must be
. Otherwise it must be the same argument
neqg used in the prior call to
nag_ode_ivp_adams_setup (d02qw).
- 7:
– double array
-
This
must be the same argument
rwork as supplied to
nag_ode_ivp_adams_setup (d02qw). It is used to pass information from
nag_ode_ivp_adams_setup (d02qw) to
nag_ode_ivp_adams_roots (d02qf), and from
nag_ode_ivp_adams_roots (d02qf) to
nag_ode_ivp_adams_diag (d02qx),
nag_ode_ivp_adams_rootdiag (d02qy) and
nag_ode_ivp_adams_interp (d02qz). Therefore the contents of this array
must not be changed before the call to
nag_ode_ivp_adams_roots (d02qf) or calling any of the functions
nag_ode_ivp_adams_diag (d02qx),
nag_ode_ivp_adams_rootdiag (d02qy) and
nag_ode_ivp_adams_interp (d02qz).
- 8:
– int64int32nag_int array
-
This
must be the same argument
iwork as supplied to
nag_ode_ivp_adams_setup (d02qw). It is used to pass information from
nag_ode_ivp_adams_setup (d02qw) to
nag_ode_ivp_adams_roots (d02qf), and from
nag_ode_ivp_adams_roots (d02qf) to
nag_ode_ivp_adams_diag (d02qx),
nag_ode_ivp_adams_rootdiag (d02qy) and
nag_ode_ivp_adams_interp (d02qz). Therefore the contents of this array
must not be changed before the call to
nag_ode_ivp_adams_roots (d02qf) or calling any of the functions
nag_ode_ivp_adams_diag (d02qx),
nag_ode_ivp_adams_rootdiag (d02qy) and
nag_ode_ivp_adams_interp (d02qz).
Optional Input Parameters
- 1:
– int64int32nag_int scalar
-
Default:
the dimension of the array
y.
The number of first-order ordinary differential equations to be solved by
nag_ode_ivp_adams_roots (d02qf). It must contain the same value as the argument
neqf used in a prior call to
nag_ode_ivp_adams_setup (d02qw).
Constraint:
.
Output Parameters
- 1:
– double scalar
-
The value of
at which
has been computed. This may be an intermediate output point, a root,
tout or a point at which an error has occurred. If the integration is to be continued, possibly with a new value for
tout,
t must not be changed.
- 2:
– double array
-
The computed values of the solution at the exit value of
t. If the integration is to be continued, possibly with a new value for
tout, these values must not be changed.
- 3:
– logical scalar
-
If root-finding was required (
on entry), then
root specifies whether or not the output value of the argument
t is a root of one of the event functions. If
, then no root was detected, whereas
indicates a root and you should make a call to
nag_ode_ivp_adams_rootdiag (d02qy) for further information.
If root-finding was not required ( on entry), then on exit .
- 4:
– double array
-
- 5:
– int64int32nag_int array
-
- 6:
– int64int32nag_int scalar
unless the function detects an error (see
Error Indicators and Warnings).
Error Indicators and Warnings
Errors or warnings detected by the function:
Cases prefixed with W are classified as warnings and
do not generate an error of type NAG:error_n. See nag_issue_warnings.
-
-
On entry, the integrator detected an illegal input, or
nag_ode_ivp_adams_setup (d02qw) has not been called before the call to the integrator.
This error may be caused by overwriting elements of
rwork and
iwork.
- W
-
The maximum number of steps has been attempted (at a cost of about
calls to
fcn per step). (See argument
maxstp in
nag_ode_ivp_adams_setup (d02qw).) If integration is to be continued then you need only reset
ifail and call the function again and a further
maxstp steps will be attempted.
-
-
The step size needed to satisfy the error requirements is too small for the
machine precision being used. (See argument
tolfac in
nag_ode_ivp_adams_diag (d02qx).)
- W
-
Some error weight
became zero during the integration (see arguments
vectol,
rtol and
atol in
nag_ode_ivp_adams_setup (d02qw).) Pure relative error control (
) was requested on a variable (the
th) which has now become zero. (See argument
badcmp in
nag_ode_ivp_adams_diag (d02qx).) The integration was successful as far as
t.
- W
-
The problem appears to be stiff (see the
D02 Chapter Introduction for a discussion of the term ‘stiff’). Although it is inefficient to use this integrator to solve stiff problems, integration may be continued by resetting
ifail and calling the function again.
- W
-
A change in sign of an event function has been detected but the root-finding process appears to have converged to a singular point
t rather than a root. Integration may be continued by resetting
ifail and calling the function again.
-
-
The code has detected two successive error exits at the current value of
t and cannot proceed. Check all input variables.
-
An unexpected error has been triggered by this routine. Please
contact
NAG.
-
Your licence key may have expired or may not have been installed correctly.
-
Dynamic memory allocation failed.
Accuracy
The accuracy of integration is determined by the arguments
vectol,
rtol and
atol in a prior call to
nag_ode_ivp_adams_setup (d02qw). Note that only the local error at each step is controlled by these arguments. The error estimates obtained are not strict bounds but are usually reliable over one step. Over a number of steps the overall error may accumulate in various ways, depending on the properties of the differential equation system. The code is designed so that a reduction in the tolerances should lead to an approximately proportional reduction in the error. You are strongly recommended to call
nag_ode_ivp_adams_roots (d02qf) with more than one set of tolerances and to compare the results obtained to estimate their accuracy.
The accuracy obtained depends on the type of error test used. If the solution oscillates around zero a relative error test should be avoided, whereas if the solution is exponentially increasing an absolute error test should not be used. If different accuracies are required for different components of the solution then a component-wise error test should be used. For a description of the error test see the specifications of the arguments
vectol,
atol and
rtol in the function document for
nag_ode_ivp_adams_setup (d02qw).
The accuracy of any roots located will depend on the accuracy of integration and may also be restricted by the numerical properties of . When evaluating you should try to write the code so that unnecessary cancellation errors will be avoided.
Further Comments
If
nag_ode_ivp_adams_roots (d02qf) fails with
then the combination of
atol and
rtol may be so small that a solution cannot be obtained, in which case the function should be called again with larger values for
rtol and/or
atol (see
nag_ode_ivp_adams_setup (d02qw)). If the accuracy requested is really needed then you should consider whether there is a more fundamental difficulty. For example:
(a) |
in the region of a singularity the solution components will usually be of a large magnitude. nag_ode_ivp_adams_roots (d02qf) could be used in one-step mode to monitor the size of the solution with the aim of trapping the solution before the singularity. In any case numerical integration cannot be continued through a singularity, and analytical treatment may be necessary; |
(b) |
for ‘stiff’ equations, where the solution contains rapidly decaying components, the function will require a very small step size to preserve stability. This will usually be exhibited by excessive computing time and sometimes an error exit with , but usually an error exit with or . The Adams' methods are not efficient in such cases and you should consider using a function from the Sub-chapter D02M–N. A high proportion of failed steps
(see argument nfail) may indicate stiffness but there may be other reasons for this phenomenon. |
nag_ode_ivp_adams_roots (d02qf) can be used for producing results at short intervals (for example, for graph plotting); you should set
and
tcrit to the last output point required in a prior call to
nag_ode_ivp_adams_setup (d02qw) and then set
tout appropriately for each output point in turn in the call to
nag_ode_ivp_adams_roots (d02qf)
Example
This example solves the equation
reposed as
over the range
with initial conditions
and
using vector error control (
) and computation of the solution at
with
(
). Also, we use
nag_ode_ivp_adams_roots (d02qf) to locate the positions where
or where the first component has a turning-point, that is
.
Open in the MATLAB editor:
d02qf_example
function d02qf_example
fprintf('d02qf example results\n\n');
neqf = int64(2);
neqg = int64(2);
vectol = true;
atol = [1e-06; 1e-06];
rtol = [0.0001; 0.0001];
onestp = false;
crit = true;
tcrit = 10;
hmax = 0;
maxstp = int64(0);
alterg = false;
sophst = true;
lrwork = 23*(1+neqf) + 14*neqg;
rwork = zeros(lrwork,1);
liwork = 21 + 4*neqg;
iwork = zeros(liwork, 1, 'int64');
[statef, alterg, rwork, iwork, ifail] = ...
d02qw(...
'Start', neqf, vectol, atol, rtol, onestp, crit, tcrit, hmax, ...
maxstp, neqg, alterg, sophst, rwork, iwork);
t = 0;
y = [0; 1];
tout = 10;
root = true;
while (t<tout && root)
[t, y, root, rwork, iwork, ifail] = ...
d02qf(...
@fcn, t, y, tout, @g, neqg, rwork, iwork);
if (root)
[yp, tcurr, hlast, hnext, odlast, odnext, nsucc, nfail, tolfac, ...
badcmp, ifail] = d02qx(...
neqf, rwork, iwork);
[index, itype, events, resids, ifail] = ...
d02qy(...
neqg, rwork, iwork);
fprintf('\nRoot at %13.5e\n',t);
fprintf('for event equation %2d with type %3d and residual %13.5e\n',...
index, itype, resids(index))
fprintf(' y(1) = %13.5e y''(1) = %13.5e\n',y(1), yp(1));
ind = find(events);
for i = ind
if i~=index
fprintf('and also for event equation %2d with type %3d',i, events(i));
fprintf(' and residual %13.5e\n',resids(i));
end
end
end
end
function f = fcn(neqf, x, y)
f=zeros(neqf,1);
f(1)=y(2);
f(2)=-y(1);
function result = g(neqf, x, y, yp, k)
if (k == 1)
result = yp(1);
else
result = y(1);
end
d02qf example results
Root at 0.00000e+00
for event equation 2 with type 1 and residual 0.00000e+00
y(1) = 0.00000e+00 y'(1) = 1.00000e+00
Root at 1.57076e+00
for event equation 1 with type 1 and residual -5.20417e-17
y(1) = 1.00003e+00 y'(1) = -5.20417e-17
Root at 3.14151e+00
for event equation 2 with type 1 and residual -1.27676e-15
y(1) = -1.27676e-15 y'(1) = -1.00012e+00
Root at 4.71228e+00
for event equation 1 with type 1 and residual 1.67921e-15
y(1) = -1.00010e+00 y'(1) = 1.67921e-15
Root at 6.28306e+00
for event equation 2 with type 1 and residual 2.65066e-15
y(1) = 2.65066e-15 y'(1) = 9.99979e-01
Root at 7.85379e+00
for event equation 1 with type 4 and residual -7.63278e-17
y(1) = 9.99970e-01 y'(1) = -7.63278e-17
Root at 9.42469e+00
for event equation 2 with type 4 and residual -6.86950e-16
y(1) = -6.86950e-16 y'(1) = -9.99854e-01
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015