Dataset Viewer
The dataset viewer is not available for this subset.
Cannot get the split names for the config 'default' of the dataset.
Exception:    SplitsNotFoundError
Message:      The split names could not be parsed from the dataset config.
Traceback:    Traceback (most recent call last):
                File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 286, in get_dataset_config_info
                  for split_generator in builder._split_generators(
                                         ~~~~~~~~~~~~~~~~~~~~~~~~~^
                      StreamingDownloadManager(base_path=builder.base_path, download_config=download_config)
                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                  )
                  ^
                File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/hdf5/hdf5.py", line 49, in _split_generators
                  import h5py
              ModuleNotFoundError: No module named 'h5py'
              
              The above exception was the direct cause of the following exception:
              
              Traceback (most recent call last):
                File "/src/services/worker/src/worker/job_runners/config/split_names.py", line 66, in compute_split_names_from_streaming_response
                  for split in get_dataset_split_names(
                               ~~~~~~~~~~~~~~~~~~~~~~~^
                      path=dataset,
                      ^^^^^^^^^^^^^
                      config_name=config,
                      ^^^^^^^^^^^^^^^^^^^
                      token=hf_token,
                      ^^^^^^^^^^^^^^^
                  )
                  ^
                File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 340, in get_dataset_split_names
                  info = get_dataset_config_info(
                      path,
                  ...<6 lines>...
                      **config_kwargs,
                  )
                File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 291, in get_dataset_config_info
                  raise SplitsNotFoundError("The split names could not be parsed from the dataset config.") from err
              datasets.inspect.SplitsNotFoundError: The split names could not be parsed from the dataset config.

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

Physics vs Distributions: Pareto Optimal Flow Matching with Physics Constraints

arXiv View on GitHub

This repository contains the datasets for the dynamic stall and Kolmogorov flow cases presented in the paper "Physics vs Distributions: Pareto Optimal Flow Matching with Physics Constraints".

Dynamic Stall dataset

The design space is defined as a four-dimensional hypercube. The design variables are:

Design variable Symbol Description Range
Free-stream Mach number $ M_{\infty} $ Ratio of free-stream velocity to speed of sound 0.3 – 0.5
Mean angle of attack $ \alpha_0 $ Average angle between chord line and flow direction 5° – 10°
Pitching amplitude $ \alpha_s $ Maximum angular deviation during pitching motion 5° – 10°
Reduced frequency $ k = \dfrac{\omega c}{2V_{\infty}} $ Non-dimensional frequency of oscillation 0.05 – 0.1

The hypercube is sampled with 128 points for training and 16 points for testing. Each sampled point represents a nominal operating condition.

Each nominal condition is perturbed as follows:

xperturbed=(1+N(0,0.02))xnominal x_{\text{perturbed}} = (1 + \mathcal{N}(0, 0.02)) \cdot x_{\text{nominal}}

where $\mathcal{N}(0, 0.02)$ denotes a Gaussian noise term with zero mean and standard deviation 0.02.

This results in 32 perturbed variations per nominal condition, yielding a total of:

  • $128 \times 32 = 4096$ simulations for training
  • $16 \times 32 = 512$ simulations for testing

Each simulation that corresponds to a dataset sample has 6 fields of size $128 \times 128$. The fields correspond to:

  • Absolute pressure
  • x-wall tangential velocity gradient
  • y-wall tangential velocity gradient
  • Temperature
  • Density
  • Wall shear stress

Each hdf5 file contains three arrays:

  • fields with shape (conditions, samples per condition, fields, x, y)
  • nominal_condition with shape (nominal conditions, samples per condition, design variables)
  • real_condition with shape (real conditions, samples per condition, design variables)

Kolmogorov flow dataset

The Kolmogorov flow problem spans Reynolds numbers in the range $[100, 500]$, using a spatial resolution of $128 \times 128$. The simulations are performed using TorchFSM. The training dataset includes 32 different flow conditions, while the validation dataset contains 16 conditions. Each condition has $1, 024$ snapshots.

Each simulation that corresponds to a dataset sample has 2 fields of size $128 \times 128$. The fields correspond to:

  • x-velocity
  • y-velocity

Each hdf5 file contains two arrays:

  • fields with shape (conditions, samples per condition, fields, x, y)
  • reynolds with shape (reynolds numbers, )

Citation

@inproceedings{pbfm2026,
    title={Physics vs Distributions: Pareto Optimal Flow Matching with Physics Constraints},
    author={Giacomo Baldan and Qiang Liu and Alberto Guardone and Nils Thuerey},
    booktitle={The Fourteenth International Conference on Learning Representations},
    year={2026},
    url={https://openreview.net/forum?id=tAf1KI3d4X}
}
Downloads last month
35

Paper for thuerey-group/PBFM