REVIEW 3 major objections 5 minor 24 references
A hybrid of Attention U-Net on an SDF grid and a K-hop GNN predicts fluid fields on complex car and airfoil meshes more accurately than pure graph or transformer solvers.
Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →
T0 review · grok-4.5
2026-07-14 03:57 UTC pith:AUOTHTKD
load-bearing objection Solid hybrid that posts useful SOTA numbers on three CFD surrogates; the gains over Transolver are real but thin and not yet variance-checked. the 3 major comments →
A multi-scale feature enhanced graph neural network for fluid dynamics prediction in complex geometries
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
Combining an Attention U-Net that sees a uniform SDF background grid with a node-based Finite-Volume Graph Network that sees K-hop subgraphs of the original mesh yields state-of-the-art relative L2 and MSE numbers for velocity and surface pressure on ShapeNet-Car, AirfRANS and DrivAerNet, outperforming pure GNN, pure operator and pure transformer baselines.
What carries the argument
ME-GNN: Attention U-Net features on a Cartesian SDF grid are bilinearly interpolated onto K-hop-sampled mesh nodes and concatenated with FVGN node/edge features before a shared MLP decoder.
Load-bearing premise
A fixed K-hop radius of five, together with bilinear interpolation from a fixed-resolution SDF U-Net, is enough to keep local mesh topology and multi-scale context for every geometry and mesh density tested.
What would settle it
Train and evaluate the identical architecture with the same sampling budget but replace K-hop edges by radius-graph or kNN edges of equal degree; if surface-pressure and volume errors remain within a few percent of the reported numbers, the claim that original-mesh topology is essential collapses.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes ME-GNN, a hybrid architecture for supervised fluid-dynamics prediction on complex geometries. It combines (i) a node-based Finite Volume Graph Network (FVGN) that performs two-step message passing on K-hop subgraphs of the original CFD mesh and (ii) an Attention U-Net that processes a uniform SDF background grid; the two feature streams are fused by bilinear interpolation and a small MLP decoder. The method is evaluated on three public benchmarks (ShapeNet-Car, AirfRANS, DrivAerNet) and reports state-of-the-art relative L2 / normalized MSE numbers that improve on Transolver, GINO, MGN and related baselines. Ablations examine sampling strategy (K-hop vs random+kNN/radius), hop size, hidden width, grid resolution and the node/edge blocks of FVGN, together with a linear-complexity efficiency comparison.
Significance. If the reported gains hold under matched re-implementation, the work supplies a practical, linear-complexity recipe that lets mesh-based GNNs retain local topology while recovering multi-scale context via a cheap SDF U-Net. The combination of K-hop sampling, a memory-efficient directed-edge FVGN variant, and Attention Skip Connections is concrete engineering that is immediately usable for industrial surface-pressure and volume-field surrogates. The three-benchmark evaluation and the sampling ablations (especially Table 4 and Fig. 8) are valuable even if the absolute ranking versus Transolver is later revised.
major comments (3)
- Abstract and Tables 2–3 claim SOTA over Transolver, yet the margins are small (ShapeNet-Car Vol 1.96 vs 2.07; DrivAerNet Surf 0.1416 vs 0.1441) and the paper states that “baseline results are from Transolver [23]”. No multi-seed statistics, error bars, or independent re-runs of Transolver under the authors’ own optimizer, sampling schedule and hardware appear. Because point-based methods were allowed to report the best of several random-point counts while graph methods used a single fixed K-hop schedule, the ranking is not yet statistically secured and could reverse under modest variance. A matched re-implementation (or at least three seeds with standard deviations) is required before the SOTA claim can be accepted at face value.
- Section 3.2 and the decoding paragraph assert that bilinear/trilinear interpolation of U-Net latent features onto irregular mesh nodes is a sufficient fusion mechanism. No ablation isolates this choice (e.g., nearest-neighbour, learned query, or attention-based fusion). Given that the hybrid’s advantage over pure ASC-U-Net is largest precisely on the dense-boundary-layer AirfRANS case (Table 2), the interpolation step is load-bearing for the multi-scale claim and should be stress-tested.
- Section 4.2 and Table 4 fix k=5 and a single subgraph budget for all graph methods. Fig. 8 shows that surface error is sensitive to k, yet the main tables never report the corresponding Transolver numbers under an identical point budget and random-seed protocol. Without that matched comparison the claim that “K-hop preserves local topology better than random sampling” remains only partially controlled.
minor comments (5)
- Typographical errors: “aerodnamic” (p.1), “XIAOGANGD DENG” (title block), “V olume” / “V ol” spacing, “AifRANS” (Sec. 5), and inconsistent capitalisation of “Finite V olume”.
- Eqs. (5)–(6) introduce the two-step message-passing template but never state the precise edge-feature initialisation or the random-reversal probability; a short paragraph or appendix would aid reproducibility.
- Fig. 5 caption claims “errors are generally below 0.03” after min-max normalisation, yet no colour-bar scale or quantitative error map is supplied for the reader to verify the statement.
- Table 1 lists average mesh sizes but does not indicate whether the reported numbers are surface-only or volume+surface; clarifying this would avoid confusion when comparing memory curves in Fig. 10.
- The efficiency analysis (Sec. 5.3) reports wall-clock time for 50 samples but does not state whether the U-Net forward pass is included in the ME-GNN timing; a one-sentence clarification would make the linear-complexity claim easier to interpret.
Circularity Check
No circularity: purely empirical supervised model evaluated on held-out external CFD benchmarks; no derivation reduces a claimed prediction to its own inputs by construction.
full rationale
The paper proposes a hybrid architecture (K-hop FVGN + Attention U-Net on SDF grids) and reports relative L2 / MSE numbers on three public datasets (ShapeNet-Car, AirfRANS, DrivAerNet) under a standard train/test split. The loss (Eq. 7) is ordinary relative L2 between network output and CFD ground truth; the reported SOTA figures (Abstract, Tables 2-3) are simply measured test errors, not quantities forced by a fitted constant or by definitional identity. Self-citations to the authors' prior FVGN work ([9,10]) appear only as architectural background and are not load-bearing uniqueness theorems that forbid alternatives. No ansatz is smuggled in via citation, no uniqueness result is imported to force the model choice, and no 'prediction' is statistically identical to a parameter fitted on the same data. The evaluation is therefore self-contained against external benchmarks and exhibits none of the six circularity patterns.
Axiom & Free-Parameter Ledger
free parameters (6)
- K-hop neighborhood size k =
5
- U-Net channel list and depth =
[128,256,512,1024], depth 4
- FVGN hidden size and layers =
128, 8 layers
- Background grid resolution =
~48
- Number of sampled subgraphs / points =
2000 subgraphs / ~32k nodes
- Learning rate schedule and epoch counts =
1e-3 o1e-4, epochs [120,600,80]
axioms (4)
- domain assumption Signed-distance-field voxels on a uniform Cartesian grid tightly enclosing the geometry adequately encode multi-scale geometric information for a 3-D U-Net.
- domain assumption K-hop sampling from the original mesh preserves the local topological relations needed for accurate message passing, while random kNN/radius graphs do not.
- ad hoc to paper Bilinear (or trilinear) interpolation of U-Net latent features onto irregular mesh nodes is a sufficient fusion mechanism.
- domain assumption Relative L2 (or normalized MSE) on held-out CFD snapshots is a faithful proxy for engineering utility (drag/lift coefficients, design decisions).
invented entities (3)
-
ME-GNN (Multi-scale Feature Enhanced Graph Neural Network)
no independent evidence
-
Attention Skip Connection (ASC) inside the U-Net
no independent evidence
-
Node-based FVGN (simplified two-step message-passing block)
no independent evidence
read the original abstract
Industrial design in fields such as vehicle and aerospace engineering often relies on large-scale numerical simulations to evaluate fluid dynamics performance, which can incur substantial computational costs. Deep neural networks have shown promise in improving simulation efficiency, especially graph neural networks (GNNs), which demonstrate great potential due to their flexibility with unstructured data. However, GNNs face challenges when dealing with tasks involving complex geometries and large-scale meshes. In this paper, we propose the Multi-scale Feature Enhanced Graph Neural Network (ME-GNN) to tackle these challenges. ME-GNN employs a graph neural network with a two-step message-passing mechanism to capture detailed local features effectively. Additionally, it integrates an Attention U-Net with uniform grid discretization, enabling the extraction of both fine and coarse features. The model also utilizes K-hop sampling to construct subgraphs, facilitating efficient training on large datasets while preserving detailed local features. We evaluated ME-GNN on three benchmark datasets and achieved state-of-the-art results: a relative L2 error of 0.0196 for the velocity field and 0.0556 for the surface pressure on ShapeNet-Car, a normalized mean squared error of 0.0033 for the flow field on AirfRANS, and a relative L2 error of 0.1416 for the surface pressure on DrivAerNet.
Reference graph
Works this paper leans on
-
[1]
Relational inductive biases, deep learning, and graph networks
Battaglia, P.W., Hamrick, J.B., Bapst, V ., Sanchez-Gonzalez, A., Zambaldi, V ., Malinowski, M., Tacchetti, A., Raposo, D., Santoro, A., Faulkner, R., et al., 2018. Relational inductive biases, deep learning, and graph networks. arXiv preprint arXiv:1806.01261
Pith/arXiv arXiv 2018
-
[2]
AirfRANS: High fidelity compu- tational fluid dynamics dataset for approximating reynolds-averaged navier–stokes solutions, in: NeurIPS Datasets and Benchmarks Track
Bonnet, F., Mazari, J.A., Cinnella, P., patrick gallinari, 2022. AirfRANS: High fidelity compu- tational fluid dynamics dataset for approximating reynolds-averaged navier–stokes solutions, in: NeurIPS Datasets and Benchmarks Track
2022
-
[3]
Choose a transformer: Fourier or galerkin, in: NeurIPS
Cao, S., 2021. Choose a transformer: Fourier or galerkin, in: NeurIPS
2021
-
[4]
Geometry-guided conditional adaption for surrogate models of large-scale 3d PDEs on arbitrary geometries, in: IJCAI
Deng, J., Li, X., Xiong, H., Hu, X., Ma, J., 2024. Geometry-guided conditional adaption for surrogate models of large-scale 3d PDEs on arbitrary geometries, in: IJCAI
2024
-
[5]
Drivaernet: A parametric car dataset for data-driven aerodynamic design and graph-based drag prediction
Elrefaie, M., Dai, A., Ahmed, F., 2024. Drivaernet: A parametric car dataset for data-driven aerodynamic design and graph-based drag prediction. arXiv e-prints , arXiv–2403
2024
-
[6]
Gao, H., Sun, L., Wang, J.X., 2021. PhyGeoNet: Physics-informed geometry-adaptive convolu- tional neural networks for solving parameterized steady-state PDEs on irregular domain. Journal of Computational Physics 428, 110079. URL:https://linkinghub.elsevier.com/ retrieve/pii/S0021999120308536, doi:10.1016/j.jcp.2020.110079
-
[7]
Gnot: A general neural operator transformer for operator learning, in: International Conference on Ma- chine Learning, PMLR
Hao, Z., Wang, Z., Su, H., Ying, C., Dong, Y ., Liu, S., Cheng, Z., Song, J., Zhu, J., 2023. Gnot: A general neural operator transformer for operator learning, in: International Conference on Ma- chine Learning, PMLR. pp. 12556–12569
2023
-
[8]
Brain tumor seg- mentation and survival prediction using 3d attention unet
Islam, M., VS, V ., Jose, V .J.M., Wijethilake, N., Utkarsh, U., Ren, H., 2021. Brain tumor seg- mentation and survival prediction using 3d attention unet. URL:https://arxiv.org/abs/ 2104.00985,arXiv:2104.00985
Pith/arXiv arXiv 2021
-
[9]
Predicting unsteady incompressible fluid dynamics with finite volume informed neural network
Li, T., Zou, S., Chang, X., Zhang, L., Deng, X., 2024a. Predicting unsteady incompressible fluid dynamics with finite volume informed neural network. Physics of Fluids 36
-
[10]
Li, T., Zou, Y ., Zou, S., Chang, X., Zhang, L., Deng, X., 2024b. A fully differentiable gnn- based pde solver: With applications to poisson and navier-stokes equations. arXiv preprint arXiv:2405.04466 . A MULTI-SCALE FEATURE ENHANCED GRAPH NEURAL NETWORK FOR FLUID DYNAMICS PREDICTION IN COMPLEX GEOMETRIES 15
-
[11]
Fourier neural operator for parametric partial differential equations
Li, Z., Kovachki, N., Azizzadenesheli, K., Liu, B., Bhattacharya, K., Stuart, A., Anandkumar, A., 2020a. Fourier neural operator for parametric partial differential equations. arXiv preprint arXiv:2010.08895
Pith/arXiv arXiv 2010
-
[12]
Neural operator: Graph kernel network for partial differential equations
Li, Z., Kovachki, N., Azizzadenesheli, K., Liu, B., Bhattacharya, K., Stuart, A., Anandkumar, A., 2020b. Neural operator: Graph kernel network for partial differential equations. arXiv preprint arXiv:2003.03485
Pith/arXiv arXiv 2003
-
[13]
Geometry-informed neural operator for large- scale 3d PDEs, in: NeurIPS
Li, Z., Kovachki, N.B., Choy, C., Li, B., Kossaifi, J., Otta, S.P., Nabian, M.A., Stadler, M., Hundt, C., Azizzadenesheli, K., Anandkumar, A., 2023. Geometry-informed neural operator for large- scale 3d PDEs, in: NeurIPS
2023
-
[14]
Learning nonlinear operators via deeponet based on the universal approximation theorem of operators
Lu, L., Jin, P., Pang, G., Zhang, Z., Karniadakis, G.E., 2021. Learning nonlinear operators via deeponet based on the universal approximation theorem of operators. Nature machine intelligence 3, 218–229
2021
-
[15]
Geometric deep learning on graphs and manifolds using mixture model cnns, in: Proceedings of the IEEE conference on computer vision and pattern recognition, pp
Monti, F., Boscaini, D., Masci, J., Rodola, E., Svoboda, J., Bronstein, M.M., 2017. Geometric deep learning on graphs and manifolds using mixture model cnns, in: Proceedings of the IEEE conference on computer vision and pattern recognition, pp. 5115–5124
2017
-
[16]
K-hop graph neural networks
Nikolentzos, G., Dasoulas, G., Vazirgiannis, M., 2020. K-hop graph neural networks. Neural Networks 130, 195–205
2020
-
[17]
Pathak, J., Subramanian, S., Harrington, P., Raja, S., Chattopadhyay, A., Mardani, M., Kurth, T., Hall, D., Li, Z., Azizzadenesheli, K., et al., 2022. Fourcastnet: A global data- driven high-resolution weather model using adaptive fourier neural operators. arXiv preprint arXiv:2202.11214
Pith/arXiv arXiv 2022
-
[18]
Learning mesh-based sim- ulation with graph networks
Pfaff, T., Fortunato, M., Sanchez-Gonzalez, A., Battaglia, P.W., 2021. Learning mesh-based sim- ulation with graph networks. arXiv preprint arXiv:2010.03409
Pith/arXiv arXiv 2021
-
[19]
Learn- ing to simulate complex physics with graph networks, in: International Conference on Machine Learning, PMLR
Sanchez-Gonzalez, A., Godwin, J., Pfaff, T., Ying, R., Leskovec, J., Battaglia, P., 2020. Learn- ing to simulate complex physics with graph networks, in: International Conference on Machine Learning, PMLR. pp. 8459–8468
2020
-
[20]
Graph networks as learnable physics engines for inference and control, in: International Conference on Machine Learning, PMLR
Sanchez-Gonzalez, A., Heess, N., Springenberg, J.T., Merel, J., Riedmiller, M., Hadsell, R., Battaglia, P., 2018. Graph networks as learnable physics engines for inference and control, in: International Conference on Machine Learning, PMLR. pp. 4470–4479
2018
-
[21]
Aerodynamics- guided machine learning for design optimization of electric vehicles
Tran, J., Fukami, K., Inada, K., Umehara, D., Ono, Y ., Ogawa, K., Taira, K., 2024. Aerodynamics- guided machine learning for design optimization of electric vehicles. Communications Engineer- ing 3, 174
2024
-
[22]
Learning three-dimensional flow for interactive aerodynamic de- sign
Umetani, N., Bickel, B., 2018. Learning three-dimensional flow for interactive aerodynamic de- sign. ACM Transactions on Graphics (TOG)
2018
-
[23]
Transolver: A fast transformer solver for pdes on general geometries
Wu, H., Luo, H., Wang, H., Wang, J., Long, M., 2024. Transolver: A fast transformer solver for pdes on general geometries. arXiv preprint arXiv:2402.02366
Pith/arXiv arXiv 2024
-
[24]
Graph neural networks: A review of methods and applications
Zhou, J., Cui, G., Hu, S., Zhang, Z., Yang, C., Liu, Z., Wang, L., Li, C., Sun, M., 2020. Graph neural networks: A review of methods and applications. AI Open 1, 57–81. URL:https://linkinghub.elsevier.com/retrieve/pii/ S2666651021000012, doi:10.1016/j.aiopen.2021.01.001
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.