NINT_EXACTNESS
Exactness of Multidimensional Quadrature


NINT_EXACTNESS is a FORTRAN90 program, using double precision arithmetic, which investigates the polynomial exactness of a multidimensional quadrature rule.

The polynomial exactness of a quadrature rule is defined as the highest total degree D such that the quadrature rule is guaranteed to integrate exactly all polynomials of total degree DEGREE_MAX or less, ignoring roundoff. The total degree of a polynomial is the maximum of the degrees of all its monomial terms. The degree of a monomial term is the sum of the exponents. Thus, for instance, the DEGREE of

x2y z5
is 2+1+5=8.

To be thorough, the program starts at DEGREE = 0, and then proceeds to DEGREE = 1, 2, and so on up to a maximum degree DEGREE_MAX specified by the user. At each value of DEGREE, the program generates every possible monomial term, applies the quadrature rule to it, and determines the quadrature error. The program uses a scaling factor on each monomial so that the exact integral should always be 1; therefore, each reported error can be compared on a fixed scale.

The program is very flexible and interactive. The quadrature rule is defined by three files, to be read at input, and the maximum degree is specified by the user as well.

Note that the three files that define the quadrature rule are assumed to have related names, of the form

When running the program, the user only enters the common prefix part of the file names, which is enough information for the program to find all three files.

For information on the form of these files, see the QUADRATURE_RULES directory listed below.

The exactness results are written to an output file with the corresponding name:

Usage:

nint_exactness prefix degree_max

prefix
the common prefix for the files containing the abscissa, weight and region information of the quadrature rule;
degree_max
the maximum total monomial degree to check. This should be a relatively small nonnegative number, particularly if the spatial dimension is high. A value of 5 or 10 might be reasonable, but a value of 50 or 100 is probably never a good input!

If the arguments are not supplied on the command line, the program will prompt for them.

Licensing:

The computer code and data files described and made available on this web page are distributed under the GNU LGPL license.

Related Data and Programs:

CLENSHAW_CURTIS is a FORTRAN90 library of routines which set up a Clenshaw Curtis quadrature grid in multiple dimensions.

INT_EXACTNESS is a FORTRAN90 program which tests the polynomial exactness of one dimensional quadrature rules.

INTEGRAL_TEST is a FORTRAN90 program which uses test integrals to measure the effectiveness of certain sets of quadrature rules.

NINT_EXACTNESS is also available in a C++ version and a MATLAB version.

NINT_EXACTNESS_TET is a FORTRAN90 program which tests the polynomial exactness of integration rules for the tetrahedron.

NINT_EXACTBESS_TRI is an executable FORTRAN90 program which tests the polynomial exactness of a quadrature rule for the triangle.

NINTLIB is a FORTRAN90 library which numerically estimates integrals in multiple dimensions.

PRODUCT_FACTOR is an executable FORTRAN90 program which constructs a product rule from distinct 1D factor rules.

PRODUCT_RULE is a FORTRAN90 program which can create a multidimensional quadrature rule as a product of 1D quadrature rules.

QUADRATURE_RULES is a dataset directory which contains sets of files that define quadrature rules over various 1D intervals or multidimensional hypercubes.

QUADRULE is a FORTRAN90 library of routines which define quadrature rules on a variety of intervals with different weight functions.

STROUD is a FORTRAN90 library of routines which defines quadrature rules for a variety of unusual areas, surfaces and volumes in 2D, 3D and multiple dimensions.

TEST_NINT is a FORTRAN90 library of routines which define integrand functions for testing multidimensional quadrature routines.

TESTPACK is a FORTRAN90 library of functions which define a set of integrands used to test multidimensional quadrature.

Reference:

  1. Philip Davis, Philip Rabinowitz,
    Methods of Numerical Integration,
    Second Edition,
    Dover, 2007,
    ISBN: 0486453391,
    LC: QA299.3.D28.

Source Code:

Examples and Tests:

CC_D1_O2 is a Clenshaw-Curtis order 2 rule for 1D.

CC_D1_O3 is a Clenshaw-Curtis order 3 rule for 1D. If you are paying attention, you may be surprised to see that a Clenshaw Curtis rule of odd order has one more degree of accuracy than you'd expect!

CC_D2_O3x3 is a Clenshaw-Curtis 3x3 product rule for 2D.

CC_D3_O3x3x3 is a Clenshaw-Curtis 3x3x3 product rule for 3D.

CCGL_D2_O3x2 is a product rule for 2D whose factors are a Clenshaw-Curtis of order 3 and a Gauss-Legendre rule of order 2.

CC_D2_LEVEL0 is a Clenshaw Curtis sparse grid rule for 2D of level 0 and order 1.

CC_D2_LEVEL1 is a Clenshaw Curtis sparse grid rule for 2D of level 1 and order 5.

CC_D2_LEVEL2 is a Clenshaw Curtis sparse grid rule for 2D of level 2 and order 13.

CC_D2_LEVEL3 is a Clenshaw Curtis sparse grid rule for 2D of level 3 and order 25.

CC_D2_LEVEL4 is a Clenshaw Curtis sparse grid rule for 2D of level 4 and order 65.

GL_D1_O3 is a Gauss-Legendre order 3 rule for 1D.

GL_D2_O3x3 is a Gauss-Legendre 3x3 product rule for 2D.

GL_D3_O3x3x3 is a Gauss-Legendre 3x3x3 product rule for 3D.

NCC_D1_O5 is a Newton-Cotes Closed order 5 rule for 1D.

NCC_D2_O5x5 is a Newton-Cotes Closed 5x5 product rule for 2D.

NCC_D3_O5x5x5 is a Newton-Cotes Closed 5x5x5 product rule for 3D.

List of Routines:

You can go up one level to the FORTRAN90 source codes.


Last revised on 06 December 2007.