File size: 5,870 Bytes
f7d1207
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
96e2c07
f7d1207
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
---
language:
- en
license: cc-by-4.0
tags:
- physics

task_categories:
- time-series-forecasting
- other
task_ids:
- multivariate-time-series-forecasting
---

# 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:

```python
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](https://www.sciencedirect.com/book/9780124059351/fluid-mechanics), [Paper 2](https://journals.aps.org/prfluids/abstract/10.1103/PhysRevFluids.6.100504), [Paper 3](https://journals.aps.org/prfluids/abstract/10.1103/PhysRevFluids.9.014202).

**Data generated by**: [Rudy Morel](https://rudymorel.github.io/), CCM, Flatiron Institute.

**Code or software used to generate the data**: [Github repository](https://github.com/RudyMorel/the-well-rbc-sf), based on the software [Dedalus](https://dedalus-project.readthedocs.io/en/latest/pages/examples/ivp_2d_shear_flow.html).

**Equation**:

While we solve equations in the frequency domain, the original time-domain problem is

$$
\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 = (u_x,u_y)\\) is the (horizontal and vertical) velocity, \\(s\\) is the tracer, and \\(p\\) is the pressure,
with the additional constraints \\(\int p = 0\\) (pressure gauge).

These PDEs are parameterized by the Reynolds and Schmidt numbers through \\(\nu\\) and \\(D\\).

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

![Gif](https://users.flatironinstitute.org/~polymathic/data/the_well/datasets/shear_flow/gif/tracer_normalized.gif)

| Dataset    | FNO | TFNO  | Unet | CNextU-net
|:-:|:-:|:-:|:-:|:-:|
| `shear_flow`  | 0.1567 | \\(\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 \\(u_1x\\) is composed of \\(n_\text{shear}\\) shears uniformly spaced along the \\(z\\) direction. Each shear is implemented with a tanh (hyperbolic tangent) \\(\text{tanh}(5\frac{y-y_k}{n_\text{shear}w})\\) where \\(z_k\\) is the vertical position of the shear and \\(w\\) is a width factor.
The velocity field \\(u_y\\) is composed of sinusoids along the \\(x\\) direction located at the shear. These sinusoids have an exponential decay away from the shear in the \\(y\\) direction \\(\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 \\(n_\text{shear},n_\text{blobs},w\\).

**Boundary conditions:** periodic.

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

**Total time range ( \\(t_{min}\\) to \\(t_{max}\\)):** \\(t_{min} = 0\\), \\(t_{max} = 20\\).

**Spatial domain size:** \\(0\leq x \leq 1\\) horizontally, and \\(-1 \leq y \leq 1\\) vertically.

**Set of coefficients or non-dimensional parameters evaluated:** \\(\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 \\(n_\text{shear}\in[2,4]\\), \\(n_\text{blobs}\in[2,3,4,5]\\), \\(w\in[0.25, 0.5, 1.0, 2.0, 4.0]\\).


**Approximate time to generate the data:** per input parameter: \\(\sim 1500s\\), total: \\(\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}
}
```