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

  1. Be sure to have the_well installed (pip install the_well)
  2. 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

βˆ‚uβˆ‚t+βˆ‡pβˆ’Ξ½Ξ”u=βˆ’uβ‹…βˆ‡u ,βˆ‚sβˆ‚tβˆ’DΞ”s=βˆ’uβ‹…βˆ‡s , \begin{align*} \frac{\partial u}{\partial t} + \nabla p - \nu \Delta u & = -u\cdot\nabla u\,, \\ \frac{\partial s}{\partial t} - D \Delta s & = -u \cdot\nabla s\,, \end{align*}

where Ξ”=βˆ‡β‹…βˆ‡\Delta = \nabla \cdot \nabla is the spatial Laplacian, u=(ux,uy)u = (u_x,u_y) is the (horizontal and vertical) velocity, ss is the tracer, and pp is the pressure, with the additional constraints ∫p=0\int p = 0 (pressure gauge).

These PDEs are parameterized by the Reynolds and Schmidt numbers through Ξ½\nu and DD.

(viscosity)       Ξ½=1/Reynolds(diffusivity)       D=Ξ½/Schmidt \begin{align*} \text{(viscosity)} ~~~~~~~ \nu & = 1 / \text{Reynolds} \\ \text{(diffusivity)} ~~~~~~~ D & = \nu / \text{Schmidt} \end{align*}

Gif

Dataset FNO TFNO Unet CNextU-net
shear_flow 0.1567 0.1348\mathbf{0.1348} 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 Γ—\times 256 images.

Fields available in the data: tracer (scalar field), pressure (scalar field), velocity (vector field).

Number of simulations: 1120 (28 PDE parameters Γ—\times 40 initial conditions).

Size of the ensemble of all simulations: 114.7 GB.

Grid type: uniform, cartesian coordinates.

Initial conditions: the shear field u1xu_1x is composed of nshearn_\text{shear} shears uniformly spaced along the zz direction. Each shear is implemented with a tanh (hyperbolic tangent) tanh(5yβˆ’yknshearw)\text{tanh}(5\frac{y-y_k}{n_\text{shear}w}) where zkz_k is the vertical position of the shear and ww is a width factor. The velocity field uyu_y is composed of sinusoids along the xx direction located at the shear. These sinusoids have an exponential decay away from the shear in the yy direction sin(nblobsΟ€x) e25w2∣yβˆ’yk∣2\text{sin}(n_\text{blobs}\pi x)\,e^{\frac{25}{w^2}|y-y_k|^2}. The tracer matches the shear at initialization. The pressure is initialized to zero. The initial condition is thus indexed by nshear,nblobs,wn_\text{shear},n_\text{blobs},w.

Boundary conditions: periodic.

Simulation time-step: 0.1 (simulation time unit).

Total time range ( tmint_{min} to tmaxt_{max}): tmin=0t_{min} = 0, tmax=20t_{max} = 20.

Spatial domain size: 0≀x≀10\leq x \leq 1 horizontally, and βˆ’1≀y≀1-1 \leq y \leq 1 vertically.

Set of coefficients or non-dimensional parameters evaluated: Reynolds∈[1e4,5e4,1e5,5e5],Schmidt∈[0.1,0.2,0.5,1.0,2.0,5.0,10.0]\text{Reynolds}\in[1e4, 5e4, 1e5, 5e5], \text{Schmidt}\in[0.1, 0.2, 0.5, 1.0, 2.0, 5.0, 10.0]. For initial conditions nshear∈[2,4]n_\text{shear}\in[2,4], nblobs∈[2,3,4,5]n_\text{blobs}\in[2,3,4,5], w∈[0.25,0.5,1.0,2.0,4.0]w\in[0.25, 0.5, 1.0, 2.0, 4.0].

Approximate time to generate the data: per input parameter: ∼1500s\sim 1500s, total: ∼5\sim 5 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