Papers
Topics
Authors
Recent
Search
2000 character limit reached

Geometry-Parameterized Dual-Encoder PINN

Updated 17 January 2026
  • The paper introduces GP-DE-PINN, a novel framework that separates geometric and physical encodings to accurately reconstruct unsteady flow fields and infer pressure without direct supervision.
  • It employs dual-encoder networks that independently process shape parameters and spatiotemporal coordinates before fusing them to enforce incompressible Navier–Stokes physics.
  • Quantitative results show up to 60% error reduction on unseen geometries, demonstrating robust generalization and efficiency in handling PDE-constrained problems.

The Geometry-Parameterized Dual-Encoder Physics-Informed Neural Network (GP-DE-PINN) is a neural-operator framework designed for rapid, mesh-free prediction of physical fields in domains with parameterized geometric complexity. By explicitly separating the geometric parameterization from local physical encoding, GP-DE-PINN provides an expressive surrogate model for unsteady flow (and related PDE-constrained problems) on families of shapes, enabling accurate reconstruction, pressure inference, and robust generalization capabilities. This architecture is an overview of recent advances in dual-encoder PINNs, geometry-aware neural networks, and neural-operator training on transformed domains (Wang et al., 10 Jan 2026, Burbulla, 2023, Nguyen et al., 2024).

1. Architectural Foundation

GP-DE-PINN implements a dual-encoder scheme in which geometric parameters and spatiotemporal coordinates are independently mapped to high-dimensional latent codes and subsequently fused before decoding into field predictions. Formally, the geometric encoder gθpg_{\theta_p} receives the shape parameter vector d∈Rm\mathbf d \in \mathbb R^m (e.g., sampled boundary radii) and outputs a latent code hgp∈RNp\mathbf h_{gp} \in \mathbb R^{N_p}. The spatiotemporal encoder gθcg_{\theta_c} processes the physical coordinate x=(x,y,t)\mathbf x = (x, y, t), generating hcoord∈RNc\mathbf h_{coord} \in \mathbb R^{N_c}. Concatenating these vectors yields hconcat=[hcoord∥hgp]\mathbf h_{concat} = [\mathbf h_{coord} \Vert \mathbf h_{gp}], which the manifold decoder gθng_{\theta_n} maps to predicted fields [u^,v^,p^]T[\hat u, \hat v, \hat p]^T.

The architectural breakdown:

Encoder Input Type Output
Geometry (gθpg_{\theta_p}) Shape parameters d∈Rm\mathbf d \in \mathbb R^m0 Latent d∈Rm\mathbf d \in \mathbb R^m1
Spatiotemporal (d∈Rm\mathbf d \in \mathbb R^m2) Coordinates d∈Rm\mathbf d \in \mathbb R^m3 Latent d∈Rm\mathbf d \in \mathbb R^m4
Decoder (d∈Rm\mathbf d \in \mathbb R^m5) Fused code d∈Rm\mathbf d \in \mathbb R^m6 Field output d∈Rm\mathbf d \in \mathbb R^m7

This architecture enables disentanglement of geometric and physical latent spaces, avoiding the direct concatenation pitfalls of earlier geometry-aware PINNs (Wang et al., 10 Jan 2026, Nguyen et al., 2024).

2. Governing Equations and Physics-Informed Loss

GP-DE-PINN enforces the dimensionless incompressible Navier–Stokes equations:

d∈Rm\mathbf d \in \mathbb R^m8

d∈Rm\mathbf d \in \mathbb R^m9

Boundary conditions, including no-slip on obstacles, uniform inlet, and zero-traction outflow, are imposed. Loss function components consist of:

  • hgp∈RNp\mathbf h_{gp} \in \mathbb R^{N_p}0: aggregate PDE residual over hgp∈RNp\mathbf h_{gp} \in \mathbb R^{N_p}1 collocation points,
  • hgp∈RNp\mathbf h_{gp} \in \mathbb R^{N_p}2: boundary condition penalty across hgp∈RNp\mathbf h_{gp} \in \mathbb R^{N_p}3 sampled locations,
  • hgp∈RNp\mathbf h_{gp} \in \mathbb R^{N_p}4: data mismatch over hgp∈RNp\mathbf h_{gp} \in \mathbb R^{N_p}5 empirical or benchmarked samples.

Total physics-informed loss:

hgp∈RNp\mathbf h_{gp} \in \mathbb R^{N_p}6

