Papers
Topics
Authors
Recent
Search
2000 character limit reached

Faster by Design: Interactive Aerodynamics via Neural Surrogates Trained on Expert-Validated CFD

Published 20 Apr 2026 in cs.LG and cs.AI | (2604.18491v1)

Abstract: Computational Fluid Dynamics (CFD) is central to race-car aerodynamic development, yet its cost -- tens of thousands of core-hours per high-fidelity evaluation -- severely limits the design space exploration feasible within realistic budgets. AI-based surrogate models promise to alleviate this bottleneck, but progress has been constrained by the limited complexity of public datasets, which are dominated by smoothed passenger-car shapes that fail to exercise surrogates on the thin, complex, highly loaded components governing motorsport performance. This work presents three primary contributions. First, we introduce a high-fidelity RANS dataset built on a parametric LMP2-class CAD model and spanning six operating conditions (map points) covering straight-line and cornering regimes, generated and validated by aerodynamics experts at Dallara to preserve features relevant to industrial motorsport. Second, we present the Gauge-Invariant Spectral Transformer (GIST), a graph-based neural operator whose spectral embeddings encode mesh connectivity to enhance predictions on tightly packed, complex geometries. GIST guarantees discretization invariance and scales linearly with mesh size, achieving state-of-the-art accuracy on both public benchmarks and the proposed race-car dataset. Third, we demonstrate that GIST achieves a level of predictive accuracy suitable for early-stage aerodynamic design, providing a first validation of the concept of interactive design-space exploration -- where engineers query a surrogate in place of the CFD solver -- within industrial motorsport workflows.

Summary

  • The paper introduces GIST, a novel gauge-invariant neural surrogate, alongside an expert-validated LMP2 race-car CFD dataset to enable interactive aerodynamic design.
  • The paper leverages stochastic spectral embedding and physically principled attention to ensure mesh-invariance and reduce computational complexity to O(Nr).
  • The paper demonstrates industrial applicability by achieving sub-percent errors on drag and downforce predictions, drastically accelerating design iteration cycles.

Neural Surrogate Modeling for Interactive Aerodynamics: GIST and an Expert-Validated Race-Car CFD Benchmark

Introduction

The challenge of efficiently exploring the aerodynamic design space for high-performance vehicles is fundamentally constrained by the prohibitive computational cost of high-fidelity CFD, commonly requiring tens of thousands of core-hours per evaluation. Traditional surrogate modeling approaches have been largely limited by the lack of high-complexity, expert-validated datasets that encapsulate the multi-component, tightly coupled flow phenomena governing motorsport applications. This paper addresses both prerequisites for effective industrial deployment: (1) a high-fidelity, expert-curated LMP2 race car dataset covering multi-regime "map points" relevant to motorsport, and (2) the Gauge-Invariant Spectral Transformer (GIST), a graph-based neural operator ensuring scalability, mesh-invariance, and superior generalization to complex geometries.

High-Fidelity LMP2 Race Car CFD Dataset

A major impediment to surrogate accuracy in automotive aerodynamics is the scarcity of datasets with sufficient geometric and operational diversity. The dataset introduced here is generated from an in-house parametric CAD model of a Le Mans Prototype 2 (LMP2), designed and validated by domain experts at Dallara. This model resolves critical geometric features such as rotating, encapsulated wheelhouses, splitters, and diffuser elements, with a mesh resolution matching industrial CFD standards (average of ∼\sim4.8M points per sample). Each geometric configuration is evaluated over six distinct map points encoding variations in heave, pitch, yaw, roll, and steer, explicitly encompassing both straight-line and cornering conditions—an expansion over typical public benchmarks limited to single-condition regimes.

The simulation process is based on incompressible, steady-state RANS, utilizing the kk-ω\omega SST turbulence model customized and validated for industrial correlation. The mesh generation follows best practices for boundary layer and volumetric feature resolution, with convergence checked through both residuals and integral aerodynamic metrics. Surface fields for each configuration include vectorized pressure and mean wall shear stress, enabling both granular diagnostic analysis and computation of integrated aerodynamic performance at the part and full-car level.

Gauge-Invariant Spectral Transformer (GIST)

Traditional neural operators such as FNO, DeepONet, MeshGraphNet, and recent transformer-based GNOs exhibit critical limitations in the regime of large-scale, highly anisotropic, and topologically detailed CAD meshes. Key pain points include: (a) loss of mesh topology due to point-cloud representations, (b) poor scalability of standard self-attention or full eigendecomposition, and (c) susceptibility to discretization-induced feature variance, impeding mesh-invariant generalization.

