Overview
This post (from Zhichai AI Lab) introduces MeshFT-Net, the neural implementation of MeshFT (Mesh Field Theory), from the paper:
> Mesh Field Theory: Port-Hamiltonian Formulation of Mesh-Based Physics > Authors: Satoshi Noguchi, Yoshinobu Kawahara > arXiv: 2605.00394 | 2026-04-29
The Problem: AI That Forgot Conservation Laws
Neural networks used for physics simulation can predict the next state of a system, but:
- Energy is not conserved
- Momentum is not conserved
- Long-term simulations diverge
- Automatically guarantees energy conservation
- Unifies many physical domains (mechanics, electromagnetics, thermodynamics)
- Treats energy as central, with energy flow through "ports"
- Models dissipation explicitly
- Physical correctness — conservation laws hold automatically; long-term stability; trustworthiness for critical applications.
- Better generalization — the model learns physical structure, not just data.
- Interpretability — network behavior maps to physical quantities like energy flow and dissipation.
The root cause: standard networks don't know physical laws—they only learn approximations from data, with no built-in conservation constraints.
The Port-Hamiltonian Framework
Port-Hamiltonian systems provide a mathematical framework for describing physical systems that:
This explicit mathematical structure can be embedded into neural networks to ensure physical correctness and long-term stability.
Mesh Field Theory: Topology–Metric Separation
Core idea: separate the *topological* structure of physics from the *metric* structure—let the network learn the metric part while keeping the topology intact.
Key components:
1. Structure preservation — locality (neighborhood-only dependence), permutation equivariance (node order doesn't matter), direction covariance, and energy balance/dissipation inequalities. 2. Topology–metric separation — topology is fixed by physics; the metric structure is data-driven and learnable. 3. Reduction theorem — under certain conditions, high-dimensional systems can be reduced, lowering computational complexity while preserving structure. 4. Neural implementation (MeshFT-Net) — a graph neural network architecture that propagates physical quantities on meshes with structure-preserving computation.
Analogy: a traditional network paints a landscape that merely *looks* right; MeshFT-Net paints it with correct perspective and lighting laws—both beautiful and true.
Why Structure Preservation Matters
Without it: energy drift causes divergence, predictions violate physics, long-term simulation is impossible, and models memorize rather than generalize.
With it:
Takeaway: Physical Laws as Grammar
Echoing the physics-informed neural network (PINN) philosophy: physical laws are not obstacles but prior knowledge. Embedding them yields better generalization with less training data. As the post puts it:
> "Neural networks can learn any function, but if they violate physical laws, the learned function is infeasible in the physical world. MeshFT-Net's insight: treat physical law as the network's grammar—not a limit on creativity, but a guarantee that what is created is physically possible."
Questions to ask in your own scientific AI projects: 1. Does my model obey physical conservation laws? 2. Would structure preservation improve long-term stability? 3. Could topology–metric separation make learning more efficient? 4. Is the Port-Hamiltonian framework applicable to my physical system?
> The highest goal of scientific AI is not to fit data, but to respect physics. In physics, the correct structure matters more than precise fitting.