with equal weights (hgp∈RNp\mathbf h_{gp} \in \mathbb R^{N_p}7).

By strictly enforcing these constraints, GP-DE-PINN is capable of inferring pressure fields without explicit pressure supervision (Wang et al., 10 Jan 2026).

3. Geometry Parameterization

Geometries are encoded as low-dimensional parameter vectors, for instance, petal-shaped cylinder boundaries defined by inner radius hgp∈RNp\mathbf h_{gp} \in \mathbb R^{N_p}8, petal count hgp∈RNp\mathbf h_{gp} \in \mathbb R^{N_p}9, and outer radius gθcg_{\theta_c}0. The boundary is constructed by B-spline interpolation and rotational duplication, yielding a sampling vector:

gθcg_{\theta_c}1

where gθcg_{\theta_c}2 is the azimuthal interval. This parametric representation is generalizable to point-cloud, binary image, or principal component encodings as in GADEM and other geometry-aware neural operator frameworks (Nguyen et al., 2024). The encoder architecture can ingest raw parameters, principal component projections, or variationally encoded boundary representations.

4. Training and Implementation Protocol

GP-DE-PINN employs fully connected feed-forward networks for all encoders and the decoder:

  • gθcg_{\theta_c}3: 4 layers, 250 neurons each, gθcg_{\theta_c}4 activation,
  • gθcg_{\theta_c}5: 3 layers, 50 neurons each, gθcg_{\theta_c}6 activation,
  • gθcg_{\theta_c}7: 5 layers, 100 neurons each, gθcg_{\theta_c}8 activation with linear output,
  • Weights initialized by Xavier normal, biases set to zero.

Sampling protocol:

  • gθcg_{\theta_c}9 collocation points per geometry across 40 training shapes, totaling 80,000,
  • Boundary sets: 5,000 points on each cylinder surface, inlet, and initial time,
  • 80,000 velocity samples for empirical loss.

Optimization utilizes full-batch L-BFGS over 50,000 iterations, with fixed loss weights. This regimen facilitates convergence of both geometric and physical latents, robustly enforcing physics constraints (Wang et al., 10 Jan 2026, Burbulla, 2023).

5. Quantitative Evaluation, Generalization, and Sensitivity

Empirical assessment demonstrates GP-DE-PINN's superiority relative to direct-concatenation geometry-aware PINNs:

  • On training cases: GP-DE-PINN achieves x=(x,y,t)\mathbf x = (x, y, t)0–RMSE x=(x,y,t)\mathbf x = (x, y, t)1–x=(x,y,t)\mathbf x = (x, y, t)2, x=(x,y,t)\mathbf x = (x, y, t)3–RMSE x=(x,y,t)\mathbf x = (x, y, t)4–x=(x,y,t)\mathbf x = (x, y, t)5 (vs. x=(x,y,t)\mathbf x = (x, y, t)6 in GP-PINN); x=(x,y,t)\mathbf x = (x, y, t)7 mean relative error (MRE) drops from x=(x,y,t)\mathbf x = (x, y, t)8 to x=(x,y,t)\mathbf x = (x, y, t)9.
  • For unseen geometries (hcoord∈RNc\mathbf h_{coord} \in \mathbb R^{N_c}0 mm, hcoord∈RNc\mathbf h_{coord} \in \mathbb R^{N_c}1–hcoord∈RNc\mathbf h_{coord} \in \mathbb R^{N_c}2), hcoord∈RNc\mathbf h_{coord} \in \mathbb R^{N_c}3–MRE improves from hcoord∈RNc\mathbf h_{coord} \in \mathbb R^{N_c}4–hcoord∈RNc\mathbf h_{coord} \in \mathbb R^{N_c}5 (GP-PINN) to hcoord∈RNc\mathbf h_{coord} \in \mathbb R^{N_c}6–hcoord∈RNc\mathbf h_{coord} \in \mathbb R^{N_c}7 (GP-DE-PINN), hcoord∈RNc\mathbf h_{coord} \in \mathbb R^{N_c}8–MRE from hcoord∈RNc\mathbf h_{coord} \in \mathbb R^{N_c}9–hconcat=[hcoord∥hgp]\mathbf h_{concat} = [\mathbf h_{coord} \Vert \mathbf h_{gp}]0 down to hconcat=[hcoord∥hgp]\mathbf h_{concat} = [\mathbf h_{coord} \Vert \mathbf h_{gp}]1–hconcat=[hcoord∥hgp]\mathbf h_{concat} = [\mathbf h_{coord} \Vert \mathbf h_{gp}]2.
  • GP-DE-PINN sharply reconstructs velocity fields and Kármán vortex streets, retains pressure gradient accuracy, and matches high-variance physical lobes in standard deviation maps.
  • Pressure field hconcat=[hcoord∥hgp]\mathbf h_{concat} = [\mathbf h_{coord} \Vert \mathbf h_{gp}]3 is correctly inferred, despite the absence of direct pressure data in training.

