NINT_EXACTNESS_TRI is a C++ program which investigates the polynomial exactness of a multidimensional quadrature rule for a triangle.
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. For a triangle, the degree of a monomial term is the sum of the exponents of x and y. Thus, for instance, the DEGREE of
x2y5is 2+5=7.
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
For information on the form of these files, see the QUADRATURE_RULES_TRI directory listed below.
The exactness results are written to an output file with the corresponding name:
nint_exactness_tri prefix degree_maxwhere
If the arguments are not supplied on the command line, the program will prompt for them.
The computer code and data files described and made available on this web page are distributed under the GNU LGPL license.
DUNAVANT is a C++ library which sets up a Dunavant quadrature rule for a triangle.
FEKETE is a C++ library which sets up a Fekete quadrature rule for a triangle.
GM_RULES is a C++ library which defines a Grundmann-Moeller rule for quadrature over a triangle, tetrahedron, or general M-dimensional simplex.
INTEGRAL_TEST is a FORTRAN90 program which uses test integrals to measure the effectiveness of certain sets of quadrature rules.
NINT_EXACTNESS is a C++ program which tests the exactness of integration rules over the interval, rectangle, or multidimensional rectangle.
NINT_EXACTNESS_MIXED is a C++ program which measures the polynomial exactness of a multidimensional quadrature rule based on a mixture of 1D quadrature rule factors.
NINT_EXACTNESS_PYRAMID is a C++ program which investigates the polynomial exactness of a quadrature rule for the pyramid.
NINT_EXACTNESS_TET is a C++ program which tests the polynomial exactness of integration rules for the tetrahedron.
NINT_EXACTNESS_TRI is available in a C++ version and a FORTRAN90 version and a MATLAB version.
NINTLIB is a C++ library which numerically estimates integrals in multiple dimensions.
QUADRATURE_RULES_TRI is a dataset directory which contains sets of files that define quadrature rules over the triangle.
QUADRULE is a C++ library which defines quadrature rules on a variety of intervals with different weight functions.
STROUD is a FORTRAN90 library which defines quadrature rules for a variety of unusual areas, surfaces and volumes in 2D, 3D and multiple dimensions.
TEST_TRI_INT is a C++ library which defines integrand functions for testing quadrature routines for the triangle.
TRIANGLE_MONTE_CARLO, a C++ program which uses the Monte Carlo method to estimate integrals over a triangle.
WANDZURA is a C++ library which sets up a Wandzura quadrature rule for a triangle.
The "W", "X" and "R" files associated with the point sets tested here may be found in the QUADRATURE_RULES_TRI directory.
You can go up one level to the C++ source codes.