Papers
Topics
Authors
Recent
Search
2000 character limit reached

B-NAVEM: Neural VEM for Polygon Meshes

Updated 21 January 2026
  • B-NAVEM is a neural-based extension of NAVEM that constructs local basis functions with exact inter-element continuity and approximate interior harmonicity.
  • It employs a PINN strategy with a boundary-correction operator to achieve precise polynomial traces on mesh boundaries while relaxing interior harmonicity constraints.
  • Numerical experiments demonstrate competitive convergence rates for smooth PDE problems despite increased training time and memory compared to traditional P-NAVEM.

B-NAVEM is a globally continuous neural-based extension of the Neural Approximated Virtual Element Method (NAVEM) for polygonal mesh discretization in partial differential equations. Distinct from classical VEM and other NAVEM variants, B-NAVEM employs a Physics-Informed Neural Network (PINN) strategy to construct local basis functions that ensure exact continuity across mesh elements, while approximately satisfying harmonicity within each element interior. This architecture makes B-NAVEM suitable for problems requiring both accurate representation of solution spaces and robust inter-element conformality (Berrone et al., 14 Jan 2026).

1. Conceptual Foundations and NAVEM Context

B-NAVEM belongs to the NAVEM family of neural-based discretizations aiming to replicate and enhance the properties of Virtual Element Methods on generic polygonal (and possibly polyhedral) meshes. Traditional NAVEM (also referred to as H-NAVEM) explicitly constructs basis functions as harmonic combinations, enforcing exact Δv=0\Delta v=0 (harmonicity) within each element (Property (i)), with polynomial edge trace only approximately realized via a loss function (Property (ii)). B-NAVEM innovates by enforcing exact continuity and polynomial trace across element boundaries via a boundary-correction operator, while relaxing the interior harmonicity constraint to be achieved only approximately via a PINN loss, thereby advancing both mesh conformity and solution space expressivity (Berrone et al., 14 Jan 2026).

2. Mathematical Formulation

Given a polygon EE with NEvN_E^v vertices {vj}j=1NEv\{\mathbf v_j\}_{j=1}^{N_E^v}, the construction proceeds as follows:

  • The boundary data interpolant is defined by

ψj,E(x)=∑i=1NEvωi,E(x)ψi,j,E(x)\psi_{j,E}(\mathbf x) = \sum_{i=1}^{N_E^v} \omega_{i,E}(\mathbf x) \psi_{i,j,E}(\mathbf x)

such that ψj,E=φj,E\psi_{j,E}=\varphi_{j,E} on ∂E\partial E and ψi,j,E(vk)=δjk\psi_{i,j,E}(\mathbf v_k)=\delta_{jk}.

  • A bubble function ψE0(x)\psi_E^0(\mathbf x), vanishing on ∂E\partial E, is constructed.
  • The boundary-enforcing operator is

(Bj,Ev)(x)=ψE0(x)v(x)+ψj,E(x)(\mathcal B_{j,E} v)(\mathbf x) = \psi_E^0(\mathbf x) v(\mathbf x) + \psi_{j,E}(\mathbf x)

  • For any scalar neural network output N(x)N(\mathbf x), the local B-NAVEM basis is defined by

$\varphi_{j,E}^{\NAPEM}(\mathbf x) = \psi_E^0(\mathbf x) N(\mathbf x) + \psi_{j,E}(\mathbf x)$

Exact edge continuity is achieved by construction. Harmonicity in the interior is enforced in the loss function:

$L_{\rm harm}(E) = \lVert \Delta \varphi_{j,E}^{\NAPEM} \rVert_{L^2(E)}$

over all sampled (E,j,xn)(E, j, \mathbf x_n), driving the basis towards Δv=0\Delta v = 0 within EE, but not necessarily reaching exactness.

3. Neural Network Architecture and Training Protocol

B-NAVEM employs a multilayer feed-forward neural network, typically with L=4L=4 hidden layers and width 40 (for pentagons and hexagons, reduced for memory efficiency compared to P-NAVEM). The input encoding consists of the coordinate x∈E\mathbf x \in E, the vertex data, and the basis index jj. The scalar output is mapped via the boundary operator Bj,E\mathcal{B}_{j,E}. Training utilizes a PINN paradigm: each polygon EE is tessellated, and on each triangle, O(100)O(100) interior points are sampled. The loss includes both boundary property terms and the harmonicity residual. Precomputation of interpolation functions and gradients for efficiency is standard (Berrone et al., 14 Jan 2026).

Optimization typically proceeds with 2,000 Adam steps (decaying learning rate 10−2→10−310^{-2} \to 10^{-3}), followed by up to 10,000 BFGS quasi-Newton iterations. B-NAVEM's training incurs higher computational expense than P-NAVEM due to the requirement of second derivatives (Laplacian) in its PINN loss.

4. Inter-Element Continuity and Polynomial Trace

B-NAVEM guarantees exact continuity of its basis functions across mesh elements. On each shared edge e=(vi,vi+1)e = (\mathbf v_i, \mathbf v_{i+1}), the boundary interpolant ψj,E∣e\psi_{j,E}|_e coincides with the VEM trace of the global Lagrange basis and is unambiguously shared between adjacent polygons:

$\varphi_{j,E}^{\NAPEM}|_e = \psi_{j,E}|_e = \varphi_{j,E}|_e$

No extra constraints, interface degrees of freedom, or post-processing for conformity are necessary. Polynomial reproduction, while present via enforced boundary traces, is not exact for arbitrary polynomials throughout the element, distinguishing B-NAVEM from P-NAVEM (Berrone et al., 14 Jan 2026).

5. Computational Performance and Comparison

In numerical experiments on Voronoi and convex-concave quadrilateral mesh families, B-NAVEM demonstrates competitive convergence rates. It matches VEM in yielding O(h2)\mathcal O(h^2) L2L^2 and O(h)\mathcal O(h) H1H^1-seminorm errors for smooth diffusion-advection-reaction problems, with error constants close to those of P-NAVEM (P-NAVEM often achieves strictly better constants, especially on concave meshes). Online assembly and solution times are similar to P-NAVEM; however, training time for B-NAVEM is up to eight times longer due to the computational cost of harmonicity enforcement.

Memory usage is higher for B-NAVEM when the number of polygon classes and network size increases, occasionally necessitating network parameter reduction for larger mesh elements (e.g., pentagons/hexagons). A plausible implication is that B-NAVEM’s PINN-based strategy scales less efficiently with growing mesh complexity compared to polynomial-based losses.

6. Advantages, Limitations, and Research Outlook

B-NAVEM’s primary advantage is the robust enforcement of exact inter-element continuity and boundary polynomial trace, achieved with a single neural model per polygon class. Approximating harmonicity throughout the element supports solution regularity and preserves key VEM-like discretization properties. However, the lack of exact polynomial reproduction in the interior may slightly impact convergence constants for certain PDE problems, as seen in direct comparisons with P-NAVEM.

A plausible implication is that B-NAVEM is best suited for scenarios prioritizing mesh conformity and harmonic behavior over interior polynomial exactness. Use cases include domains where Laplacian regularity is essential and highly nonstandard polygonal meshes arise. The demonstrated computational tradeoffs highlight directions for future work in loss-function design and network architecture optimization for even larger mesh families (Berrone et al., 14 Jan 2026).

Definition Search Book Streamline Icon: https://streamlinehq.com
References (1)

Topic to Video (Beta)

No one has generated a video about this topic yet.

Whiteboard

No one has generated a whiteboard explanation for this topic yet.

Follow Topic

Get notified by email when new papers are published related to B-NAVEM.