NAG FL Interface
d01ahf (dim1_fin_well)
1
Purpose
d01ahf computes a definite integral over a finite range to a specified relative accuracy using a method described by Patterson.
2
Specification
Fortran Interface
Real (Kind=nag_wp) |
:: |
d01ahf |
Integer, Intent (In) |
:: |
nlimit |
Integer, Intent (Inout) |
:: |
ifail |
Integer, Intent (Out) |
:: |
npts |
Real (Kind=nag_wp), External |
:: |
f |
Real (Kind=nag_wp), Intent (In) |
:: |
a, b, epsr |
Real (Kind=nag_wp), Intent (Out) |
:: |
relerr |
|
C Header Interface
#include <nag.h>
double |
d01ahf_ (const double *a, const double *b, const double *epsr, Integer *npts, double *relerr, double (NAG_CALL *f)(const double *x), const Integer *nlimit, Integer *ifail) |
|
C++ Header Interface
#include <nag.h> extern "C" {
double |
d01ahf_ (const double &a, const double &b, const double &epsr, Integer &npts, double &relerr, double (NAG_CALL *f)(const double &x), const Integer &nlimit, Integer &ifail) |
}
|
The routine may be called by the names d01ahf or nagf_quad_dim1_fin_well.
3
Description
d01ahf computes a definite integral of the form
The method uses as its basis a family of interlacing high precision rules (see
Patterson (1968)) using
,
,
,
,
,
,
and
nodes. Initially the family is applied in sequence to the integrand. When two successive rules differ relatively by less than the required relative accuracy, the last rule used is taken as the value of the integral and the operation is regarded as successful. If all rules in the family have been applied unsuccessfully, subdivision is invoked. The subdivision strategy is as follows. The interval under scrutiny is divided into two sub-intervals (not always equal). The basic family is then applied to the first sub-interval. If the required accuracy is not obtained, the interval is stored for future examination (see
) and the second sub-interval is examined. Should the basic family again be unsuccessful, then the sub-interval is further subdivided and the whole process repeated. Successful integrations are accumulated as the partial value of the integral. When all possible successful integrations have been completed, those previously unsuccessful sub-intervals placed in store are examined.
A large number of refinements are incorporated to improve the performance. Some of these are:
-
(a)The rate of convergence of the basic family is monitored and used to make a decision to abort and subdivide before the full sequence has been applied.
-
(b)The -algorithm is applied to the basic results in an attempt to increase the convergence rate. See Wynn (1956).
-
(c)An attempt is made to detect sharp end point peaks and singularities in each sub-interval and to apply appropriate transformations to smooth the integrand. This consideration is also used to select interval sizes in the subdivision process.
-
(d)The relative accuracy sought in each sub-interval is adjusted in accordance with its likely contribution to the total integral.
-
(e)Random transformations of the integrand are applied to improve reliability in some instances.
4
References
Patterson T N L (1968) The Optimum addition of points to quadrature formulae Math. Comput. 22 847–856
Wynn P (1956) On a device for computing the transformation Math. Tables Aids Comput. 10 91–96
5
Arguments
-
1:
– Real (Kind=nag_wp)
Input
-
On entry: , the lower limit of integration.
-
2:
– Real (Kind=nag_wp)
Input
-
On entry: , the upper limit of integration. It is not necessary that .
-
3:
– Real (Kind=nag_wp)
Input
-
On entry: the relative accuracy required.
Constraint:
.
-
4:
– Integer
Output
-
On exit: the number of function evaluations used in the calculation of the integral.
-
5:
– Real (Kind=nag_wp)
Output
-
On exit: a rough estimate of the relative error achieved.
-
6:
– real (Kind=nag_wp) Function, supplied by the user.
External Procedure
-
f must return the value of the integrand
at a given point.
The specification of
f is:
Fortran Interface
Real (Kind=nag_wp) |
:: |
f |
Real (Kind=nag_wp), Intent (In) |
:: |
x |
|
C Header Interface
double |
f_ (const double *x) |
|
C++ Header Interface
#include <nag.h> extern "C" {
double |
f_ (const double &x) |
}
|
-
1:
– Real (Kind=nag_wp)
Input
-
On entry: the point at which the integrand must be evaluated.
f must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which
d01ahf is called. Arguments denoted as
Input must
not be changed by this procedure.
Note: f should not return floating-point NaN (Not a Number) or infinity values, since these are not handled by
d01ahf. If your code inadvertently
does return any NaNs or infinities,
d01ahf is likely to produce unexpected results.
-
7:
– Integer
Input
-
On entry: a limit to the number of function evaluations. If , the routine uses a default limit of .
-
8:
– Integer
Input/Output
-
On entry:
ifail must be set to
,
or
to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of means that an error message is printed while a value of means that it is not.
If halting is not appropriate, the value
or
is recommended. If message printing is undesirable, then the value
is recommended. Otherwise, the value
is recommended since useful values can be provided in some output arguments even when
on exit.
When the value or is used it is essential to test the value of ifail on exit.
On exit:
unless the routine detects an error or a warning has been flagged (see
Section 6).
6
Error Indicators and Warnings
If on entry
or
, explanatory error messages are output on the current error message unit (as defined by
x04aaf).
Errors or warnings detected by the routine:
Note: in some cases d01ahf may return useful information.
-
Integral has failed to converge to requested accuracy. It may be worthwhile to try increasing
nlimit. A result may be obtained by continuing without further subdivision, but this is likely to be
inaccurate.
-
Too many unsuccessful levels of subdivision. A result may be obtained by continuing without further subdivision, but this is likely to be inaccurate.
-
On entry, .
Constraint: .
An unexpected error has been triggered by this routine. Please
contact
NAG.
See
Section 7 in the Introduction to the NAG Library FL Interface for further information.
Your licence key may have expired or may not have been installed correctly.
See
Section 8 in the Introduction to the NAG Library FL Interface for further information.
Dynamic memory allocation failed.
See
Section 9 in the Introduction to the NAG Library FL Interface for further information.
7
Accuracy
The relative accuracy required is specified by you in the variable
epsr. The routine will terminate whenever the relative accuracy specified by
epsr is judged to have been reached.
If on exit, , then it is most likely that the result is correct to the specified accuracy. If, on exit, or , then it is likely that the specified accuracy has not been reached.
relerr is a rough estimate of the relative error achieved. It is a by-product of the computation and is not used to effect the termination of the routine. The outcome of the integration must be judged by the value of
ifail.
8
Parallelism and Performance
d01ahf is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
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.
The time taken by d01ahf depends on the complexity of the integrand and the accuracy required.
10
Example
This example evaluates the integral to a requested relative accuracy of
10.1
Program Text
10.2
Program Data
10.3
Program Results