|
1 | 1 | # Support Matrix
|
2 | 2 |
|
3 |
| -While this library aims to support all possible integration rules and [**Meshes.jl**](https://github.com/JuliaGeometry/Meshes.jl) |
4 |
| -geometry types, some combinations are ill-suited and some others are simply not yet |
5 |
| -implemented. The following Support Matrix aims to capture the current development state of |
6 |
| -all geometry/rule combinations. Entries with a green check mark are fully supported |
7 |
| -and have passing unit tests that provide some confidence they produce accurate results. |
| 3 | +This library aims to enable users to calculate the value of integrals over all [**Meshes.jl**](https://github.com/JuliaGeometry/Meshes.jl) |
| 4 | +geometry types using an array of numerical integration rules and techniques. However, some |
| 5 | +combinations of geometry types and integration rules are ill-suited, and some others are simply |
| 6 | +not yet implemented. The following Support Matrix captures the current state of support for |
| 7 | +all geometry/rule combinations. Entries with a green check mark are fully supported and pass |
| 8 | +unit tests designed to check for accuracy. |
8 | 9 |
|
9 | 10 | In general, Gauss-Kronrod integration rules are recommended (and the default) for geometries
|
10 |
| -with one parametric dimension, e.g.: `Segment`, `BezierCurve`, and `Rope`. Gauss-Kronrod |
11 |
| -rules can also be applied to some geometries with more dimensions by nesting multiple |
12 |
| -integration solves, but this is inefficient. These Gauss-Kronrod rules are supported (but |
13 |
| -not recommended) for surface-like geometries, but not for volume-like geometries. For |
14 |
| -geometries with more than one parametric dimension, e.g. surfaces and volumes, H-Adaptive |
15 |
| -Cubature integration rules are recommended (and the default). |
| 11 | +with one parametric dimension, e.g.: `Segment`, `BezierCurve`, and `Rope`. For geometries with |
| 12 | +more than one parametric dimension, e.g. surfaces and volumes, H-Adaptive Cubature rules are |
| 13 | +recommended (and the default). |
| 14 | + |
| 15 | +While it is possible to apply nested Gauss-Kronrod rules to numerically integrate geometries |
| 16 | +with more than one parametric dimension, this produces results that are strictly inferior to |
| 17 | +using an equivalent H-Adaptive Cubature rule, so support for this usage is not recommended. |
16 | 18 |
|
17 | 19 | | Symbol | Support Level |
|
18 | 20 | |--------|---------|
|
19 |
| -| ✅ | Supported, passes unit tests | |
| 21 | +| ✅ | Supported | |
20 | 22 | | 🎗️ | Planned to support in the future |
|
| 23 | +| ⚠️ | Deprecated | |
21 | 24 | | 🛑 | Not supported |
|
22 | 25 |
|
23 | 26 | | `Meshes.Geometry` | Gauss-Legendre | Gauss-Kronrod | H-Adaptive Cubature |
|
24 | 27 | |----------|----------------|---------------|---------------------|
|
25 |
| -| `Ball` in `𝔼{2}` | ✅ | ✅ | ✅ | |
| 28 | +| `Ball` in `𝔼{2}` | ✅ | ⚠️ | ✅ | |
26 | 29 | | `Ball` in `𝔼{3}` | ✅ | 🛑 | ✅ |
|
27 | 30 | | `BezierCurve` | ✅ | ✅ | ✅ |
|
28 | 31 | | `Box` in `𝔼{1}` | ✅ | ✅ | ✅ |
|
29 |
| -| `Box` in `𝔼{2}` | ✅ | ✅ | ✅ | |
| 32 | +| `Box` in `𝔼{2}` | ✅ | ⚠️ | ✅ | |
30 | 33 | | `Box` in `𝔼{≥3}` | ✅ | 🛑 | ✅ |
|
31 | 34 | | `Circle` | ✅ | ✅ | ✅ |
|
32 |
| -| `Cone` | ✅ | ✅ | ✅ | |
33 |
| -| `ConeSurface` | ✅ | ✅ | ✅ | |
| 35 | +| `Cone` | ✅ | 🛑 | ✅ | |
| 36 | +| `ConeSurface` | ✅ | ⚠️ | ✅ | |
34 | 37 | | `Cylinder` | ✅ | 🛑 | ✅ |
|
35 |
| -| `CylinderSurface` | ✅ | ✅ | ✅ | |
36 |
| -| `Disk` | ✅ | ✅ | ✅ | |
| 38 | +| `CylinderSurface` | ✅ | ⚠️ | ✅ | |
| 39 | +| `Disk` | ✅ | ⚠️ | ✅ | |
37 | 40 | | `Ellipsoid` | ✅ | ✅ | ✅ |
|
38 | 41 | | `Frustum` | [🎗️](https://github.com/JuliaGeometry/MeshIntegrals.jl/issues/28) | [🎗️](https://github.com/JuliaGeometry/MeshIntegrals.jl/issues/28) | [🎗️](https://github.com/JuliaGeometry/MeshIntegrals.jl/issues/28) |
|
39 |
| -| `FrustumSurface` | ✅ | ✅ | ✅ | |
| 42 | +| `FrustumSurface` | ✅ | ⚠️ | ✅ | |
40 | 43 | | `Hexahedron` | ✅ | ✅ | ✅ |
|
41 | 44 | | `Line` | ✅ | ✅ | ✅ |
|
42 |
| -| `ParaboloidSurface` | ✅ | ✅ | ✅ | |
| 45 | +| `ParaboloidSurface` | ✅ | ⚠️ | ✅ | |
43 | 46 | | `ParametrizedCurve` | ✅ | ✅ | ✅ |
|
44 | 47 | | `Plane` | ✅ | ✅ | ✅ |
|
45 | 48 | | `Polyarea` | [🎗️](https://github.com/JuliaGeometry/MeshIntegrals.jl/issues/28) | [🎗️](https://github.com/JuliaGeometry/MeshIntegrals.jl/issues/28) | [🎗️](https://github.com/JuliaGeometry/MeshIntegrals.jl/issues/28) |
|
46 | 49 | | `Pyramid` | [🎗️](https://github.com/JuliaGeometry/MeshIntegrals.jl/issues/28) | [🎗️](https://github.com/JuliaGeometry/MeshIntegrals.jl/issues/28) | [🎗️](https://github.com/JuliaGeometry/MeshIntegrals.jl/issues/28) |
|
47 |
| -| `Quadrangle` | ✅ | ✅ | ✅ | |
| 50 | +| `Quadrangle` | ✅ | ⚠️ | ✅ | |
48 | 51 | | `Ray` | ✅ | ✅ | ✅ |
|
49 | 52 | | `Ring` | ✅ | ✅ | ✅ |
|
50 | 53 | | `Rope` | ✅ | ✅ | ✅ |
|
51 | 54 | | `Segment` | ✅ | ✅ | ✅ |
|
52 | 55 | | `SimpleMesh` | [🎗️](https://github.com/JuliaGeometry/MeshIntegrals.jl/issues/27) | [🎗️](https://github.com/JuliaGeometry/MeshIntegrals.jl/issues/27) | [🎗️](https://github.com/JuliaGeometry/MeshIntegrals.jl/issues/27) |
|
53 | 56 | | `Sphere` in `𝔼{2}` | ✅ | ✅ | ✅ |
|
54 |
| -| `Sphere` in `𝔼{3}` | ✅ | ✅ | ✅ | |
| 57 | +| `Sphere` in `𝔼{3}` | ✅ | ⚠️ | ✅ | |
55 | 58 | | `Tetrahedron` in `𝔼{3}` | [🎗️](https://github.com/JuliaGeometry/MeshIntegrals.jl/issues/40) | ✅ | [🎗️](https://github.com/JuliaGeometry/MeshIntegrals.jl/issues/40) |
|
56 | 59 | | `Triangle` | ✅ | ✅ | ✅ |
|
57 |
| -| `Torus` | ✅ | ✅ | ✅ | |
| 60 | +| `Torus` | ✅ | ⚠️ | ✅ | |
58 | 61 | | `Wedge` | [🎗️](https://github.com/JuliaGeometry/MeshIntegrals.jl/issues/28) | [🎗️](https://github.com/JuliaGeometry/MeshIntegrals.jl/issues/28) | [🎗️](https://github.com/JuliaGeometry/MeshIntegrals.jl/issues/28) |
|
0 commit comments