Pith. sign in

REVIEW 2 major objections 5 minor 63 references

Spatio-Temporal Prediction of Unsteady Airfoil Aerodynamics Using Augmented Graph Neural Ordinary Differential Equations with Exogenous Controls

T0 review · 2 major / 5 minor · reviewed 2026-08-01 · deepseek-v4-flash

Pith's one-line read A graph neural ODE with latent augmentation produces temporally stable, spatially smooth predictions of unsteady transonic airfoil forces, outperforming a discrete-time autoregressive graph network on every reported metric.

desk verdict GNODE looks genuinely better on this dataset, but the comparison to GNS is confounded by different training objectives, so the central claim is overstated. read the letter →

arxiv 2607.18309 v1 pith:IKN4YUU6 submitted 2026-07-17 cs.LG physics.flu-dyn

classification cs.LGphysics.flu-dyn
keywords surrogatemodelunsteadyaerodynamicsgraphneuralnetworksordinarydifferentialequationsaugmentedstatepitchingairfoiltransonicflowspatio-temporalprediction
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

The paper tries to establish that a continuous-time graph neural network — a graph neural ODE — can serve as a fast, stable surrogate for unsteady transonic aerodynamics with exogenous controls, where an autoregressive discrete-time baseline fails. On a dataset of 40 URANS simulations of a pitching transonic airfoil (32 training, 8 test), the proposed GNODE outperforms the GNS baseline on every metric: surface-pressure MAE drops from 19.75e-3 to 5.28e-3, pitching-moment R² rises from -3.51 to 0.89, and phase error falls from 22.2° to 7.9°. Augmenting the ODE state with latent dimensions is the key addition: it lets the model represent aerodynamic hysteresis and reduces phase lag. If true, this makes GNODE a viable surrogate for design and certification loops where many unsteady CFD runs are currently unaffordable.

What carries the argument

The central object is the augmented Graph Neural ODE: d/dt [Y(t); L(t)] = GNS_theta(A, [Y(t); L(t)], G, u(t), E), with the GNN as the vector field and an RK4 solver for integration. The exogenous control u(t) is an analytic function of time (the prescribed pitch schedule), allowing solver evaluations at arbitrary times. Augmenting the state with latent dimensions L lifts the observed flow state into a higher-dimensional space; this resolves the uniqueness obstruction of ordinary ODEs for hysteresis, and a regularisation term λ||L||² constrains the latent dynamics.

What would settle it

Train or evaluate GNODE on the excluded near-stall cases (alpha0=4.5 degrees, amplitude 0.1 degrees) or on a chirp/gust input spanning multiple reduced frequencies, and check whether the phase error and drift remain at the reported levels. If the model drifts or phase-lags on those inputs, the generalisation claim is falsified.

Watch

Extended reading notes

Core claim

The paper claims that replacing discrete Euler time-stepping with an ODE solver — whose dynamics are a message-passing GNN taking the current flow state, geometry, latent state, and control input — yields temporally stable, spatially smooth predictions of surface pressure and skin friction, and accurate integrated pitching moment, over multiple pitch cycles. The authors further claim that the augmented latent dimensions are not just a training trick: with them, the model can represent trajectory crossings (hysteresis loops) that an unaugmented ODE cannot, and the phase lag between predicted and true first harmonics decreases systematically with the number of latent dimensions.

Load-bearing premise

The load-bearing premise is that the restricted test set — eight trajectories at one reduced frequency, with near-stall cases deliberately excluded — is representative of the unsteady transonic regime the paper claims to model, and that the URANS reference used as truth is itself accurate.

Editorial extensions

If this is right

  • GNODE roll-outs remain bounded over multiple oscillation periods, while GNS predictions drift monotonically and even produce negative R² for the pitching moment.
  • Moving shock fronts are preserved with less smearing; the strongest remaining errors localize at the shock.
  • More latent dimensions reduce phase error and variance, indicating a systematic way to trade model capacity for temporal fidelity.
  • Inference takes roughly 0.7 seconds per trajectory, making the trained model cheap enough for many-query tasks like optimisation.
  • Frequency analysis shows GNODE acts as a low-pass filter: first harmonics are captured accurately, but higher harmonics at the shock are underestimated.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • Because time is continuous, GNODE can be evaluated on arbitrary time grids; a natural extension would be coupling to a structural solver with adaptive time stepping, where discrete autoregressive models require interpolation.
  • The latent dimensions are never probed; interpreting them might reveal physically meaningful hidden states (e.g., wake or boundary-layer memory) and enable reduced-order insights.
  • The clean separation of the test frequency k=0.3 leaves open whether the advantage transfers to unseen reduced frequencies; testing on interpolation (k=0.2/0.5) and extrapolation (k=1.0) would settle this.
  • The paper itself reports that training can be unstable with augmentation and that accuracy degrades near the design-space edges; this suggests the regularisation coefficient is load-bearing and should be studied further.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

