Papers
Topics
Authors
Recent
Search
2000 character limit reached

Physics-Informed DeepONet

Updated 1 March 2026
  • Physics-Informed DeepONet is a neural operator architecture that incorporates PDE constraints as soft or hard penalties in the loss function to learn mappings between infinite-dimensional spaces.
  • It utilizes a branch-trunk network design to approximate operators, enabling rapid, generalizable predictions without requiring paired training data.
  • By embedding physical laws in its loss formulation, the method achieves high accuracy and efficiency for solving nonlinear PDEs in scientific and engineering applications.

Physics-Informed DeepONet

Physics-Informed Deep Operator Networks (PI-DeepONets) are a class of neural operator architectures that embed known physical laws within the DeepONet framework to approximate nonlinear solution operators of parametric partial differential equations (PDEs) without requiring paired training data. By explicitly incorporating the underlying PDE constraints as a soft or hard penalty in the loss function, PI-DeepONets can learn mappings between infinite-dimensional Banach spaces with strong generalization to new input conditions and enforce physical consistency in their predictions. This approach is particularly suitable for scientific and engineering problems where solution gradients, boundary behaviors, and operator family parameterizations are difficult to capture via conventional data-driven machine learning models.

1. Operator Learning Framework and Network Architecture

In PI-DeepONet, the objective is to approximate a solution operator

G:g(τ,x)↦φ(τ,x)G: g(\tau, x) \mapsto \varphi(\tau, x)

where φ(τ,x)\varphi(\tau, x) satisfies a nonlinear parabolic PDE,

F(g,φ)=∂τφ(τ,x)−∂x2[α(φ(τ,x))]−g(τ,x)=0,\mathcal{F}(g, \varphi) = \partial_\tau \varphi(\tau, x) - \partial_x^2[\alpha(\varphi(\tau, x))] - g(\tau, x) = 0,

with homogeneous initial and boundary conditions

φ(0,x)=0,x∈[−L,L];φ(τ,±L)=0,τ∈[0,T].\varphi(0, x) = 0, \quad x \in [-L, L]; \qquad \varphi(\tau, \pm L) = 0, \quad \tau \in [0, T].

The function g(τ,x)g(\tau, x) is a parametrized source, and α\alpha is a prescribed nonlinear diffusion function.

The PI-DeepONet employs the standard DeepONet architecture:

  • Branch net BθB\mathcal{B}_{\theta_{\mathcal{B}}}: Input is the vector of source-term values g(x~i)g(\tilde{x}_i) at mm fixed sensor points; output is a qq-dimensional latent embedding.
  • Trunk net TθT\mathcal{T}_{\theta_{\mathcal{T}}}: Input is the query spatio-temporal location y=(Ï„,x)y = (\tau, x); output is a qq-dimensional latent embedding.
  • The operator approximation is the inner product: Gθ(g)(y)=BθB(g(x~1),…,g(x~m))â‹…TθT(y).G_\theta(g)(y) = \mathcal{B}_{\theta_{\mathcal{B}}}(g(\tilde{x}_1), \ldots, g(\tilde{x}_m)) \cdot \mathcal{T}_{\theta_{\mathcal{T}}}(y). Experimental configurations typically utilize m=100m = 100 branch sensors, both nets as fully connected MLPs with ReLU activations, and 2-dimensional trunk inputs (Ï„,x)(\tau, x) (Sevcovic et al., 2023).

2. Physics-Informed Loss Formulation

Instead of conventional supervised losses relying on paired (g,φ)(g, \varphi) training data, PI-DeepONet training enforces the PDE physics and boundary/initial conditions through a composite loss: L(θ)=LPhysics(θ)+LOperator(θ)\mathcal{L}(\theta) = \mathcal{L}_{\text{Physics}}(\theta) + \mathcal{L}_{\text{Operator}}(\theta) where:

  • Physics loss

LPhysics(θ)=1NQ∑i=1N∑j=1Q∣Rθi(yr,ji)−gi(yr,ji)∣2,\mathcal{L}_{\text{Physics}}(\theta) = \frac{1}{NQ} \sum_{i=1}^{N} \sum_{j=1}^{Q} \left| R^i_\theta(y_{r, j}^{i}) - g^{i}(y_{r, j}^{i}) \right|^2,

with

Rθi(y)=∂τGθ(gi)(y)−∂x2[α(Gθ(gi)(y))].R^i_\theta(y) = \partial_\tau G_\theta(g^i)(y) - \partial_x^2[\alpha(G_\theta(g^i)(y))].

