Dataset Viewer
The dataset viewer is not available for this dataset.
Cannot get the config names for the dataset.
Error code:   ConfigNamesError
Exception:    TypeError
Message:      Value.__init__() missing 1 required positional argument: 'dtype'
Traceback:    Traceback (most recent call last):
                File "/src/services/worker/src/worker/job_runners/dataset/config_names.py", line 67, in compute_config_names_response
                  config_names = get_dataset_config_names(
                      path=dataset,
                      token=hf_token,
                  )
                File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 161, in get_dataset_config_names
                  dataset_module = dataset_module_factory(
                      path,
                  ...<4 lines>...
                      **download_kwargs,
                  )
                File "/usr/local/lib/python3.14/site-packages/datasets/load.py", line 1217, in dataset_module_factory
                  raise e1 from None
                File "/usr/local/lib/python3.14/site-packages/datasets/load.py", line 1192, in dataset_module_factory
                  ).get_module()
                    ~~~~~~~~~~^^
                File "/usr/local/lib/python3.14/site-packages/datasets/load.py", line 700, in get_module
                  config_name: DatasetInfo.from_dict(dataset_info_dict)
                               ~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/info.py", line 284, in from_dict
                  return cls(**{k: v for k, v in dataset_info_dict.items() if k in field_names})
                File "<string>", line 20, in __init__
                File "/usr/local/lib/python3.14/site-packages/datasets/info.py", line 170, in __post_init__
                  self.features = Features.from_dict(self.features)
                                  ~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/features/features.py", line 1993, in from_dict
                  obj = generate_from_dict(dic)
                File "/usr/local/lib/python3.14/site-packages/datasets/features/features.py", line 1574, in generate_from_dict
                  return {key: generate_from_dict(value) for key, value in obj.items()}
                               ~~~~~~~~~~~~~~~~~~^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/features/features.py", line 1593, in generate_from_dict
                  return class_type(**{k: v for k, v in obj.items() if k in field_names})
              TypeError: Value.__init__() missing 1 required positional argument: 'dtype'

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.

DeepCFD

Dataset Overview

The DeepCFD dataset is a publicly available two-dimensional steady-state laminar-flow computational fluid dynamics dataset created by a research team affiliated with the German Research Center for Artificial Intelligence (DFKI). The dataset was generated with OpenFOAM's simpleFoam solver and contains approximately 1,000 samples of flow around randomly generated obstacles in a channel. It is suitable for CFD solver acceleration, evaluation of flow-field generalization across different obstacle configurations, prediction-error analysis, and flow-field visualization.

Supported Tasks

This standardized dataset repository organizes DeepCFD's input geometry and signed distance fields in dataX.pkl and the corresponding ground-truth CFD solutions in dataY.pkl. Each sample contains steady-state flow variables including computational mesh coordinates, horizontal velocity (U_x), vertical velocity (U_y), and pressure (p). It also provides a signed distance function (SDF) and flow-region class labels to represent obstacle geometry, the computational domain, and boundary conditions. The data can be used as input for training, inference, evaluation, and visualization with the OneScience/DeepCFD model.

Data Format

File shape dtype Channel Description
data/dataX.pkl [981, 3, 172, 79] float32 Channel 0: signed distance to the obstacle surface; Channel 1: fluid-region label; Channel 2: signed distance to the top/bottom surfaces
data/dataY.pkl [981, 3, 172, 79] float32 Channel 0: horizontal velocity Ux; Channel 1: vertical velocity Uy; Channel 2: pressure pressure

Each sample in this dataset is represented on a 172 × 79 regular grid. The input data consists of the signed distance to the obstacle surface, fluid-region labels, and signed distances to the top/bottom surfaces. The output data consists of the corresponding horizontal velocity Ux, vertical velocity Uy, and pressure pressure.

How to Use the Dataset

This dataset is compatible with the OneScience-Sugon/DeepCFD model. During DeepCFD runs, scripts in the model package can organize the data from this repository into the model's working directory.

Download the dataset:

hf download --dataset OneScience-Sugon/deepcfd --local-dir ./data

Official OneScience Information

Citation and License

Downloads last month
-

Paper for OneScience-Sugon/deepcfd