---
title: Volumetric Integration Scheme for PDEs
url: https://www.emergentmind.com/topics/volumetric-integration-scheme
type: topic
---

# Volumetric Integration Scheme for PDEs

A volumetric integration scheme refers to a numerical technique for computing integrals of functions over domains with potentially complex geometry, typically in the context of partial differential equations (PDEs), boundary value problems, or mesh-based discretizations. In modern applied mathematics and computational physics, volumetric integration is essential for solving inhomogeneous PDEs, evaluating fundamental solutions (volume potentials), and ensuring accurate conservation of mass, momentum, or energy in mesh remapping or mesh-to-voxel projection.

## 1. Volume Potential Formulation and Applications

The core objective is to compute integrals of the form
\[
\mathcal V[f](\mathbf r_0) = \int_\Omega G(\mathbf r, \mathbf r_0)\, f(\mathbf r) \, dA(\mathbf r), \qquad \mathbf r_0\in\Omega,
\]
where \( \Omega \subset \mathbb{R}^2 \) is a (possibly multiply-connected) domain, \( f \) is a source density (solution to \( L u = f \)), and \( G \) is the free-space Green’s function associated with the constant-coefficient elliptic operator \( L \) [2203.05933]. This framework underpins the solution of inhomogeneous elliptic PDEs via decomposition into a particular solution (volume potential) plus a homogeneous (boundary-driven) term.

These volume potentials also appear in boundary integral methods for the Stokes and Navier–Stokes equations, as well as in the construction of exact conservative remeshings for mesh-to-voxel projection in computational physics [1812.00853, 1412.4941].

## 2. Domain Decomposition and Mappings

Efficient volumetric integration in complex domains requires flexible domain decomposition. The standard approach is to cover \( \Omega \) by a union of (i) regular “box-code” grid cells (squares), and (ii) a narrow strip of boundary-fitted triangular cells that may be straight-edged or curved. Each cell \( \mathcal{C}_k \) is mapped from a reference shape (\(\widehat{T}_0\) for triangles, \(\widehat{B}_0\) for squares) using a \(C^1\)-diffeomorphism \( \mathbf{R}^k \).

- Affine mappings are used for straight triangles.
- Gordon–Hall blending is used for curved triangles, with parametric representation of curved edges.
- Regular boxes employ a simple linear scaling and shift map.

This decomposition aligns with standard meshing tools such as Gmsh [2203.05933].

## 3. Area-to-Boundary Conversion via the Poincaré Lemma

A central innovation for high-order volumetric integration is the reduction of area integrals to boundary integrals through the Poincaré lemma. For any star-shaped region \(S\) and kernel \(K(\mathbf{r}-\mathbf{r}_*)\), the formula
\[
\int_S K(\mathbf r - \mathbf r_*) \rho(\mathbf r) dA = \oint_{\partial S} \left(\int_0^1 t\, K\left(t(\mathbf r - \mathbf r_*)\right) \rho\left(\mathbf r_* + t(\mathbf r - \mathbf r_*)\right) dt\right) \left((\mathbf r - \mathbf r_*) \times \boldsymbol{\tau}\right) ds
\]
replaces a 2D singular volume potential by a contour integral around the cell boundary, each coupled to a 1D quadrature in the interpolation parameter \(t\) [2203.05933]. The "star-point" \( \mathbf{r}_* \) is chosen as the cell point closest to the target \( \mathbf{r}_0 \).

## 4. Singular and Near-Singular Quadrature

Despite the conversion to boundary integrals, the \(t\)-integral can still be weakly singular. High-order accuracy is achieved by employing:
- Alpert's endpoint-corrected trapezoid rules for logarithmic or weak algebraic singularities when the target is inside the cell.
- Modified Gaussian quadrature (Kolm–Rokhlin) to resolve near-singular behavior for targets close to, but outside, the cell.

Composite Gauss–Legendre quadrature with interval refinement, especially near star-points on the boundary, supports uniform accuracy even when targets approach cell edges or vertices [2203.05933].

## 5. Local Orthogonal-Polynomial Expansions and Fast Multipole Coupling

Within each cell, the source term \( f \) is approximated by a high-order orthogonal polynomial expansion:
- On triangles, Koornwinder polynomials \( K_{nm}(\xi, \eta) \) are employed and coefficients are computed using well-conditioned Vioreanu–Rokhlin nodes.
- On boxes, tensor-product Chebyshev polynomials and nodes are used.

This expansion enables separation of smooth, far-field interactions (handled by global quadrature and fast multipole methods—FMM) from singular or near-singular local interactions (handled by precomputed local corrections). For each target,
\[
\mathcal{V}[f](\mathbf{r}_0) = \sum_{k \in \text{far}} + \sum_{k \in \text{near}} + \sum_{k = \text{self}},
\]
where “far” cell contributions are rapidly evaluated via FMM and smooth quadrature, while “near”/“self” cells invoke local high-order singular corrections. The composite approach ensures \(O(N)\) scaling with the number of degrees of freedom, with nearly all computational time concentrated in the FMM [2203.05933].

## 6. Implementation Details and Numerical Performance

The scheme is compatible with adaptive Cartesian box codes and common mesh generators. All local quadrature corrections (on reference triangles or boxes) can be precomputed and reused across the mesh. Empirical results demonstrate:
- 8th-order spatial convergence for the maximum error as mesh is refined.
- Achievable \(10^{-12}\)–\(10^{-14}\) absolute errors even in nearly touching complex geometries.
- For static geometries, over \(99\%\) of computational effort is in the FMM stage; singular and near-singular corrections are negligible in cost.

The algorithm handles both box and triangle boundary cells, achieves high-order accuracy, and maintains strict moment conservation in remapping contexts [2203.05933, 1412.4941]. 

## 7. Connections to Related Schemes and Outlook

The high-order volumetric integration method based on area-to-line conversion and orthogonal-polynomial cell expansions is particularly distinguished by:
- Compatibility with fast multipole methods for \(O(N)\) complexity.
- Uniform applicability on union-of-triangles + boxes domains, with exact adherence to adaptive, possibly curved, domain boundaries.
- Integration with standard boundary integral equation solvers for both homogeneous and inhomogeneous elliptic PDEs.

Previous approaches, including boundary plus remainder formulations for the Stokes equations [1812.00853] and physically conservative remeshing via analytic polyhedron intersection [1412.4941], emphasize exact moment preservation and accurate flux transfer. As such, these schemes form a toolkit for high-order, physically robust volumetric integration across disparate computational physics applications. Future research directions may extend these methods to 3D, dynamically adaptive meshes, or more general kernels beyond classical Green’s functions.

Source: https://www.emergentmind.com/topics/volumetric-integration-scheme