2 major / 5 minor

Summary. The paper proposes GNODE, a graph neural ODE with augmented latent dimensions and exogenous controls, as a continuous-time surrogate for unsteady transonic airfoil surface quantities. It is compared with an autoregressive graph-network simulator (GNS) baseline on a URANS dataset of a pitching RAE 2822 airfoil. The evaluation is internally careful: 160 HPO trials per architecture, five independent training runs, noise-perturbed teacher forcing for GNS, and metrics on both surface fields and integrated coefficients. The reported results show GNODE outperforming GNS on all metrics, with lower variance, less shock smearing, and smaller phase lag; an ablation study attributes part of this improvement to augmented latent dimensions. The authors conclude that continuous-time integration and augmentation yield a generally applicable surrogate for nonlinear spatio-temporal systems with exogenous inputs.

Significance. If the results are taken at face value, the paper makes a useful methodological contribution: GNODE directly predicts distributed surface quantities in continuous time, handles exogenous controls, and appears more stable than a discrete-time autoregressive baseline. The careful HPO, multi-seed statistics, frequency-domain analysis, and augmentation ablation are genuine strengths. However, the comparison is presently confounded by a training-objective difference, and the empirical support rests on a narrow test set. The central claim that continuous-time integration (or augmentation) is responsible for the stability gain is therefore not yet cleanly established; the paper would be substantially strengthened by an unrolled-training GNS baseline and by testing on additional reduced frequencies or near-stall conditions.

major comments (2)
  1. [§3.1 vs §3.3, Algorithms 1–2, Eqs. (10) and (19)] The headline comparison is confounded by the training objective. GNS is trained with one-step teacher forcing (Algorithm 1, Eq. (10)), while GNODE is trained by backpropagating through ODESolve over the full trajectory (Algorithm 2, Eq. (19)). The paper itself notes that 'unrolled training would be an alternative option that supposedly leads to improved rollout stability' (§3.1). Consequently, the large stability gap in Table 4 and Figure 8 may be due to the loss used for training, not to continuous-time integration. The authors should retrain the GNS with truncated or full trajectory loss, or train a GNODE variant with single-step loss, to isolate the architectural effect. Without such an experiment, the abstract and conclusions should be revised to compare full-trajectory training against teacher forcing rather than continuous-time against discrete-time architectures.
  2. [§4, test-set selection; conclusion] The generalization claim is not supported by the test distribution. All test trajectories are at a single reduced frequency k=0.3 (8 samples), and the most nonlinear cases — α0=4.5°, amplitude 0.1° — were deliberately excluded from the dataset (§4). The claim that GNODE is 'suitable to model non-linear spatio-temporal systems with exogenous inputs' therefore overreaches. Additional evaluation on at least one held-out reduced frequency (e.g., k=0.5 or k=1.0) or on near-stall conditions is needed to substantiate the general claim. If such experiments are not feasible, the conclusions should be explicitly scoped to the tested parameter regime.
minor comments (5)
  1. [Abstract] Typo: 'a simulations' should be 'simulations'.
  2. [§5.3, Figure 11] The caption says 'failed trainings' but does not describe the retraining policy for failed runs. Clarify whether the reported means and standard deviations in Figure 12 exclude or include re-run attempts.
  3. [Table 2] The row 'augmentedDimension' applies only to GNODE. Marking it '—' for GNS would avoid confusion.
  4. [§5.3, phase-lag explanation] The explanation that hysteresis causes trajectory crossing in the unaugmented state, and that augmentation resolves it, is plausible but not demonstrated. The empirical trend in Figure 12 is the main evidence; the theoretical mechanism should be labeled a hypothesis or supported by a state-space analysis.
  5. [Algorithm 2] The 'context' argument is used in the pseudocode but never defined in the listing. Add a short note that it contains the motion parameters α0, α-hat, and k.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: the empirical GNODE-vs-GNS evaluation uses held-out test data, hyperparameters are tuned on validation, and the load-bearing theoretical support (trajectory-crossing/uniqueness) is an external citation, not author self-citation.

full rationale

