NAG Library Routine Document
d01jaf
(md_sphere_bad)
1
Purpose
d01jaf attempts to evaluate an integral over an -dimensional sphere (, , or ), to a user-specified absolute or relative accuracy, by means of a modified Sag–Szekeres method. The routine can handle singularities on the surface or at the centre of the sphere, and returns an error estimate.
2
Specification
Fortran Interface
Subroutine d01jaf ( |
f,
ndim,
radius,
epsa,
epsr,
method,
icoord,
result,
esterr,
nevals,
ifail) |
Integer, Intent (In) | :: |
ndim,
method,
icoord | Integer, Intent (Inout) | :: |
ifail | Integer, Intent (Out) | :: |
nevals | Real (Kind=nag_wp), External | :: |
f | Real (Kind=nag_wp), Intent (In) | :: |
radius,
epsa,
epsr | Real (Kind=nag_wp), Intent (Out) | :: |
result,
esterr |
|
C Header Interface
#include nagmk26.h
void |
d01jaf_ (
double (NAG_CALL *f)(
const Integer *ndim,
const double x[]),
const Integer *ndim,
const double *radius,
const double *epsa,
const double *epsr,
const Integer *method,
const Integer *icoord,
double *result,
double *esterr,
Integer *nevals,
Integer *ifail) |
|
3
Description
d01jaf calculates an approximation to the
-dimensional integral
where
is the hypersphere
(the integrand function may also be defined in spherical coordinates). The algorithm is based on the Sag–Szekeres method (see
Sag and Szekeres (1964)), applying the product trapezoidal formula after a suitable radial transformation. An improved transformation technique is developed: depending on the behaviour of the function and on the required accuracy, different transformations can be used, some of which are ‘double exponential’, as defined by
Takahasi and Mori (1974). The resulting technique allows the routine to deal with integrand singularities on the surface or at the centre of the sphere. When the estimated error of the approximation with mesh size
is larger than the tolerated error, the trapezoidal formula with mesh size
is calculated. A drawback of this method is the exponential growth of the number of function evaluations in the successive approximations (this number grows with a factor
). This introduces the restriction
. Because the convergence rate of the successive approximations is normally better than linear, the error estimate is based on the linear extrapolation of the difference between the successive approximations (see
Robinson and de Doncker (1981) and
Roose and de Doncker (1981)). For further details of the algorithm, see
Roose and de Doncker (1981).
4
References
Robinson I and de Doncker E (1981) Automatic computation of improper integrals over a bounded or unbounded planar region Computing 27 89–284
Roose D and de Doncker E (1981) Automatic integration over a sphere J. Comput. Appl. Math. 7 203–224
Sag T W and Szekeres G (1964) Numerical evaluation of high-dimensional integrals Math. Comput. 18 245–253
Takahasi H and Mori M (1974) Double Exponential Formulas for Numerical Integration 9 Publ. RIMS, Kyoto University 721–741
5
Arguments
- 1: – 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 | Integer, Intent (In) | :: |
ndim | Real (Kind=nag_wp), Intent (In) | :: |
x(ndim) |
|
C Header Interface
#include nagmk26.h
double |
f (
const Integer *ndim,
const double x[]) |
|
- 1: – IntegerInput
-
On entry: , the number of dimensions of the integral.
- 2: – Real (Kind=nag_wp) arrayInput
-
On entry: the coordinates of the point at which the integrand
must be evaluated. These coordinates are given in Cartesian or spherical polar form according to the value of
icoord.
f must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which
d01jaf 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
d01jaf. If your code inadvertently
does return any NaNs or infinities,
d01jaf is likely to produce unexpected results.
- 2: – IntegerInput
-
On entry: , the dimension of the sphere.
Constraint:
.
- 3: – Real (Kind=nag_wp)Input
-
On entry: , the radius of the sphere.
Constraint:
.
- 4: – Real (Kind=nag_wp)Input
-
On entry: the requested absolute tolerance. If
, its absolute value is used. See
Section 7.
- 5: – Real (Kind=nag_wp)Input
-
On entry: the requested relative tolerance.
- Its absolute value is used.
- The latter value is used as epsr by the routine. See Section 7.
- 6: – IntegerInput
-
On entry: must specify the transformation to be used by the routine. The choice depends on the behaviour of the integrand and on the required accuracy.
For well-behaved functions and functions with mild singularities on the surface of the sphere only:
- Low accuracy required.
- High accuracy required.
For functions with severe singularities on the surface of the sphere only:
- Low accuracy required.
- High accuracy required.
(in this case
icoord must be set to
, and the function defined in special spherical coordinates).
For functions with a singularity at the centre of the sphere (and possibly with singularities on the surface as well):
- Low accuracy required.
- High accuracy required.
can be used as a default value and is equivalent to:
- if , and
- if .
The distinction between low and high required accuracies, as mentioned above, depends also on the behaviour of the function. Roughly one may assume the critical value of
epsa and
epsr to be
, but the critical value will be smaller for a well-behaved integrand and larger for an integrand with severe singularities.
Suggested value:
.
Constraint:
,
,
,
,
,
or
.
If , or
- 7: – IntegerInput
-
On entry: must specify which kind of coordinates are used in
f.
- Cartesian coordinates
, for .
- Spherical coordinates (see Section 9.2): ;
, for .
- ,
- Special spherical polar coordinates (see Section 9.3), with the additional transformation : ;
, for .
Constraint:
,
or
.
If or ,
- 8: – Real (Kind=nag_wp)Output
-
On exit: the approximation to the integral .
- 9: – Real (Kind=nag_wp)Output
-
On exit: an estimate of the modulus of the absolute error.
- 10: – IntegerOutput
-
On exit: the number of function evaluations used.
- 11: – IntegerInput/Output
-
On entry:
ifail must be set to
,
. If you are unfamiliar with this argument you should refer to
Section 3.4 in How to Use the NAG Library and its Documentation for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value
is recommended. If the output of error messages is undesirable, then the value
is recommended. Otherwise, because for this routine the values of the output arguments may be useful even if
on exit, the recommended value is
.
When the value 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).
Note: d01jaf may return useful information for one or more of the following detected errors or warnings.
Errors or warnings detected by the routine:
-
The required accuracy cannot be achieved within a limiting number of function evaluations (which is set by the routine).
-
The required accuracy cannot be achieved because of round-off error.
-
The required accuracy cannot be achieved because the maximum accuracy with respect to the machine constants
x02ajf and
x02amf has been attained. If this maximum accuracy is rather low (compared with
x02ajf), the cause of the problem is a severe singularity on the boundary or at the centre of the sphere. If
,
or
, setting
or
may help.
-
On entry, | or , |
or | , |
or | , , , , , or , |
or | , or , |
or | and or , |
or | or and . |
No calculations have been performed.
result and
esterr are set to
.
An unexpected error has been triggered by this routine. Please
contact
NAG.
See
Section 3.9 in How to Use the NAG Library and its Documentation for further information.
Your licence key may have expired or may not have been installed correctly.
See
Section 3.8 in How to Use the NAG Library and its Documentation for further information.
Dynamic memory allocation failed.
See
Section 3.7 in How to Use the NAG Library and its Documentation for further information.
7
Accuracy
You can specify an absolute and/or a relative tolerance, setting
epsa and
epsr. The routine attempts to calculate an approximation
result such that
If
,
esterr returns an estimate of, but not necessarily a bound for,
.
8
Parallelism and Performance
d01jaf is not threaded in any implementation.
Timing depends on the integrand and the accuracy required.
Cartesian coordinates are related to the spherical polar coordinates by:
where
, for
and
.
As a consequence of the transformation technique, the severity of the singularities which can be handled by d01jaf depends on the precision and range of real numbers on the machine. or must be used when the singularity on the surface is ‘severe’ in view of the requested accuracy and machine precision. In practice one has to set or if d01jaf terminates with when called with , or .
When integrating a function with a severe singular behaviour on the surface of the sphere, the additional transformation helps to avoid the loss of significant figures due to round-off error in the calculation of the integration nodes which are very close to the surface. For these points, the value of can be computed more accurately than the value of . Naturally, care must be taken that the function subprogram does not contain expressions of the form , which could cause a large round-off error in the calculation of the integrand at the boundary of the sphere.
Care should be taken to avoid underflow and/or overflow problems in the function subprogram, because some of the integration nodes used by d01jaf may be very close to the surface or to the centre of the sphere.
Example:
Note that d01jaf ensures that , but underflow could occur in the computation of .
10
Example
This example evaluates the integrals
where
, and
is the unit sphere of dimension
.
The exact values (to decimal places) are and .
10.1
Program Text
Program Text (d01jafe.f90)
10.2
Program Data
None.
10.3
Program Results
Program Results (d01jafe.r)