PRODUCT_RULE is a C++ program, using double precision arithmetic, which creates a multidimensional quadrature rule by using a product of one-dimensional quadrature rules.
The current version of the program requires that all the "factor rules" be identical, that is, the product rule is created as the product of n identical one-dimensional rules. It is possible to create product rules in which the factors are not equal, and one day this program may be extended to handle that case.
Note that the three files that define the quadrature rule are assumed to have related names, of the form
For information on the form of these files, see the QUADRATURE_RULES directory listed below.
product_rule prefix dim_num
If the arguments are not supplied on the command line, the program will prompt for them.
The program will create these output files, which define the multidimensional quadrature rule:
The computer code and data files described and made available on this web page are distributed under the GNU LGPL license.
CLENSHAW_CURTIS is a C++ library which sets up a Clenshaw Curtis quadrature grid in multiple dimensions.
INTEGRAL_TEST is a FORTRAN90 program which uses some of these test integrals to evaluate sets of quadrature points.
NINT_EXACTNESS is a C++ program which can test a quadrature rule for polynomial exactness.
NINTLIB is a C++ library of routines for numerically estimating integrals in multiple dimensions.
PRODUCT_FACTOR is an executable C++ program which creates a multi-dimensional quadrature rule as a tensor product of 1-D rules, which may be distinct.
PRODUCT_RULE is also available in a C++ version and a MATLAB version
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 C++ library of routines for defining quadrature rules on a variety of intervals with different weight functions.
STROUD is a FORTRAN90 library containing quadrature rules for a variety of unusual areas, surfaces and volumes in 2D, 3D and N-dimensions.
TEST_NINT is a C++ library of integrand functions for testing multidimensional quadrature routines.
TESTPACK is a C++ library of functions which define a set of integrands used to test multidimensional quadrature.
As an example, we start with a 1D Clenshaw Curtis rule of order 3:
We give the command
product_rule cc_d1_o003 2to create a Clenshaw Curtis product rule of order 9 for a 2D region. The files which are created include:
You can go up one level to the C++ source codes.