The paper's central claim is empirical: GNODE models are trained on 32 URANS trajectories and evaluated on 8 held-out test trajectories (Section 4), with metrics defined independently in Appendix A.2. Hyperparameters are selected by HPO on validation data (Section 5.1, Table 2) and then fixed; no fitted quantity is renamed as a prediction. The phase-lag/expressivity explanation for augmentation invokes the external trajectory-crossing/uniqueness theorem of Dupont et al. [21], not the authors' own prior work; the augmentation ablation (Section 5.3) varies l and measures phase differences on the test set, so the reported improvement is not built into the loss or the hyperparameters by construction. Self-citations [5,6,29,30] support the SMARTy implementation and prior steady-state GNN results, but they are not load-bearing for the new claims. Two concerns in the provided material are correctness/validity issues rather than circularity: (i) GNS is trained with one-step teacher forcing while GNODE is trained by backpropagating through the full ODE trajectory (Algorithm 1 vs Algorithm 2), so the stability gap may partly be a training-objective confound; the paper itself notes that unrolled training 'would be an alternative option that supposedly leads to improved rollout stability' (Section 3.1). (ii) The test set is narrow (single k=0.3; alpha0=4.5 degrees and amplitude 0.1 degrees removed, Section 4), limiting external validity. Neither issue makes the derivation equivalent to its inputs, so the circularity score is 0.

Assumptions & free parameters 5 free parameters · 4 assumptions · 0 invented entities

The central empirical result depends on the CFD reference data, the train/test split, the analytic control representation, and a set of hyperparameters selected by Optuna HPO on the validation split. The most consequential tuned quantities are the augmentation dimension (l=14, studied in the ablation) and the latent regularisation factor λ; both are fitted to validation data rather than derived. No new physical entities are postulated.

free parameters (5)
  • augmentedDimension = 14
    Number of latent augmented dimensions in GNODE; selected by Optuna HPO on validation data (Table 2). The ablation study varies this and attributes phase-lag reduction to it.
  • latentDimension (GNODE) = 186
    Node-embedding width in GNODE; selected by HPO (Table 2).
  • numberNeurons (GNODE) = 86
    MLP width inside GNODE dynamics; selected by HPO (Table 2).
  • regularisationFactor = 2.23e-6
    λ in Eq. (18) weighting the ‖l‖₂ regularisation of augmented states; selected by HPO on validation data.
  • noiseLevel (GNS) = 0.0183
    σ²_noise for teacher-forcing noise in GNS training; selected by HPO (Table 2).
assumptions (4)
  • domain assumption URANS with negative Spalart-Allmaras turbulence model (DLR-TAU) provides an accurate reference for unsteady transonic aerodynamics of the RAE 2822 airfoil.
    All training and test labels come from these simulations; no unsteady experimental validation is presented (Section 4, Appendix A.1).
  • standard math The uniqueness theorem for ODE initial-value problems implies unaugmented Neural ODEs cannot represent crossing trajectories, and augmentation resolves this.
    Invoked in Section 5.3 to explain phase-lag reduction; relies on Dupont et al. [21].
  • domain assumption The four training reduced frequencies (0.1, 0.2, 0.5, 1.0) and the excluded extreme cases bracket a test regime representative of dynamic linear and nonlinear transonic behavior.
    Test set only at k=0.3 with α0≤3.5°, αhat≤2.0°; generalization beyond this to gusts, 3D, and near-stall is asserted in the conclusion.
  • domain assumption Analytic control function f_u(t) exactly represents the pitching motion during training and inference.
    GNODE dynamics function evaluates controls at arbitrary ODE solver time points (Algorithm 2, Section 3.3).

how reviews work

0 comments
Cite this review

Pith. "Pith review of Spatio-Temporal Prediction of Unsteady Airfoil Aerodynamics Using Augmented Graph Neural Ordinary Differential Equations with Exogenous Controls." pith.science (2026). https://pith.science/paper/IKN4YUU6

@misc{pith2026260718309,
  author       = {Pith},
  title        = {Pith review of: Spatio-Temporal Prediction of Unsteady Airfoil Aerodynamics Using Augmented Graph Neural Ordinary Differential Equations with Exogenous Controls},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/IKN4YUU6}},
  note         = {Machine review of arXiv:2607.18309}
}
read the original abstract

Unsteady aerodynamic phenomena, such as gusts, turbulence, and fluid-structure interactions affect an aircraft during flight. For design, optimisation and certification, it is indispensable to quantify such unsteady aerodynamic effects. Industry-standard computational fluid dynamics methods, such as solving the unsteady Reynolds-averaged Navier-Stokes equations or the linearized frequency domain method, are either computationally expensive or restricted by assumptions like linearity. Once trained, machine learning methods are capable of computing non-linear relationships very fast, making them suitable as surrogate models. By autoregressively applying graph neural networks (GNNs), operating on a discretised spatial domain, spatio-temporal predictions can be made. However, autoregressive GNNs suffer from error accumulation leading to unstable rollouts over time. Here we show that combining GNNs with augmented Neural Ordinary Differential Equations yields temporally stable predictions of the surface forces on a pitching airfoil. We found that our approach, called GNODE, based on Graph Neural Ordinary Differential Equations, provides temporally more stable, spatially smoother, and overall more accurate results than an autoregressive GNN baseline. Tests are conducted on a dataset consisting of a simulations of a pitching airfoil, including transonic shocks, transient behaviour and dynamic non-linearities. Augmenting GNODEs with additional latent dimensions improves the expressivity and accuracy by capturing underlying history effects. The developed method demonstrates an approach that is suitable to model non-linear spatio-temporal systems with exogenous inputs.

