Skip to main content

cubature rules on triangles

Project description

Triangle Cubature Rules

This repo serves as a collection of well-tested triangle cubature rules, i.e. numerical integration schemes for integrals of the form

$$ \int_K f(x, y) ~\mathrm{d}x ~\mathrm{d}y, $$

where $K \subset \mathbb{R}^2$ is a triangle. All cubature rules are based on [1].

Usage

Using the cubature schemes is fairly simple.

from triangle_cubature.cubature_rule import CubatureRuleEnum
from triangle_cubature.integrate import integrate_on_mesh
from triangle_cubature.integrate import integrate_on_triangle
import numpy as np

# specifying the mesh
coordinates = np.array([
  [0., 0.],
  [1., 0.],
  [1., 1.],
  [0., 1.]
])

elements = np.array([
  [0, 1, 2],
  [0, 2, 3]
], dtype=int)


# defining the function to be integrated
# NOTE the function must be able to handle coordinates as array
# of shape (N, 2)
def constant(coordinates: np.ndarray):
    """returns 1"""
    return np.ones(coordinates.shape[0])


# integrating over the whole mesh
integral_on_mesh = integrate_on_mesh(
    f=constant,
    coordinates=coordinates,
    elements=elements,
    cubature_rule=CubatureRuleEnum.MIDPOINT)

# integrating over a single triangle, e.g.
# in this case, the "first" element of the mesh
integral_on_triangle = integrate_on_triangle(
    f=constant,
    triangle=coordinates[elements[0], :],
    cubature_rule=CubatureRuleEnum.MIDPOINT)

print(f'Integral value on mesh: {integral_on_mesh}')
print(f'Integral value on triangle: {integral_on_triangle}')

Available Rules

The available cubature rules can be found in triangle_cubature/cubature_rule.py.

  • CubatureRuleEnum.MIDPOINT
    • degree of exactness: 1
    • Ref: [1]
  • CubatureRuleEnum.LAUFFER_LINEAR
    • degree of exactness: 1
    • Ref: [1]
  • CubatureRuleEnum.SMPLX1
    • degree of exactness: 2
    • Ref: [1]
  • CubatureRuleEnum.DAYTAYLOR
    • degree of exactness: 6
    • Ref: [2]

(Unit) Tests

To run auto tests, you do

python -m unittest discover tests/auto/

The unit tests use sympy to verify the degree of exactness of the implemented cubature rules, i.e. creates random polynomials $p_d$ of the expected degree of exactness $d$ and compares the exact result of $\int_K p_d(x, y) ~\mathrm{d}x ~\mathrm{d}y$ to the value obtained with the cubature rule at hand.

References

  • [1] Stenger, Frank. 'Approximate Calculation of Multiple Integrals (A. H. Stroud)'. SIAM Review 15, no. 1 (January 1973): 234-35. https://doi.org/10.1137/1015023. p. 306-315
  • [2] D.M. Day and M.A. Taylor 'A new 11 point degree 6 formula for the triangle', PAMM Proc. Appl. Math. Mech. 7 1022501-1022502 (2007).

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

triangle_cubature-1.2.0.tar.gz (7.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

triangle_cubature-1.2.0-py3-none-any.whl (7.7 kB view details)

Uploaded Python 3

File details

Details for the file triangle_cubature-1.2.0.tar.gz.

File metadata

  • Download URL: triangle_cubature-1.2.0.tar.gz
  • Upload date:
  • Size: 7.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.9.18

File hashes

Hashes for triangle_cubature-1.2.0.tar.gz
Algorithm Hash digest
SHA256 99c546dd5178874446d9d4133f90a8bc67c366854e1a84d7df9855dc202d457b
MD5 db63dbd1f92171a468ad8ecc5dd8f284
BLAKE2b-256 a2f3d286c390d52ed8340ecdff79c4854cbb4600bde0d98f34f8a6e9cd3a1027

See more details on using hashes here.

File details

Details for the file triangle_cubature-1.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for triangle_cubature-1.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 9a5eaad1f93da916f53d84731070da8f43ee19ca7c290882139b23aac7295a76
MD5 f896ff8535891c6e1ab114818a9710c1
BLAKE2b-256 0731397bcb9702cd68b81d67f3b712ecd586bedbabcaf614660ee62262be8208

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page