Datasets:
The dataset viewer is not available because its heuristics could not detect any supported data files. You can try uploading some data files, or configuring the data files location manually.
Kolmogorov Flow (Lyapunov-calibrated)
Deterministically forced 2D Navier–Stokes (Kolmogorov flow) at , sampled at a forecast step calibrated to the system's measured Lyapunov time. Intended for probabilistic / generative neural PDE forecasting on chaotic dynamics.
Generated with JAX-CFD
Summary
- Equation. Vorticity formulation of 2D incompressible Navier–Stokes with deterministic Kolmogorov forcing and linear drag.
- Solver. Spectral (jax-cfd,
crank_nicolson_rk4), anti-aliased. - Resolution. , periodic on .
- Viscosity. (Re .
- Trajectories. 64 independent ICs, 200 saved frames each.
- Format. Single
.npy, shape(64, 200, 256, 256),float32.
Time-step calibration
The forecast step between saved frames is set as a fraction of the system's leading Lyapunov time so that consecutive states are dynamically correlated but small initial differences have grown to a macroscopic fraction of the field.
Measured Lyapunov exponent (twin-trajectory, periodic renormalization, after spin-up):
Solver dt = 1e-3, INNER_STEPS = 100 (solver steps between saved frames), giving:
So consecutive saved frames are separated by roughly one-sixth of a Lyapunov time. Two states that share a coarse-resolution projection but differ in unresolved continuum directions have time to diverge by a factor between frames.
A warm-up of 5000 solver steps ( is discarded per trajectory before saving, so frames are samples of the statistically stationary regime.
Why this calibration
Probabilistic forecasters that model as a stochastic interpolant need the conditional to have non-trivial width on the discrete state. If , similar are followed by nearly identical and the conditional collapses to a delta — there is no distribution to learn. The choice is the smallest horizon at which chaotic divergence produces a genuinely spread conditional while consecutive frames remain dynamically related (i.e. it is still forecasting, not decorrelated sampling).
Physical setup
| Parameter | Value |
|---|---|
| Domain | , periodic |
| Grid | |
| Viscosity | |
| Reynolds | |
| Forcing | (deterministic) |
| Drag | |
| Solver | jax-cfd spectral, CN-RK4 |
dt |
|
| Inner steps / frame | 100 |
| (measured) | |
| Warm-up | 5000 solver steps |
| Trajectories | 64 |
| Frames / trajectory | 200 |
Loading
import numpy as np
data = np.load("kolmogorov_Re1e4_64x200x256x256.npy") # (64, 200, 256, 256), float32
Trajectories are independent (different IC seeds, same physics). Common split: first $N$ trajectories train, remainder validation.
Citation
If you use this dataset, please cite both the underlying solver:
@article{Kochkov2021-ML-CFD,
author = {Kochkov, Dmitrii and Smith, Jamie A. and Alieva, Ayya and Wang, Qing and Brenner, Michael P. and Hoyer, Stephan},
title = {Machine learning{\textendash}accelerated computational fluid dynamics},
volume = {118},
number = {21},
elocation-id = {e2101784118},
year = {2021},
doi = {10.1073/pnas.2101784118},
publisher = {National Academy of Sciences},
issn = {0027-8424},
URL = {https://www.pnas.org/content/118/21/e2101784118},
eprint = {https://www.pnas.org/content/118/21/e2101784118.full.pdf},
journal = {Proceedings of the National Academy of Sciences}
}
@article{Dresdner2022-Spectral-ML,
doi = {10.48550/ARXIV.2207.00556},
url = {https://arxiv.org/abs/2207.00556},
author = {Dresdner, Gideon and Kochkov, Dmitrii and Norgaard, Peter and Zepeda-Núñez, Leonardo and Smith, Jamie A. and Brenner, Michael P. and Hoyer, Stephan},
title = {Learning to correct spectral methods for simulating turbulent flows},
publisher = {arXiv},
year = {2022},
copyright = {arXiv.org perpetual, non-exclusive license}
}
A method paper accompanying this dataset is in preparation; citation will be added.
License
CC BY 4.0.
- Downloads last month
- 17