REVIEW 4 major objections 7 minor 73 references
Single-shot prediction of parametric partial differential equations
T0 review · 4 major / 7 minor · reviewed 2026-08-15 · deepseek-v4-flash
Pith's one-line read Flexi-VAE claims that one feed-forward evaluation of a latent propagator can replace iterative time-stepping for parametric PDE forecasting, offering constant-time cost and accurate long-horizon forecasts across unseen parameters.
desk verdict A useful single-shot latent-propagation architecture with a clean empirical core, but the theory is oversold and the comparisons need equal-budget controls. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The key object is the parametric latent propagator $P_{\theta_p}(\tilde{z}(t,\zeta); \tau, \zeta)$, a feed-forward network that advances the latent code from time $t$ to time $t+\tau$ in one pass, conditioned on the forecast horizon and the PDE parameters. Two instantiations are studied: the Direct Concatenation Propagator (DCP), which appends $\zeta$ and $\tau$ directly to the latent vector, and the Positional Encoding Propagator (PEP), which adds sinusoidal embeddings of $\zeta$ and $\tau$ in a higher-dimensional space before projecting back down. The propagator is trained jointly with the encoder and a shared decoder by a loss combining reconstruction error, KL divergence, and a physical-space propagated reconstruction error; that last term is what aligns latent evolution with true physical state reconstruction. The accompanying representation theorem guarantees that, for solutions lying on a compact smooth $m$-dimensional manifold, networks of size scaling as $\epsilon^{-m}\log\epsilon^{-1}$ can realize the whole pipeline with $O(\epsilon)$ prediction error, making the intrinsic dimension rather than the ambient state dimension the controlling complexity.
What would settle it
Train Flexi-VAE on one part of the Re range and evaluate on a region where the MLE intrinsic-dimension estimate (with the same $k$-nearest-neighbor settings) rises above the fixed latent dimension; if reconstruction remains accurate but forecast error diverges there, the global-chart assumption is the cause. A second decisive check is to run the trained propagator at horizons far beyond training, for example $\tau/\Delta t > 450$ on Burgers, and compare against the closed-form solution: the single-shot claim predicts roughly horizon-independent error, whereas a drift growing with $\tau$ would indicate error accumulation and falsify the mechanism.
Extended reading notes
Core claim
The paper's central claim is that the composition $\hat{u}(x,t+\tau,\zeta) = D_{\theta_d}(P_{\theta_p}(E_{\theta_e}(u(x,t,\zeta)), \tau, \zeta))$ approximates the true parametric evolution operator $F(u(x,t,\zeta),\tau,\zeta)$ well enough to serve as a surrogate model, and that this is achieved in a single feed-forward evaluation rather than by stepping through intermediate times. The propagator loss is evaluated in physical space, so the propagated latent code $\hat{z}$ is not required to equal the encoded code $\tilde{z}$ of the true future state; the paper shows these can be distinct yet decode to nearly identical fields, and that the propagated code lies in a flatter, better-conditioned region of the decoder as measured by the Jacobian $\partial D_{\theta_d}/\partial z$ and $\det(J^\top J)$. Between the two propagator designs, the Direct Concatenation Propagator is claimed to generalize better, be more data-efficient, and produce disentangled coordinates tied to physical quantities such as peak position and shock sharpness. Theorem 1 asserts that ReLU encoder, propagator, and decoder networks exist with prediction error bounded by $\epsilon$ and network size scaling as $\epsilon^{-m}\log \epsilon^{-1}$, where $m$ is the intrinsic manifold dimension; the theorem is proved on a patched latent space of dimension $C_M(m+1)$, while the experiments use a single global latent space of dimension $m=2$ or $m=3$.
Load-bearing premise
The load-bearing premise is that the full family of PDE solutions across all parameters and horizons can be represented in one fixed low-dimensional coordinate system of dimension 2 or 3, with the decoder staying stable along propagated coordinate paths; the existing theory is proved on a patched space of dimension $C_M(m+1)$, not on a single global chart.
Editorial extensions
If this is right
- The wall-clock cost of a forecast becomes independent of the horizon, since one forward pass produces any requested $\tau$; the reported constant runtime replaces the linear-in-$\tau$ cost of autoregressive LSTM rollouts.
- Long-horizon parametric studies become feasible in real-time settings, with measured speedups of up to 50x on CPU and 90x on GPU against the AE-LSTM baseline.
- Unseen parameter values can be forecast without retraining when the solution family is captured by the fixed latent coordinate system, as shown on extrapolated Reynolds numbers for both equations.
- The DCP variant supplies a physically interpretable latent space in which individual coordinates track identifiable features such as peak position and shock sharpness.
- Propagated latent trajectories are more robust to decoder perturbations than directly encoded trajectories, supporting stable long-horizon decoding.
Reading between the lines
- A direct stress test is to push the training parameter range until the estimated intrinsic dimension exceeds the fixed latent dimension; at that point the single-chart assumption predicts visible forecast failure, and the location of the failure would pinpoint where the global-coordinate premise breaks.
- The geometric stability result suggests a training-time regularizer the authors did not implement: adding a penalty on the decoder Jacobian norm or on $\det(J^\top J)$ at propagated latents could actively steer the propagator toward flat regions and possibly improve extrapolation.
- Because the proved theorem needs $C_M$ charts, a charted or mixture-of-experts latent space is the natural generalization if a single global chart cannot coordinatize larger PDE families; this would test whether the speed and simplicity of a single-chart propagator survive a principled patching procedure.
- If the approach scales to higher-dimensional flows, its main contribution may be computational rather than accuracy-based: changing the complexity class of online tasks such as PDE-constrained control, where a constant-time surrogate can be evaluated many times per control step.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper introduces Flexi-VAE, a variational-autoencoder framework for single-shot (non-autoregressive) forecasting of parametric PDEs. Given a state u(x,t,ζ), an encoder produces a low-dimensional latent code z̃, a feedforward propagator P_θ(z̃; τ, ζ) advances it to a horizon τ, and a shared decoder returns the forecasted field. Two propagator designs are compared: DCP, which concatenates (ζ, τ) to the latent code, and PEP, which uses sinusoidal embeddings in a higher-dimensional space. Experiments on the 1D viscous Burgers equation (Re ∈ [400,2400]) and the 2D advection–diffusion equation report accurate interpolation and extrapolation, latent-space interpretability for DCP, and 50×/90× CPU/GPU speedups over an AE-LSTM baseline. A representation theorem (Theorem 1) is stated and proved in Appendix A to justify the encoder-decoder-propagator architecture on a low-dimensional manifold.
Significance. The single-shot, parameter-conditioned latent propagator is a practically relevant idea for PDE surrogate modeling, and the reported constant-time inference with large wall-clock speedups over an autoregressive baseline is valuable if reproducible. The paper ships code and an interactive demo, which supports reproducibility. The empirical study covers two canonical benchmarks and includes interpolation/extrapolation splits, which is reasonable for a first demonstration. The main weakness is that the theoretical result does not actually cover the implemented architecture: Theorem 1 constructs a patched C_M(m+1)-dimensional latent representation, while the experiments use a single m-dimensional latent space; the propagator in the theorem takes only the latent code as input, not (z, τ, ζ); and the proof applies a C^k approximation lemma to a target that is only shown Lipschitz. These gaps do not by themselves invalidate the empirical findings, but they mean the paper's representation-theoretic claims currently outrun the proof.
major comments (4)
- [Theorem 1 (§2.2, Appendix A.2)] The theorem's propagator network is declared to belong to FNN(C_M(m+1), C_M(m+1), ...), i.e., its input is only the latent code z, yet the architecture in Eq. (3) and Algorithm 1 feeds (z, ζ, τ) to the propagator. Because P*(z, τ, ζ) = E*∘F(D*(z), τ, ζ) depends on τ and ζ, a network whose input dimension is C_M(m+1) cannot satisfy the stated uniform bound 'for all t, τ, ζ' in Eq. (24). The statement and proof must either include the parameter and horizon dimensions in the propagator's input class or restrict the theorem to a single fixed (τ, ζ); the latter would remove the parametric character of the claim.
- [Appendix A.2, propagator approximation] The bound in Eq. (24) is derived by applying Lemma 2 to P*(·, τ, ζ), but Lemma 2 requires the target function to be C^k (in the application, C^1). The manuscript only proves that P* is Lipschitz, with Lipschitz constant bounded by Lip E* Lip F Lip D*; no C^1 regularity of F is assumed. Consequently Eq. (24) is not established and the error estimate in Theorem 1 does not follow as written. The proof can be repaired by assuming F is C^1 (or C^k) and showing P* inherits this regularity, or by invoking a Lipschitz approximation result; without such a change the theorem's guarantee is unproven.
- [Theorem 1 vs. §3.1.1 and §3.2.1] The implemented Flexi-VAE uses a single latent space of dimension m (m=2 for Burgers, m=3 for advection-diffusion), but the oracle construction in Theorem 1 operates in R^{C_M(m+1)} using a C_M-chart atlas with partition-of-unity weights. The theorem never asserts that one global chart of dimension m exists, and the MLE intrinsic-dimension estimates quoted in §3.1.1 and §3.2.1 do not imply global coordinatizability. Thus the sentence in §3.1.1 that the latent dimension is 'motivated by the theoretical guarantee in Theorem 1' overstates what the theorem provides; the representational premise of the fixed low-dimensional latent space is not covered by the theory.
- [Abstract and §3.1.4] The abstract states that DCP's superior long-term generalization is demonstrated 'through representation-theoretic analysis.' Theorem 1 is an existence result for a generic encoder-decoder-propagator triple; it does not compare DCP with PEP or analyze parameter concatenation. The DCP-versus-PEP conclusions are entirely empirical (Figs. 6, 9, 10). This phrasing should be corrected to avoid claiming theoretical support for an architectural comparison the theory does not address.
minor comments (7)
- [Eq. (6), Theorem 1] The displayed inequality is missing a closing parenthesis after Eθe(u(x,t,ζ)) and after Dθd∘Pθp, making the statement hard to parse; the proof in Appendix A.2 makes the intended expression clear.
- [Appendix A.2, Step 2] The proof uses d where the intrinsic dimension m is meant, e.g., 'E* : M → R^{C_M(d+1)}' and '(z_j)_{1:d}'; this conflicts with the theorem's notation and is confusing given that d is also used for the PEP embedding dimension.
- [Eq. (2), Tables 1–2, Algorithm 1] The propagation-loss weight is denoted η in Eq. (2) and Algorithm 1 but γ in Tables 1 and 2; please unify the notation.
- [§3.1.5, Figs. 11–13] The claim that propagated latents generically occupy lower-sensitivity decoder regions rests on a single pair of latent vectors. Please compute statistics over many (Re, τ) samples, or temper the claim to a case study.
- [§3.1.3] The test Reynolds numbers 'Re∈{550,1025,...,2450}' are listed with an irregular step and include 1025, which lies inside the training set; please clarify the intended test set.
- [Fig. 9, §3.1.4] The power-law fit with slope −0.57 is over the short range 7K–80K tuples; please report the number of fit points, the fit uncertainty, and use error bars.
- [Throughout] Minor typos include 'Propogator' in Eq. (2), 'diffferent' in §3.1, 'Activiation' in §2.2, and 'the goal is of this paper' in §2.1.
Circularity Check
No significant circularity: Flexi-VAE forecasts are supervised directly on future states, and Theorem 1 is a constructive approximation result rather than an input-output tautology.
full rationale
The paper's central prediction pipeline does not reduce to a fitted value or to a self-citation. The propagated reconstruction loss in Eq. (2) is a direct supervised regression on future physical states, and the reported evaluation is carried out on interpolation and extrapolation splits of the joint (Re, tau) space, so the test errors are not forced by construction. The latent dimension choice is motivated by an independent MLE intrinsic-dimension estimate (“the results consistently yield intrinsic dimension estimate of 1.97, supporting the use of a 2D latent space”), not by fitting the forecast targets. Theorem 1 is also not circular: the oracle encoder/decoder pair E* and D* is explicitly constructed in Appendix A.2 (“we still present its construction for completeness”), and the approximation bound in Eq. (6) follows from standard neural-network approximation lemmas via a triangle inequality. The fact that the proof invokes prior manifold-approximation results by co-author Liao ([8], [37], [38]) is a self-citation, but it is not load-bearing in the sense of an unverified uniqueness theorem; the relevant construction is reproduced in the appendix, and the empirical claims stand independently of those citations. The known gap between Theorem 1's patched C_M(m+1)-dimensional representation and the implemented fixed m-dimensional latent space is a correctness/assumption risk, not a circularity, because the theorem is not used to define the trained output. No equation or fitted parameter is renamed as a prediction, and no central claim is equivalent to its input by definition.
Assumptions & free parameters
free parameters (7)
- Latent dimension m =
2 (Burgers), 3 (advection-diffusion)
- KL divergence weight beta =
4e-5 (PEP), 1.2e-5 (DCP Burgers), 1.152e-5 (2D DCP)
- Propagation loss weight eta =
0.60 (PEP), 1.70 (DCP Burgers), 1.15 (2D DCP)
- Embedding dimension d for PEP =
64
- Training dataset size =
20,000 tuples (PEP), 80,000 tuples (DCP)
- Learning rate and batch size =
alpha = 8e-4 / 7e-4 / 7e-4; batch = 256 / 64 / 64
- Empirical scaling exponent for DCP data efficiency =
-0.57
assumptions (6)
- domain assumption The set of PDE solutions lies on a compact m-dimensional Riemannian manifold isometrically embedded in R^n with reach tau_M > 0.
- domain assumption The solution map F(u(t), tau, zeta) = u(t+tau, zeta) is Lipschitz in u uniformly in tau and zeta.
- ad hoc to paper The oracle latent propagator P* is regular enough (C^k) for the neural-network approximation lemmas used in the proof.
- domain assumption The closed-form Cole-Hopf solution Eq. (11) and the Gaussian advection-diffusion solution Eq. (14) correctly reproduce the PDEs with the stated boundary and initial conditions.
- ad hoc to paper A single latent space of dimension m, rather than the C_M(m+1) chart space, can coordinate the solution manifold.
- standard math The neural-network approximation results of Yarotsky and Chen et al. for functions on low-dimensional manifolds are valid.
Cite this review
Pith. "Pith review of Single-shot prediction of parametric partial differential equations." pith.science (2026). https://pith.science/paper/2OSEJGHL
@misc{pith2026250509063,
author = {Pith},
title = {Pith review of: Single-shot prediction of parametric partial differential equations},
year = {2026},
howpublished = {\url{https://pith.science/paper/2OSEJGHL}},
note = {Machine review of arXiv:2505.09063}
}
read the original abstract
We introduce Flexi-VAE, a data-driven framework for efficient single-shot forecasting of nonlinear parametric partial differential equations (PDEs), eliminating the need for iterative time-stepping while maintaining high accuracy and stability. Flexi-VAE incorporates a neural propagator that advances latent representations forward in time, aligning latent evolution with physical state reconstruction in a variational autoencoder setting. We evaluate two propagation strategies, the Direct Concatenation Propagator (DCP) and the Positional Encoding Propagator (PEP), and demonstrate, through representation-theoretic analysis, that DCP offers superior long-term generalization by fostering disentangled and physically meaningful latent spaces. Geometric diagnostics, including Jacobian spectral analysis, reveal that propagated latent states reside in regions of lower decoder sensitivity and more stable local geometry than those derived via direct encoding, enhancing robustness for long-horizon predictions. We validate Flexi-VAE on canonical PDE benchmarks, the 1D viscous Burgers equation and the 2D advection-diffusion equation, achieving accurate forecasts across wide parametric ranges. The model delivers over 50x CPU and 90x GPU speedups compared to autoencoder-LSTM baselines for large temporal shifts. These results position Flexi-VAE as a scalable and interpretable surrogate modeling tool for accelerating high-fidelity simulations in computational fluid dynamics (CFD) and other parametric PDE-driven applications, with extensibility to higher-dimensional and more complex systems.
Figures
Figures from the paper (15 more)
Reference graph
Works this paper leans on
- [1]
- [2]
- [3]
- [4]
-
[5]
S. L. Brunton, B. R. Noack, and P. Koumoutsakos. Machine learning for fluid mechanics. Annual Review of Fluid Mechanics, 52:477–508, 2020
work page 2020
-
[6]
P. Campadelli, E. Casiraghi, C. Ceruti, and A. Rozza. Intrinsic dimension estimation: Relevant techniques and a benchmark framework.Mathematical Problems in Engineering, 2015(1):759567, 2015. 31
work page 2015
-
[7]
A. Chatterjee. An introduction to the proper orthogonal decomposition.Current Science, 78(7):808–817, 2000
work page 2000
-
[8]
M. Chen, H. Jiang, W. Liao, and T. Zhao. Efficient approximation of deep relu networks for functions on low dimensional manifolds.Advances in neural information processing systems, 32, 2019
work page 2019
Show all 73 references
-
[9]
M. Chen, H. Jiang, W. Liao, and T. Zhao. Nonparametric regression on low-dimensional man- ifolds using deep relu networks: Function approximation and statistical recovery.Information and Inference: A Journal of the IMA, 11(4):1203–1253, 2022
2022
-
[10]
Chung, K
J. Chung, K. Kastner, L. Dinh, K. Goel, A. Courville, and Y. Bengio. A recurrent latent variable model for sequential data.Advances in Neural Information Processing Systems (NeurIPS), 2015
2015
-
[11]
Cohen and R
A. Cohen and R. DeVore. Approximation of high-dimensional parametric pdes.Acta Numerica, 24:1–159, 2015
2015
-
[12]
Conway and N
J. Conway and N. Sloane.Sphere packings, lattices and groups, volume 290. Springer Science & Business Media, 2013
2013
-
[13]
Del Moral
P. Del Moral. Nonlinear filtering: Interacting particle resolution.Comptes Rendus de l’Acad´ emie des Sciences - Series I - Mathematics, 325(6):653–658, 1997
1997
-
[14]
N. A. K. Doan, W. Polifke, and L. Magri. Auto-encoded reservoir computing for turbulence learning.arXiv preprint arXiv:2012.10968, 2020
2012 arXiv
-
[15]
Eivazi, H
H. Eivazi, H. Veisi, M. H. Naderi, and V. Esfahanian. Deep neural networks for nonlinear model order reduction of unsteady flows.Physics of Fluids, 32(10):105104, 2020
2020
-
[16]
H. Federer. Curvature measures.Transactions of the American Mathematical Society, 93(3):418–491, 1959
1959
-
[17]
Fotiadis, M
S. Fotiadis, M. L. Valencia, S. Hu, S. Garasto, C. D. Cantwell, and A. A. Bharath. Disen- tangled generative models for robust prediction of system dynamics.Proceedings of the 40th International Conference on Machine Learning, 202:10222–10248, 2023
2023
-
[18]
Fraccaro, S
M. Fraccaro, S. Kamronn, U. Paquet, and O. Winther. A disentangled recognition and non- linear dynamics model for unsupervised learning.Advances in Neural Information Processing Systems (NeurIPS), 2017
2017
-
[19]
Fresca, L
S. Fresca, L. Dede’, and A. Manzoni. A comprehensive deep learning-based approach to re- duced order modeling of nonlinear time-dependent parametrized pdes.Journal of Scientific Computing, 87:1–36, 2021
2021
-
[20]
D. J. Gauthier, E. Bollt, A. Griffith, and W. A. S. Barbosa. Next generation reservoir com- puting.arXiv preprint arXiv:2106.07688, 2021
2021 arXiv
-
[21]
Glyn-Davies, C
A. Glyn-Davies, C. Duffin, O. D. Akyildiz, and M. Girolami.ϕ-dvae: Physics-informed dy- namical variational autoencoders for unstructured data assimilation.Journal of Computational Physics, 515:113293, 2024
2024
-
[22]
S. Godsill. Particle filtering: the first 25 years and beyond. InProc. Speech and Signal Processing (ICASSP) ICASSP 2019 - 2019 IEEE Int. Conf. Acoustics, pages 7760–7764, 2019. 32
2019
-
[23]
Higgins, L
I. Higgins, L. Matthey, A. Pal, C. Burgess, X. Glorot, M. Botvinick, S. Mohamed, and A. Ler- chner.β-vae: Learning basic visual concepts with a constrained variational framework.ICLR 2017 Poster, 2017
2017
-
[24]
G. E. Hinton and R. R. Salakhutdinov. Reducing the dimensionality of data with neural networks.Science, 313:504–507, 2006
2006
-
[25]
Hochreiter and J
S. Hochreiter and J. Schmidhuber. Long short-term memory.Neural Computation, 9:1735– 1780, 1997
1997
-
[26]
Holmes, J
P. Holmes, J. L. Lumley, G. Berkooz, and C. W. Rowley.Turbulence, Coherent Structures, Dynamical Systems and Symmetry. Cambridge University Press, 2012
2012
-
[27]
R. E. Kalman. A new approach to linear filtering and prediction problems.Journal of Basic Engineering, 82(1):35–45, 1960
1960
-
[28]
H. R. Karbasian and W. M. van Rees. A parametric lstm neural network for predicting flow field dynamics across a design space.Proceedings of the Royal Society A, 481:20240055, 2025
2025
-
[29]
D. P. Kingma and J. Ba. Adam: A method for stochastic optimization.arXiv preprint arXiv:1412.6980, 2014
2014 arXiv
-
[30]
D. P. Kingma and M. Welling. Auto-encoding variational bayes.arXiv preprint arXiv:1312.6114, 2013
2013 arXiv
-
[31]
Kullback and R
S. Kullback and R. A. Leibler. On information and sufficiency.The annals of mathematical statistics, 22(1):79–86, 1951
1951
-
[32]
J. N. Kutz, S. L. Brunton, B. W. Brunton, and J. L. Proctor.Dynamic Mode Decomposition. Society for Industrial and Applied Mathematics, Philadelphia, PA, 2016
2016
-
[33]
Le Clainche and J
S. Le Clainche and J. M. Vega. Higher order dynamic mode decomposition.SIAM Journal on Applied Dynamical Systems, 16:882–925, 2017
2017
-
[34]
Lee.Riemannian manifolds: an introduction to curvature, volume 176
J. Lee.Riemannian manifolds: an introduction to curvature, volume 176. Springer Science & Business Media, 2006
2006
-
[35]
Li and S
Y. Li and S. Mandt. Disentangled sequential autoencoder.International Conference on Ma- chine Learning (ICML), 2018
2018
-
[36]
Z. Li, N. Kovachki, K. Azizzadenesheli, B. Liu, K. Bhattacharya, A. Stuart, and A. Anand- kumar. Fourier neural operator for parametric partial differential equations.arXiv preprint arXiv:2010.08895, 2020
2010 arXiv
-
[37]
H. Liu, B. Dahal, R. Lai, and W. Liao. Generalization error guaranteed auto-encoder-based nonlinear model reduction for operator learning.Applied and Computational Harmonic Anal- ysis, 74:101717, 2025
2025
-
[38]
H. Liu, A. Havrilla, R. Lai, and W. Liao. Deep nonparametric estimation of intrinsic data struc- tures by chart autoencoders: Generalization error and robustness.Applied and Computational Harmonic Analysis, 68:101602, 2024
2024
-
[39]
Lopez and P
R. Lopez and P. J. Atzberger. Variational autoencoders for learning nonlinear dynamics of physical systems.arXiv preprint arXiv:2012.03448, 2020. 33
2012 arXiv
-
[40]
Lopez and P
R. Lopez and P. J. Atzberger. Gd-vaes: Geometric dynamic variational autoencoders for learning nonlinear dynamics and dimension reductions.arXiv preprint arXiv:2206.05183, 2024
2024 arXiv
-
[41]
L. Lu, P. Jin, and G. E. Karniadakis. Deeponet: Learning nonlinear operators for identify- ing differential equations based on the universal approximation theorem of operators.arXiv preprint arXiv:1910.03193, 2019
1910 arXiv
-
[42]
B. Lukas. Experiment tracking with weights and biases.https://www.wandb.com, 2020
2020
-
[43]
Z. Luo, L. Wang, J. Xu, M. Chen, J. Yuan, and A. C. Tan. Flow reconstruction from sparse sensors based on reduced-order autoencoder state estimation.Physics of Fluids, 35, 2023
2023
-
[44]
Maulik, B
R. Maulik, B. Lusch, and P. Balaprakash. Reduced-order modeling of advection–dominated systems with recurrent neural networks and convolutional autoencoders.Physics of Fluids, 33, 2021
2021
-
[45]
M. A. Mendez, M. Balabane, and J. M. Buchlin. Multi-scale proper orthogonal decomposition (mpod).Physics of Fluids, 30:055109, 2018
2018
-
[46]
Milano and P
M. Milano and P. Koumoutsakos. Neural network modeling for near wall turbulent flow. Journal of Computational Physics, 182:1–26, 2002
2002
-
[47]
Moukalled, L
F. Moukalled, L. Mangani, M. Darwish, F. Moukalled, L. Mangani, and M. Darwish.The finite volume method. Springer, 2016
2016
-
[48]
Murata, K
T. Murata, K. Fukami, and K. Fukagata. Nonlinear mode decomposition with convolutional neural networks for fluid dynamics.Journal of Fluid Mechanics, 882:A13, 2020
2020
-
[49]
Nakada and M
R. Nakada and M. Imaizumi. Adaptive approximation and generalization of deep neural net- work with intrinsic dimensionality.Journal of Machine Learning Research, 21(174):1–38, 2020
2020
-
[50]
Nakamura, K
T. Nakamura, K. Fukami, K. Hasegawa, Y. Nabae, and K. Fukagata. Convolutional neural network and long short-term memory based reduced order surrogate for minimal turbulent channel flow.Physics of Fluids, 33(2):025116, 2021
2021
-
[51]
Niyogi, S
P. Niyogi, S. Smale, and S. Weinberger. Finding the homology of submanifolds with high confidence from random samples.Discrete & Computational Geometry, 39:419–441, 2008
2008
-
[52]
S. E. Otto, G. R. Macchio, and C. W. Rowley. Learning nonlinear projections for reduced-order modeling of dynamical systems using constrained autoencoders.arXiv preprint arXiv:2307.15288, 2023
2023 arXiv
-
[53]
Raissi, P
M. Raissi, P. Perdikaris, and G. E. Karniadakis. Physics-informed neural networks: A deep learning framework for solving forward and inverse problems involving nonlinear partial differ- ential equations.Journal of Computational Physics, 378:686–707, 2019
2019
-
[54]
N. A. Raj, D. Tafti, and N. Muralidhar. Comparison of reduced order models based on dynamic mode decomposition and deep learning for predicting chaotic flow in a random arrangement of cylinders.Physics of Fluids, 35, 2023
2023
-
[55]
C. W. Rowley and S. T. M. Dawson. Model reduction for flow analysis and control.Annual Review of Fluid Mechanics, 49:387–417, 2017
2017
-
[56]
C. Roy. Review of discretization error estimators in scientific computing. In48th AIAA Aerospace Sciences Meeting Including the New Horizons Forum and Aerospace Exposition, page 126, 2010. 34
2010
-
[57]
P. J. Schmid. Dynamic mode decomposition of numerical and experimental data.Journal of Fluid Mechanics, 656:5–28, 2010
2010
-
[58]
P. J. Schmid. Dynamic mode decomposition and its variants.Annual Review of Fluid Mechan- ics, 54(1):225–254, 2022
2022
-
[59]
Schmidt-Hieber
J. Schmidt-Hieber. Nonparametric regression using deep neural networks with relu activation function.The Annals of Statistics, 48(4):1875–1897, 2020
2020
-
[60]
Shakya, B
S. Shakya, B. Maharjan, and P. Shakya. From entanglement to disentanglement: Compar- ing traditional vae and modified beta-vae performance.International Journal on Engineering Technology, 2(1), 2024
2024
-
[61]
Sieber, C
M. Sieber, C. O. Paschereit, and K. Oberleithner. Spectral proper orthogonal decomposition. Journal of Fluid Mechanics, 792:798–828, 2016
2016
-
[62]
Solera-Rico, C
A. Solera-Rico, C. S. Vila, M. A. G´ omez, Y. Wang, A. Almashjary, S. T. M. Dawson, and R. Vinuesa.β-variational autoencoders and transformers for reduced-order modelling of fluid flows.arXiv preprint arXiv:2304.03571, 2023
2023
-
[63]
P. A. Srinivasan, L. Guastoni, H. Azizpour, P. Schlatter, and R. Vinuesa. Predictions of turbulent shear flows using deep neural networks.Physical Review Fluids, 4:054603, 2019
2019
-
[64]
J. H. Tu, C. W. Rowley, D. M. Luchtenburg, S. L. Brunton, and J. N. Kutz. On dynamic mode decomposition: Theory and applications.Journal of Computational Dynamics, 2014
2014
-
[65]
L. Tu. Manifolds. InAn Introduction to Manifolds, pages 47–83. Springer, 2011
2011
-
[66]
Van Der Merwe, A
R. Van Der Merwe, A. Doucet, N. De Freitas, and E. Wan. The unscented particle filter. In Proceedings of the 13th International Conference on Neural Information Processing Systems, NIPS’00, pages 563–569, Cambridge, MA, USA, 2000. MIT Press
2000
-
[67]
Vaswani, N
A. Vaswani, N. Shazeer, N. Parmar, J. Uszkoreit, L. Jones, A. N. Gomez, L. Kaiser, and I. Polosukhin. Attention is all you need.arXiv preprint arXiv:1706.03762, 2017
2017 arXiv
-
[68]
E. A. Wan and R. Van Der Merwe. The unscented kalman filter for nonlinear estimation. In Proceedings of the IEEE 2000 Adaptive Systems for Signal Processing, Communications, and Control Symposium (Cat. No.00EX373), pages 153–158, 2000
2000
-
[69]
Z. Wang, D. Xiao, F. Fang, R. Govindan, C. Pain, and Y. Guo. Model identification of reduced order fluid dynamics systems using deep learning.International Journal for Numerical Methods in Fluids, 86(4):255–268, 2018
2018
-
[70]
Yarotsky
D. Yarotsky. Error bounds for approximations with deep relu networks.Neural networks, 94:103–114, 2017
2017
-
[71]
B. Zhang. Nonlinear mode decomposition via physics-assimilated convolutional autoencoder for unsteady flows over an airfoil.Physics of Fluids, 35, 2023
2023
-
[72]
Zhong and H
W. Zhong and H. Meidani. PI-VAE: Physics-informed variational auto-encoder for stochastic differential equations.ArXiv preprint arXiv:2203.11363, 2022
2022 arXiv
-
[73]
O. C. Zienkiewicz, R. L. Taylor, and J. Zhu.The finite element method: its basis and funda- mentals. Elsevier, 2005. 35
2005
Reviewed August 15, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.