FEKETE is a FORTRAN90 library which can return information defining any of seven Fekete rules for high order interpolation and quadrature in a triangle.
Fekete points can be defined for any region OMEGA. To define the Fekete points for a given region, let Poly(N) be some finite dimensional vector space of polynomials, such as all polynomials of degree less than L, or all polynomials whose monomial terms have total degree less than some value L.
Let P(1:M) be any basis for Poly(N). For this basis, the Fekete points are defined as those points Z(1:M) which maximize the determinant of the corresponding Vandermonde matrix:
V = [ P1(Z1) P1(Z2) ... P1(ZM) ]
[ P2(Z1) P2(Z2) ... P2(ZM) ]
...
[ PM(ZM) P2(ZM) ... PM(ZM) ]
On the triangle, it is known that some Fekete points will lie on the boundary, and that on each side of the triangle, these points will correspond to a set of Gauss-Lobatto points.
The seven rules have the following orders and precisions:
| Rule | Order | Precision |
|---|---|---|
| 1 | 10 | 3 |
| 2 | 28 | 6 |
| 3 | 55 | 9 |
| 4 | 91 | 12 |
| 5 | 91 | 12 |
| 6 | 136 | 15 |
| 7 | 190 | 18 |
The computer code and data files described and made available on this web page are distributed under the GNU LGPL license.
FEKETE is available in a C++ version and a FORTRAN90 version and a MATLAB version.
DUNAVANT, a FORTRAN90 library which defines Dunavant rules for quadrature on a triangle.
FELIPPA, a FORTRAN90 library which defines quadrature rules for lines, triangles, quadrilaterals, pyramids, wedges, tetrahedrons and hexahedrons.
GM_RULE, a FORTRAN90 library which defines a Grundmann-Moeller rule for quadrature over a triangle, tetrahedron, or general M-dimensional simplex.
LYNESS_RULE a FORTRAN90 library which returns Lyness-Jespersen quadrature rules for the triangle.
NCC_TRIANGLE, a FORTRAN90 library which defines Newton-Cotes closed quadrature rules on a triangle.
NCO_TRIANGLE, a FORTRAN90 library which defines Newton-Cotes open quadrature rules on a triangle.
QUADRATURE_RULES_TRI, a dataset directory which contains triples of files which defines various quadrature rules on triangles.
STROUD, a FORTRAN90 library which contains quadrature rules for a variety of unusual areas, surfaces and volumes in 2D, 3D and M-dimensions.
TEST_TRI_INT, a FORTRAN90 library which tests algorithms for quadrature over a triangle.
TOMS612, a FORTRAN77 library which estimates the integral of a function over a triangle.
TRIANGLE_EXACTNESS, a FORTRAN90 program which investigates the polynomial exactness of a quadrature rule for the triangle.
TRIANGLE_MONTE_CARLO, a FORTRAN90 program which uses the Monte Carlo method to estimate integrals over a triangle.
WANDZURA, a FORTRAN90 library which definines Wandzura rules for quadrature on a triangle.
One of the tests in the sample calling program creates EPS files of the abscissas in the unit triangle. These have been converted to PNG files for display here.
You can go up one level to the FORTRAN90 source codes.