GIST addresses these through:

  • Gauge-Invariant Spectral Embedding: Meshes are represented as graphs, where the normalized Laplacian's spectrum is approximated using stochastic projections (avoiding explicit O(N3)\mathcal{O}(N^3) eigendecomposition), and node embeddings are constructed such that pairwise attention kernels are invariant under gauge transformations (sign flips or rotations in degenerate eigenspaces).
  • Linear Computation with Explicit Mesh Invariance: Embedding cost is reduced to O(Nr)\mathcal{O}(N r) for a graph of size NN using projection dimension rr, with theoretical bounds on the discrepancy between different mesh discretizations of the same manifold, scaling as O(n−1m+4)+O(r−12)\mathcal{O}(n^{-\frac{1}{m+4}}) + \mathcal{O}(r^{-\frac{1}{2}}).
  • Physically Principled Attention: The model leverages the gauge-invariant kernel K(i,j)K(i,j), enforcing that nodes proximate in the embedding space are also topologically proximate, thus preventing unphysical "shortcuts" between nodes across thin geometric features, a common failure mode in standard transformer or message-passing architectures. Figure 1

Figure 1

Figure 1

Figure 1

Figure 1

Figure 1

Figure 1

Figure 1

Figure 1: Qualitative pressure field comparison: GIST resolves surface features with higher fidelity and minimal unphysical cross-talk compared to FNO-based and Transolver-based methods.

Evaluation and Numerical Results

Empirical evaluation focuses on two axes: pointwise field reconstruction (pressure and wall shear stress), and accuracy of integrated aerodynamic quantities (downforce and drag coefficients) central to design decisions. GIST delivers state-of-the-art MSE and R2R^2 field metrics, outperforming FNO-based, Transolver, and GAOT baselines. Beyond aggregate scores, GIST's superiority becomes particularly apparent in thin-walled or topologically nontrivial regions where previous attention mechanisms yield systematic errors or nonphysical flow features. Figure 2

Figure 2

Figure 2: Surface pressure distributions—GIST exhibits strong agreement with CFD ground truth; residual errors (rightmost) are localized and of small magnitude.

At the part-level, the drag prediction from GIST achieves the pre-defined "usability threshold" for all subcomponents and meets the "CFD-replacement threshold" for 18 out of 20 parts, as defined by expert practitioners for productive integration into the industrial workflow. Figure 3

Figure 3: Absolute drag coefficient error per PID; GIST meets stringent industrial error bounds for nearly all subsystems.

For parametric sweeps critical to conceptual design, GIST rapidly generates load curves across the rear diffuser angle of attack, accurately capturing trends such as downforce saturation and the optimal tradeoff envelope for efficiency, as cross-validated against expensive CFD ground truth across the admissible domain. Figure 4

Figure 4: Downforce and drag coefficients vs. rear diffuser angle; GIST tracks both monotonic drag increase and downforce saturation in agreement with CFD.

Practical Implications and Future Directions

On the industrial side, GIST enables interactive aerodynamic design exploration, reducing concept evaluation iteration times from days to seconds while maintaining sub-percent-level error on domain-critical integral metrics. This positions the model for direct integration into product development pipelines as a surrogate for RANS-level simulations, particularly in the rapid concept evaluation and pre-optimization phases.

Theoretically, GIST's mesh-invariant, physically motivated attention keeps it robust to mesh resampling and geometric perturbation. The approach is extensible: extensions to dynamic regimes, probabilistic UQ via conformal methods, and inverse modeling (design optimization via differentiable surrogates) are tractable due to the architecture's differentiability and spectral grounding.

Additional forthcoming directions include integration of internal cooling aerodynamics (porous media flow), development of uncertainty quantification protocols (e.g., MC Dropout, Conformal Prediction), and embedding interpretability tools (e.g., concept-based attention summarization), with potential to close the "sim-to-real" gap through multi-fidelity calibration incorporating wind tunnel or track data.

Conclusion

This work establishes an expert-validated, high-complexity CFD benchmark for race-car aerodynamics and introduces a Gauge-Invariant Spectral Transformer that sets a new performance standard for neural surrogates in this regime. GIST satisfies both the scalability and mesh-invariance demands of industrial application, bridging the gap between academic innovation and practical adoption for rapid design-space exploration, and lays the groundwork for future developments in real-time, physics-aware, and invertible surrogate modeling.

Paper to Video (Beta)

No one has generated a video about this paper yet.

Whiteboard

No one has generated a whiteboard explanation for this paper yet.

Open Problems

We haven't generated a list of open problems mentioned in this paper yet.

Collections

Sign up for free to add this paper to one or more collections.

Tweets

Sign up for free to view the 1 tweet with 1 like about this paper.