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.
How To Load from HuggingFace Hub
- Be sure to have
the_well
installed (pip install the_well
) - Use the
WellDataModule
to retrieve data as follows:
from the_well.data import WellDataModule
# The following line may take a couple of minutes to instantiate the datamodule
datamodule = WellDataModule(
"hf://datasets/polymathic-ai/",
"shear_flow",
)
train_dataloader = datamodule.train_dataloader()
for batch in dataloader:
# Process training batch
...
Periodic shear flow
One line description of the data: 2D periodic incompressible shear flow.
Longer description of the data: Shear flow are a type of fluid characterized by the continuous deformation of adjacent fluid layers sliding past each other with different velocities. This phenomenon is commonly observed in various natural and engineered systems, such as rivers, atmospheric boundary layers, and industrial processes involving fluid transport. The dataset explores a 2D periodic shearflow governed by incompressible Navier-Stokes equation.
Associated paper: Paper 1, Paper 2, Paper 3.
Data generated by: Rudy Morel, CCM, Flatiron Institute.
Code or software used to generate the data: Github repository, based on the software Dedalus.
Equation:
While we solve equations in the frequency domain, the original time-domain problem is
where is the spatial Laplacian, is the (horizontal and vertical) velocity, is the tracer, and is the pressure, with the additional constraints (pressure gauge).
These PDEs are parameterized by the Reynolds and Schmidt numbers through and .
Dataset | FNO | TFNO | Unet | CNextU-net |
---|---|---|---|---|
shear_flow |
0.1567 | 0.5910 | 0.2037 |
Table: VRMSE metrics on test sets (lower is better). Best results are shown in bold. VRMSE is scaled such that predicting the mean value of the target field results in a score of 1.
About the data
Dimension of discretized data: 200 time-steps of 128 256 images.
Fields available in the data: tracer (scalar field), pressure (scalar field), velocity (vector field).
Number of simulations: 1120 (28 PDE parameters 40 initial conditions).
Size of the ensemble of all simulations: 114.7 GB.
Grid type: uniform, cartesian coordinates.
Initial conditions: the shear field is composed of shears uniformly spaced along the direction. Each shear is implemented with a tanh (hyperbolic tangent) where is the vertical position of the shear and is a width factor. The velocity field is composed of sinusoids along the direction located at the shear. These sinusoids have an exponential decay away from the shear in the direction . The tracer matches the shear at initialization. The pressure is initialized to zero. The initial condition is thus indexed by .
Boundary conditions: periodic.
Simulation time-step: 0.1 (simulation time unit).
Total time range ( to ): , .
Spatial domain size: horizontally, and vertically.
Set of coefficients or non-dimensional parameters evaluated: . For initial conditions , , .
Approximate time to generate the data: per input parameter: , total: hours.
Hardware used to generate the data and precision used for generating the data: 7 nodes of 64 CPU cores each with 32 tasks running in parallel on each node, in single precision.
What is interesting and challenging about the data:
Shear flow are non-linear phenomena arrising in fluid mechanics and turbulence. Predicting the behavior of the shear flow under different Reynolds and Schmidt numbers is essential for a number of applications in aerodynamics, automotive, biomedical. Furthermore, such flow are unstable at large Reynolds number.
Please cite these associated papers if you use this data in your research:
@article{burns2020dedalus,
title={Dedalus: A flexible framework for numerical simulations with spectral methods},
author={Burns, Keaton J and Vasil, Geoffrey M and Oishi, Jeffrey S and Lecoanet, Daniel and Brown, Benjamin P},
journal={Physical Review Research},
volume={2},
number={2},
pages={023068},
year={2020},
publisher={APS}
}
- Downloads last month
- 21