Physics-Informed TFPONet (PI-TFPONet)
- PI-TFPONet is an unsupervised operator learning framework for parametric PDE interface problems that exploits analytic local solution structures.
- It utilizes tailored finite point operators and local Green’s functions to map discontinuous coefficients and embedded interface conditions efficiently.
- Validated on 1D and 2D high-contrast problems, it achieves relative L2 errors of 10⁻³–10⁻², outperforming supervised methods without relying on labeled data.
Physics-Informed Tailored Finite Point Operator Network (PI-TFPONet) is an unsupervised operator learning architecture devised for parametric interface problems in partial differential equations (PDEs) with discontinuous coefficients and jump data across embedded interfaces. In contrast to conventional Deep Operator Networks (DeepONets), which require copious labeled (input-output) data or physics-informed DeepONets that depend on minimizing stiff PDE-residual terms, PI-TFPONet fully exploits the analytic local solution structure imposed by the governing PDE. This enables the learning of the solution operator for broad families of interface problems—such as those arising in composite media flow, electromagnetics, and material science—without necessitating any precomputed solution data while achieving provable, mesh-uniform convergence, including for singularly perturbed regimes (Du et al., 2024).
1. Problem Setting and Operator Learning Formulation
PI-TFPONet addresses second-order elliptic PDEs with piecewise-smooth coefficients and embedded interfaces. The prototypical model is:
where is partitioned by into subdomains , , are piecewise smooth, is variable data, and denotes the interface jump. The goal is operator learning: approximating the mapping for whole parametric families . Unlike supervised methods, no precomputed pairs are required. This is critical for problems where high-fidelity simulations are expensive or unavailable (Du et al., 2024).
2. Tailored Finite Point Local Operator Construction
Rather than representing globally, PI-TFPONet leverages the known local Green's function structure of the PDE on each coarse mesh cell. In 1D, on , with locally constant , the general solution is:
where are fundamental solutions (e.g., exponentials for constant or Airy functions for linearly varying coefficients), is the cell Green's function, and are coefficients. In higher dimensions, e.g., on a quadrilateral , the ansatz is:
with , and cellwise constants. The mesh size controls the local approximation. These local formulae encode all available analytic structure, sharply reducing the learning burden to only a handful of local coefficients per cell (Du et al., 2024).
3. Network Architecture
PI-TFPONet inputs a discretized representation of the problem parameters (e.g., , , ) and outputs the local solution coefficients per cell:
- 1D: A fully connected network with four layers maps the input vector to coefficients .
- 2D: A convolutional neural network encoder (4 conv layers, latent code dimension 256) processes the input and a decoder (transpose-conv + conv layers) outputs the coefficients for each cell.
No additional evaluation network is required for ; reconstruction occurs directly via the analytic local formulae parameterized by the learned coefficients. This separation between physical solution representation and network parameterization is a central innovation (Du et al., 2024).
4. Physics-Informed Unsupervised Loss Formulation
A key distinction is the absence of any bulk PDE-residual loss. Instead, PI-TFPONet enforces compatibility via the following collocation-based, unsupervised loss:
- Continuity Loss: Continuity of both and its normal derivative across all interior cell edges.
- Boundary Loss: Enforcement of the prescribed Dirichlet boundary data.
- Interface Loss: Interface jump conditions for both and the weighted normal derivative across .
Explicitly,
where (cell interfaces), (boundary), (interface points) denote the appropriate collocation sets and are weights. This loss directly enforces patchwise solution compatibility, eliminating the need to backpropagate through stiff volumetric PDE terms (Du et al., 2024).
5. Theoretical Analysis and Uniform Convergence
Letting denote the reconstructed solution given input , it holds that
The main theorem guarantees that if the mesh size is small and the loss is minimized, then:
for a constant independent of . For singularly perturbed problems of the form (with ) the bound holds in an -weighted norm with independent of . The proof leverages stability estimates for interface problems and quantifies the contribution of both volumetric discretization and interface mismatch residuals (Du et al., 2024).
6. Numerical Validation and Benchmarking
PI-TFPONet was validated on five challenging classes of interface problems:
- 1D smooth interface,
- 1D singular perturbation (small ),
- 1D high-contrast jumps,
- 2D interface,
- 2D singular perturbation.
Comparison was made against supervised DeepONet, supervised IONet (interface-aware DeepONet), and their respective physics-informed variants. Key empirical findings include:
- For thin boundary layers and high-contrast coefficients, PI-TFPONet achieved relative errors of –, outperforming all baselines—including those trained with dense supervision.
- On smooth interface problems, accuracy matched supervised IONet and significantly surpassed vanilla DeepONet or physics-informed DeepONet.
- The network was trained on coarse meshes (32×1 in 1D, 16×16 in 2D), yet generalized robustly to fine-grid (256×1, 128×128) evaluations.
- No labeled data were used at any stage.
A summary table from (Du et al., 2024):
| Problem class | PI-TFPONet error | Best baseline error |
|---|---|---|
| 1D singularly perturbed | – | – |
| 1D high-contrast interface | – | – |
| 2D interface | Comparable | Comparable |
This demonstrates both accuracy and mesh-robust generalization, with the added benefit of label-free, unsupervised operator learning (Du et al., 2024).
7. Contextual Comparison and Innovations
PI-TFPONet diverges fundamentally from prevailing physics-informed operator learning strategies such as PI-DeepONet (Li et al., 18 Aug 2025, Yu et al., 11 Aug 2025), which include the bulk PDE residual in the loss and may suffer from poor conditioning due to stiffness arising from singular perturbations or sharp coefficient jumps. By encoding all analytic solution structure before the network and focusing the loss on glueing local patches and enforcing interface/boundary conditions, PI-TFPONet avoids this pathology and can guarantee mesh-uniform, label-free learning.
The architecture highlights a paradigm shift: analytic locality and physics structure inform the network’s parameterization and training objectives at the outset, reducing the dimension of the learning space and tightly coupling the numerical and machine learning perspectives. This approach is especially beneficial for parametric interface problems where classical label acquisition is computationally prohibitive.
In summary, PI-TFPONet provides a rigorously analyzed, robust, and highly accurate unsupervised operator learning framework for parametric PDEs with interfaces, demonstrating superiority over current data-driven and physics-informed operator networks on challenging interface benchmarks (Du et al., 2024).