Figures

Figures reproduced from arXiv: 2607.18309 by the authors.

Figure 1
Figure 1. Visualisation of the modelling task (see Equation 3). 3. Methods This Section outlines the algorithmic framework of the proposed methodology and the baseline method that is used for comparison. First Graph Neural Networks and Neural Ordinary Differential Equations are introduced followed by the Graph Neural Ordinary Differential Equations framework proposed herin. 3.1. Graph Neural Networks Graph Neural Networks are… view at source ↗
Figure 2
Figure 2. Schematic overview of the GNODE approach with augmented dimensions (see Equation 19). Note that the inner structure of the ODE solver is not depicted. loss, e.g. mean squared error between ground truth and prediction. To account for the augmented states in the loss function a regularisation term weighted by 𝜆 is introduced:  = Reconstruction(𝐲truth, 𝐲predicted) + 𝜆Regularisation(𝐥) (17) = MSE(𝐲truth, 𝐲predicted) … view at source ↗
Figure 3
Figure 3. RAE 2822 airfoil. The pitch axis is located at 𝑥∕𝑐 = 0.25, 𝑧∕𝑐 = 0. The reference length is 𝑙 ref = 𝑐 = 1 m. 4. Data In addition to model architecture, data-driven methods require meaningful training data to achieve good results. For this study, a dataset is created containing two-dimensional, unsteady simulations of the RAE 2822 airfoil. The rear-loaded, sub-critical RAE 2822 airfoil has a rooftop-type pressure dis… view at source ↗
Figures from the paper (15 more)
Figure 4
Figure 4. Figure 4: Resulting global coefficients (𝑐𝑙 , 𝑐𝑑 , 𝑐𝑚𝑦) of steady simulations. The red circles show the results at selected initial angles of attack. 0.4 0.6 M a g(c my/ ) [-] 0.5 1.0 1.5 2.0 [°] 140 120 P h ase(c my/ ) [°] 0 = 0.0 0 = 2.79 LFD URANS [PITH_FULL_IMAGE:figures/fu…
Figure 5
Figure 5. Figure 5: Comparison of the first harmonic of a Fourier transformation of URANS simulation versus LFD solution at different amplitudes. resulting global coefficients. The five steady simulations are located at different flight conditions. While 𝛼0 = 0.0 ◦ and 𝛼0 = 1.5 ◦ are with…
Figure 6
Figure 6. Figure 6: MAE of predicted values relative to CFD reference data averaged over the surface quantities (𝑐𝑝 , 𝑐𝑓,𝑥, 𝑐𝑓,𝑧). The plot shows the results of five model instances of GNS and GNODE. The colour scale corresponds to the mean values. The size of the circles corresponds to t…
Figure 7
Figure 7. Figure 7: Pitching moment coefficient 𝑐𝑚𝑦 over time 𝑡. 𝑐𝑚𝑦 is calculated using 𝑐𝑝 , 𝑐𝑓,𝑥 and 𝑐𝑓,𝑧. For GNS and GNODE the dark-coloured lines correspond to the best of five models according to the metrics in table 4. The light-coloured lines show the remaining four models. The sh…
Figure 8
Figure 8. Figure 8: Spatio-temporal evolution of the surface quantities for 𝛼0 = 2.79◦ , ̂𝛼 = 1.0 ◦ . Panel (a) shows 𝛼, which is part of the forcing control signal. Subfigures (b)–(f) show the evolution of the surface pressure over time: the y-axis corresponds to the unrolled surface of …
Figure 9
Figure 9. Figure 9: Red: relative error of the harmonics from a Fast Fourier Transform (FFT) of the GNODE predictions compared to the CFD reference test set. Black: magnitude of the FFT harmonics for the CFD reference test set. 0.0 0.1 0.2 R e(cp) [-] harmonic 1 0.0 0.2 0.4 Im(cp) [-] 0.1…
Figure 10
Figure 10. Figure 10: Comparison of the spatial distribution of the real (left column) and imaginary (right column) components of the Fourier-transformed surface pressure ̂𝑐𝑝 across the first five harmonic orders for the sample 𝛼0 = 2.79◦ and ̂𝛼 = 1.0 ◦ . for the test case 𝛼0 = 3.5 ◦ and ̂…
Figure 11
Figure 11. Figure 11: Number of failed training runs as a function of the number of augmented latent dimensions 𝑙. Each configuration was trained five times; failed attempts were retrained. 0 10 20 l [-] 10 5 0 cl [°] (a) Lift coefficient. 0 10 20 l [-] 20 0 20 cmy [°] (b) Pitching moment …
Figure 12
Figure 12. Figure 12: Phase differences Δ𝜙 of the first harmonic of the last excitation period, averaged over all test samples as a function of augmented dimensions 𝑙. The line presents the mean values, and the shaded area represents the standard deviation. Consequently, GNS is disregarded…
Figure 13
Figure 13. Figure 13: Visualisations of drift, amplitude deviation and phase error metrics. 𝑖pred = arg max 𝑖∈𝑙𝑎𝑠𝑡𝑃 𝑒𝑟𝑖𝑜𝑑 (̂𝑦𝑖 ) (32) The angular phase error in degrees is then computed as: 𝑝ℎ𝑎𝑠𝑒 𝑒𝑟𝑟𝑜𝑟 = ( |𝑖pred − 𝑖 true| 𝑠𝑡𝑒𝑝𝑠𝑃 𝑒𝑟𝑃 𝑒𝑟𝑖𝑜𝑑 ) ⋅ 360◦ (33) [PITH_FULL_IMAGE:figures/full_fig_p…
Figure 14
Figure 14. Figure 14: Pitching moment coefficient 𝑐𝑚𝑦 over time 𝑡. 𝑐𝑚𝑦 is calculated using 𝑐𝑝 , 𝑐𝑓,𝑥 and 𝑐𝑓,𝑧. For GNS and GNODE the dark-coloured lines correspond to the best of five models according to the metrics in table 4. The light-coloured lines show the remaining four models. The s…
Figure 15
Figure 15. Figure 15: Spatio-temporal evolution of the surface quantities for 𝛼0 = 3.5 ◦ , ̂𝛼 = 2.0 ◦ . Panel (a) shows 𝛼, which is part of the forcing control signal. Subfigures (b)–(f) show the evolution of the surface pressure over time: The y-axis corresponds to the unrolled surface of…
Figure 16
Figure 16. Figure 16: Spatio-temporal evolution of the surface quantities for 𝛼0 = 2.79◦ , ̂𝛼 = 1.0 ◦ . Panel (a) shows 𝛼, which is part of the forcing control signal. Subfigures (b)–(f) show the evolution of the skin friction coefficient over time: The y-axis corresponds to the unrolled s…
Figure 17
Figure 17. Figure 17: Spatio-temporal evolution of the surface quantities for 𝛼0 = 3.5 ◦ , ̂𝛼 = 2.0 ◦ . Panel (a) shows 𝛼, which is part of the forcing control signal. Subfigures (b)–(f) show the evolution of the skin friction coefficient over time: The y-axis corresponds to the unrolled s…
Figure 18
Figure 18. Figure 18: Comparison of the spatial distribution of the real (left column) and imaginary (right column) components of the Fourier-transformed surface pressure coefficient ̂𝑐𝑝 across the first five harmonic orders for the sample 𝛼0 = 3.5 ◦ and ̂𝛼 = 2.0 ◦ ). : Preprint submitted …

Discussion (0). Sign in to comment.

Reference graph

Works this paper leans on

63 extracted references · 9 linked inside Pith

  1. [1]

    A. F. Agarap, Deep learning using rectified linear units (relu), arXiv preprint arXiv:1803.08375 (2018)

  2. [2]

    Akiba, S

    T. Akiba, S. Sano, T. Yanase, T. Ohta, M. Koyama, Optuna: A next-generation hyperparameter optimization framework, in: Proceedings of the 25th ACM SIGKDD international conference on knowledge discovery & data mining, 2019, pp. 2623–2631

  3. [3]

    S. R. Allmaras, F. T. Johnson, Modifications and clarifications for the implementation of the spalart-allmaras turbulence model, in: Seventh international conference on computational fluid dynamics (ICCFD7), volume 1902, Big Island, HI, 2012, pp. 1–11

  4. [4]

    P.W.Battaglia,J.B.Hamrick,V.Bapst,A.Sanchez-Gonzalez,V.Zambaldi,M.Malinowski,A.Tacchetti,D.Raposo,A.Santoro,R.Faulkner, et al., Relational inductive biases, deep learning, and graph networks, arXiv preprint arXiv:1806.01261 (2018)

  5. [5]

    Bekemeyer, A

    P. Bekemeyer, A. Bertram, D. A. Hines Chaves, M. Dias Ribeiro, A. Garbo, A. Kiener, C. Sabater, M. Stradtner, S. Wassing, M. Widhalm, et al., Data-driven aerodynamic modeling using the dlr smarty toolbox, in: AIAA Aviation 2022 Forum, 2022, p. 3899

  6. [6]

    P.Bekemeyer,A.Barklage,D.A.HinesChaves,M.Stradtner,S.Görtz, Recentadvancesindata-drivenmodelingforaerodynamicapplications using dlr’s smarty toolbox, in: AIAA SCITECH 2024 Forum, 2024, p. 0010

  7. [7]

    Bhatnagar, Y

    S. Bhatnagar, Y. Afshar, S. Pan, K. Duraisamy, S. Kaushik, Prediction of aerodynamic flow fields using convolutional neural networks, Computational Mechanics 64 (2019) 525–545

  8. [8]

    M. M. Bronstein, J. Bruna, Y. LeCun, A. Szlam, P. Vandergheynst, Geometric deep learning: going beyond euclidean data, IEEE Signal Processing Magazine 34 (2017) 18–42

Show all 63 references
  1. [9]

    S. L. Brunton, S. T. Dawson, C. W. Rowley, State-space model identification and feedback control of unsteady aerodynamic forces, Journal of Fluids and Structures 50 (2014) 253–270

  2. [10]

    S. L. Brunton, J. L. Proctor, J. N. Kutz, Discovering governing equations from data by sparse identification of nonlinear dynamical systems, Proceedings of the national academy of sciences 113 (2016) 3932–3937

  3. [11]

    S. L. Brunton, B. R. Noack, P. Koumoutsakos, Machine learning for fluid mechanics, Annual review of fluid mechanics 52 (2020) 477–508

  4. [12]

    Bui-Thanh, M

    T. Bui-Thanh, M. Damodaran, K. Willcox, Proper orthogonal decomposition extensions for parametric applications in compressible aerodynamics, in: 21st AIAA applied aerodynamics conference, 2003, p. 4213

  5. [13]

    Y. Cao, M. Chai, M. Li, C. Jiang, Efficient learning of mesh-based physical simulation with bi-stride multi-scale graph neural network, in: International conference on machine learning, PMLR, 2023, pp. 3541–3558

  6. [14]

    Catalani, S

    G. Catalani, S. Agarwal, X. Bertrand, F. Tost, M. Bauerheim, J. Morlier, Neural fields for rapid aircraft aerodynamics simulations, Scientific Reports 14 (2024) 25496

  7. [15]

    Chen,Y.Rubanova,J

    R.T. Chen,Y.Rubanova,J. Bettencourt,D.K.Duvenaud, Neuralordinary differentialequations, Advances inneuralinformationprocessing systems 31 (2018)

  8. [16]

    R. T. Q. Chen, torchdiffeq, 2018. URL:https://github.com/rtqichen/torchdiffeq

  9. [17]

    K. Cho, B. Van Merriënboer, Ç. Gulçehre, D. Bahdanau, F. Bougares, H. Schwenk, Y. Bengio, Learning phrase representations using rnn encoder–decoder for statistical machine translation, in: Proceedings of the 2014 conference on empirical methods in natural language processing (...

  10. [18]

    Colombo, M

    M. Colombo, M. Bauerheim, J. Morlier, Data driven prediction of gust aeroelastic dynamics of hale using graph neural ordinary differential equations with input control, Aerospace Science and Technology (2025) 111505

  11. [19]

    P. Cook, M. Firmin, M. McDonald, Aerofoil RAE 2822: pressure distributions, and boundary layer and wake measurements, RAE, 1977

  12. [20]

    C. F. Curtiss, J. O. Hirschfelder, Integration of stiff equations, Proceedings of the national academy of sciences 38 (1952) 235–243

  13. [21]

    Dupont, A

    E. Dupont, A. Doucet, Y. W. Teh, Augmented neural odes, Advances in neural information processing systems 32 (2019)

  14. [22]

    EASA, Certification specifications and acceptable means of compliance for large aeroplanes, 2023

  15. [23]

    M. Fey, J. E. Lenssen, Fast graph representation learning with pytorch geometric, arXiv preprint arXiv:1903.02428 (2019)

  16. [24]

    Friedewald, Gust-Induced Amplitude Effects in Transonic Flow, Ph.D

    D. Friedewald, Gust-Induced Amplitude Effects in Transonic Flow, Ph.D. thesis, Technische Universität Braunschweig, 2025

  17. [25]

    Fronk, L

    C. Fronk, L. Petzold, Training stiff neural ordinary differential equations with implicit single-step methods, Chaos: An Interdisciplinary Journal of Nonlinear Science 34 (2024)

  18. [26]

    T. Gao, S. Sun, H. Liu, H. Gao, Global convergence in neural odes: Impact of activation functions, arXiv preprint arXiv:2509.22436 (2025)

  19. [27]

    X. Han, H. Gao, T. Pfaff, J.-X. Wang, L.-P. Liu, Predicting physics in mesh-reduced space with temporal attention, arXiv preprint arXiv:2201.09113 (2022)

  20. [28]

    Harsch, S

    L. Harsch, S. Riedelbauch, Direct prediction of steady-state flow fields in meshed domain with graph networks, arXiv preprint arXiv:2105.02575 (2021)

  21. [29]

    D.Hines,P.Bekemeyer, Graphneuralnetworksforthepredictionofaircraftsurfacepressuredistributions, AerospaceScienceandTechnology 137 (2023) 108268

  22. [30]

    Hines, P

    D. Hines, P. Bekemeyer, Prediction of surface pressure distributions of non-parametric airfoils using geometric deep learning methods, Computers & Fluids (2026) 106979

  23. [31]

    Hochreiter, Long short-term memory, Neural Computation MIT-Press (1997)

    S. Hochreiter, Long short-term memory, Neural Computation MIT-Press (1997)

  24. [32]

    Hornik, M

    K. Hornik, M. Stinchcombe, H. White, Multilayer feedforward networks are universal approximators, Neural networks 2 (1989) 359–366

  25. [33]

    Jameson, Application of dual time stepping to fully implicit runge kutta schemes for unsteady flow calculations, in: 22nd AIAA Computational Fluid Dynamics Conference, 2015, p

    A. Jameson, Application of dual time stepping to fully implicit runge kutta schemes for unsteady flow calculations, in: 22nd AIAA Computational Fluid Dynamics Conference, 2015, p. 2753

  26. [34]

    D. P. Kingma, J. Ba, Adam: A method for stochastic optimization, arXiv preprint arXiv:1412.6980 (2014)

  27. [35]

    G.Kohl,L.-W.Chen,N.Thuerey, Benchmarkingautoregressiveconditionaldiffusionmodelsforturbulentflowsimulation, NeuralNetworks (2026) 108641

  28. [36]

    J. N. Kutz, S. L. Brunton, B. W. Brunton, J. L. Proctor, Dynamic mode decomposition: data-driven modeling of complex systems, SIAM, 2016

  29. [37]

    :Preprint submitted to Elsevier Page 26 of 27

    A.M.Lamb,A.G.ALIASPARTHGOYAL,Y.Zhang,S.Zhang,A.C.Courville,Y.Bengio, Professorforcing:Anewalgorithmfortraining recurrent networks, Advances in neural information processing systems 29 (2016). :Preprint submitted to Elsevier Page 26 of 27

  30. [38]

    Langer, An initial investigation of solving rans equations in combination with two-equation turbulence models, 2019

    S. Langer, An initial investigation of solving rans equations in combination with two-equation turbulence models, 2019

  31. [39]

    LeCun, Y

    Y. LeCun, Y. Bengio, G. Hinton, Deep learning, nature 521 (2015) 436–444

  32. [40]

    Massegur, A

    D. Massegur, A. Da Ronch, Recurrent graph convolutional multi-mesh autoencoder for unsteady transonic aerodynamics, Journal of Fluids and Structures 131 (2024) 104202

  33. [41]

    Øksendal, Stochastic differential equations, in: Stochastic differential equations: an introduction with applications, Springer, 2003, pp

    B. Øksendal, Stochastic differential equations, in: Stochastic differential equations: an introduction with applications, Springer, 2003, pp. 38–50

  34. [42]

    Y. Pan, X. An, Y. Lei, C. Ji, An improved neural network for modeling airfoil’s unsteady aerodynamics in transonic flow, Physics of Fluids 36 (2024)

  35. [43]

    Paszke, S

    A. Paszke, S. Gross, F. Massa, A. Lerer, J. Bradbury, G. Chanan, T. Killeen, Z. Lin, N. Gimelshein, L. Antiga, et al., Pytorch: An imperative style, high-performance deep learning library, Advances in neural information processing systems 32 (2019)

  36. [44]

    Pfaff, M

    T. Pfaff, M. Fortunato, A. Sanchez-Gonzalez, P. W. Battaglia, Learning mesh-based simulation with graph networks, arXiv preprint arXiv:2010.03409 (2020)

  37. [45]

    M.Poli,S.Massaroli,J.Park,A.Yamashita,H.Asama,J.Park, Graphneuralordinarydifferentialequations, arXivpreprintarXiv:1911.07532 (2019)

  38. [46]

    Pontryagin, Mathematical Theory of Optimal Processes, Classics of Soviet Mathematics, Taylor & Francis, 1987

    L. Pontryagin, Mathematical Theory of Optimal Processes, Classics of Soviet Mathematics, Taylor & Francis, 1987

  39. [47]

    M. D. Ribeiro, M. Stradtner, P. Bekemeyer, Unsteady reduced order model with neural networks and flight-physics-based regularization for aerodynamic applications, Computers & Fluids 264 (2023) 105949

  40. [48]

    Sanchez-Gonzalez, J

    A. Sanchez-Gonzalez, J. Godwin, T. Pfaff, R. Ying, J. Leskovec, P. Battaglia, Learning to simulate complex physics with graph networks, in: International conference on machine learning, PMLR, 2020, pp. 8459–8468

  41. [49]

    Sabater, P

    C. Sabater, P. Stürmer, P. Bekemeyer, Fast predictions of aircraft aerodynamics using deep-learning techniques, Aiaa Journal 60 (2022) 5249–5261

  42. [50]

    P. J. Schmid, Dynamic mode decomposition of numerical and experimental data, Journal of fluid mechanics 656 (2010) 5–28

  43. [51]

    M.Schroeder,Synthesisoflow-peak-factorsignalsandbinarysequenceswithlowautocorrelation(corresp.),IEEEtransactionsonInformation Theory 16 (1970) 85–89

  44. [52]

    Schwamborn, A

    D. Schwamborn, A. Gardner, H. von Geyr, A. Krumbein, H. Lüdeke, A. Stürmer, Development of the tau-code for aerospace applications, 2008

  45. [53]

    Serrano, L

    L. Serrano, L. Le Boudec, A. Kassaï Koupaï, T. X. Wang, Y. Yin, J.-N. Vittaut, P. Gallinari, Operator learning with neural fields: Tackling pdes on general geometries, Advances in Neural Information Processing Systems 36 (2023) 70581–70611

  46. [54]

    Serrano, L

    L. Serrano, L. Migus, Y. Yin, J. A. Mazari, P. Gallinari, Infinity: Neural field modeling for reynolds-averaged navier-stokes equations, arXiv preprint arXiv:2307.13538 (2023)

  47. [55]

    W. A. Silva, Application of nonlinear systems theory to transonic unsteady aerodynamic responses, Journal of aircraft 30 (1993) 660–668

  48. [56]

    I. M. Sobol, Y. L. Levitan, On the use of variance reducing multipliers in monte carlo computations of a global sensitivity index, Computer Physics Communications 117 (1999) 52–61

  49. [57]

    Stickan, Explanation of aerostabil limit-cycle oscillations via high-fidelity aeroelastic simulations, 2018

    B. Stickan, Explanation of aerostabil limit-cycle oscillations via high-fidelity aeroelastic simulations, 2018

  50. [58]

    Tang, Orthogonal array-based latin hypercubes, Journal of the American statistical association 88 (1993) 1392–1397

    B. Tang, Orthogonal array-based latin hypercubes, Journal of the American statistical association 88 (1993) 1392–1397

  51. [59]

    Thormann, M

    R. Thormann, M. Widhalm, Linear-frequency-domain predictions of dynamic-response data for viscous transonic flows, AIAA journal 51 (2013) 2540–2557

  52. [60]

    Vaswani, N

    A. Vaswani, N. Shazeer, N. Parmar, J. Uszkoreit, L. Jones, A. N. Gomez, Ł. Kaiser, I. Polosukhin, Attention is all you need, Advances in neural information processing systems 30 (2017)

  53. [61]

    Weiss, A tutorial on the proper orthogonal decomposition, in: AIAA aviation 2019 forum, 2019, p

    J. Weiss, A tutorial on the proper orthogonal decomposition, in: AIAA aviation 2019 forum, 2019, p. 3333

  54. [62]

    Y. Yang, K. Pahlke, Implementation of a dual-time stepping method for the numerical solution of ns equations for rigid airfoils in arbitrary unsteady motion, 1995

  55. [63]

    R. Zahn, M. Winter, M. Zieher, C. Breitsamter, Application of a long short-term memory neural network for modeling transonic buffet aerodynamics, Aerospace Science and Technology 113 (2021) 106652. :Preprint submitted to Elsevier Page 27 of 27

Pith tools

Reviewed August 1, 2026 · model on record in the stance chip above.