Here, yr,jiy_{r, j}^{i} are collocation points inside the domain.

  • Operator loss (enforcing initial and boundary conditions)

LOperator(θ)=1NP∑i=1N∑k=1P∣Gθ(gi)(yg,ki)∣2,\mathcal{L}_{\text{Operator}}(\theta) = \frac{1}{NP} \sum_{i=1}^N \sum_{k=1}^P |G_\theta(g^i)(y_{g, k}^{i})|^2,

where yg,kiy_{g, k}^{i} are on the domain boundary or initial slice.

Automatic differentiation is leveraged to compute all necessary partial derivatives directly through the neural network representations (Sevcovic et al., 2023, Wang et al., 2021).

3. Data Generation, Training Strategies, and Hyperparameters

PI-DeepONet training leverages a sampled family of input source functions {gi}\{g^i\}, typically drawn from zero-mean Gaussian processes with a specified kernel (e.g., squared-exponential, â„“=0.2\ell = 0.2), evaluated at discrete sensor locations. For each source realization:

  • N=500N = 500 input functions,
  • P=100P = 100 boundary/initial sensor points,
  • Q=100Q = 100 uniformly sampled interior collocation points.

There is no dependency on labeled solution data in the interior: the only labels are zero initial and boundary values. The network is trained using Adam with a learning rate 10−310^{-3}, up to 10,000 full-batch gradient steps, until the loss stabilizes (Sevcovic et al., 2023). This structure allows efficient enforcement of the underlying physics without requiring extensive paired datasets (Wang et al., 2021).

4. Performance Metrics and Generalization

The evaluation of PI-DeepONet centers on the L2L^2 norm difference between predicted solutions and reference finite-difference (FDM) or standard numerical solutions:

  • On held-out test sources, PI-DeepONet attains relative L2L^2 errors of 10−3…10−210^{-3} \ldots 10^{-2}, reproducing even highly transient features with close correspondence to FDM results, and with drastically reduced runtime (fractions of a second vs. many seconds for FDM).
  • PI-DeepONet demonstrates "amortized" prediction: the trained network generalizes to previously unseen gg without need for retraining or additional labels.
  • These empirical results confirm strong operator-learning and out-of-distribution generalization, enabling rapid and robust solution queries for new parameters (Sevcovic et al., 2023, Wang et al., 2021).

5. Advantages, Limitations, and Extensions

The table below summarizes the core contributions, strengths, limitations, and suggested extensions of PI-DeepONet as articulated in (Sevcovic et al., 2023):

Aspect Main Points
Contribution First PI-DeepONet for fully nonlinear parabolic PDE from stochastic control; demonstrates single-network operator inference
Strengths No need for labeled (g,φ)(g,\varphi) pairs; strong physical regularization; fast inference for new gg
Limitations Accuracy depends on sensor placement and collocation strategy; nonlinear PDE error bounds remain empirical; architecture tuning is problem-specific
Key Extensions Non-homogeneous/complex BC and IC; alternative nonlinearities α\alpha; higher spatial dimensions; hybrid supervised+PI training; adaptive collocation

PI-DeepONet can be adapted to wide classes of nonlinear and higher-dimensional PDEs, as well as in hybrid regimes combining a small set of supervised training samples with physics-based physical loss terms (Sevcovic et al., 2023, Wang et al., 2021).

6. Relationship to Broader Operator Learning and Scientific ML

PI-DeepONet is situated at the intersection of operator learning and physics-informed machine learning, offering:

  • "Operator amortization": once trained, the solver rapidly produces solutions for arbitrary parameterizations gg, solving entire families of PDEs with minimal additional computation (Wang et al., 2021).
  • Data efficiency: even in the extreme case of zero interior solution data, physics-informed regularization yields errors 1–2 orders of magnitude lower (in some benchmarks) than purely data-driven DeepONets, and requires an order of magnitude fewer training samples for comparable accuracy.
  • Extensibility: the approach accommodates boundary and initial condition enforcement, complex nonlinearities, and blends with traditional numerical and scientific computing methodologies for improved robustness and fidelity (Wang et al., 2021).

7. Outlook and Future Work

Open research directions include rigorous a priori error estimation for nonlinear operators, dynamic or learnable sensor/collocation schemes, integration with adaptive curriculum learning strategies, and application to higher-dimensional or multiphysics problems (e.g., stochastic control, fluid-structure interaction). Empirical observations indicate substantial potential for hybrid strategies, using small amounts of labeled data to further enhance accuracy and transferability of physics-informed operator networks (Sevcovic et al., 2023, Wang et al., 2021).

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 Physics-Informed DeepONet.