Sensitivity analyses show:

Hyperparameter Range Impact on MRE Robustness
Geometric sampling hconcat=[hcoord∥hgp]\mathbf h_{concat} = [\mathbf h_{coord} \Vert \mathbf h_{gp}]4 hconcat=[hcoord∥hgp]\mathbf h_{concat} = [\mathbf h_{coord} \Vert \mathbf h_{gp}]5–hconcat=[hcoord∥hgp]\mathbf h_{concat} = [\mathbf h_{coord} \Vert \mathbf h_{gp}]6 MRE stable hconcat=[hcoord∥hgp]\mathbf h_{concat} = [\mathbf h_{coord} \Vert \mathbf h_{gp}]7, sharp rise at hconcat=[hcoord∥hgp]\mathbf h_{concat} = [\mathbf h_{coord} \Vert \mathbf h_{gp}]8 Plateau then degrade
Encoder width hconcat=[hcoord∥hgp]\mathbf h_{concat} = [\mathbf h_{coord} \Vert \mathbf h_{gp}]9 gθng_{\theta_n}0, gθng_{\theta_n}1, gθng_{\theta_n}2 Best at gθng_{\theta_n}3 (gθng_{\theta_n}4, gθng_{\theta_n}5 MRE) U-shaped error trend

Generalization analysis confirms consistent gθng_{\theta_n}6 error reduction over GP-PINN for both gθng_{\theta_n}7 and gθng_{\theta_n}8 on excluded test geometries (Wang et al., 10 Jan 2026, Nguyen et al., 2024).

6. Connections to Dual-Encoder PINNs and Geometry-Aware Frameworks

GP-DE-PINN is consistent with recent neural-operator and geometry-transformation PINN doctrines. In (Burbulla, 2023), the authors introduce a diffeomorphism gθng_{\theta_n}9 that transfers geometric complexity into a reference domain, enabling standard PINN training while allowing geometric parameter variation and optimization. This construction naturally extends to a dual-encoder architecture where a geometry encoder extracts latent codes (possibly via MLP, PCA, or VAE), and a physics encoder processes local coordinates.

Similarly, in (Nguyen et al., 2024), geometry encoders map boundary point-clouds, parameters, or images to latent vectors, which are injected into energy-minimizing neural architectures. These frameworks demonstrate that parametric and latent geometry injection provide systematic generalization to unseen shapes, supporting rapid evaluation and physics-consistent predictions across a design space.

A plausible implication is that GP-DE-PINN architectures, equipped with flexible geometry encoders and physics-constrained loss functions, may be extended to a range of PDE-governed phenomena where shape variability drives solution diversity.

7. Significance, Limitations, and Outlook

GP-DE-PINN establishes a mesh-free, modular paradigm for high-fidelity flow field reconstruction, pressure estimation, and neural operator generalization over families of parameterized obstacles. The dual-encoder structure is robust against moderate changes in geometric sampling and encoder width. Direct applications span unsteady fluid mechanics, solid mechanics (with weak form extension), and multi-field physics on alternating domains.

Limitations noted in the data include:

  • Sensitivity to extreme geometric sparsity ([u^,v^,p^]T[\hat u, \hat v, \hat p]^T0),
  • Slight accuracy degradation for over/under-parameterized geometry encoders.

The method is poised for integration with shape optimization, operator learning, and non-local geometric effects, as previously sketched in diffeomorphism PINNs and geometry-aware deep energy methods (Burbulla, 2023, Nguyen et al., 2024). The separation of geometric and physical encoding, together with strict physics constraints, marks GP-DE-PINN as a robust computational surrogate for parametric engineering and scientific modeling.

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 Geometry-Parameterized Dual-Encoder Physics-Informed Neural Network (GP-DE-PINN).