maximilianherde
commited on
Commit
•
32a9a0a
1
Parent(s):
31ae807
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,32 @@
|
|
1 |
-
---
|
2 |
-
license: cc-by-nc-4.0
|
3 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: cc-by-nc-4.0
|
3 |
+
---
|
4 |
+
|
5 |
+
# Short Description
|
6 |
+
|
7 |
+
Based on the forced incompressible Navier-Stokes equations, this dataset contains trajectories starting from initial conditions with piecewise constant vorticity.
|
8 |
+
|
9 |
+
# Dimensions
|
10 |
+
|
11 |
+
The assembled NetCDF file has a **single** variable called *solution* with dimensionality
|
12 |
+
- 20000 (number of trajectories)
|
13 |
+
- 21 (time steps)
|
14 |
+
- 2 (horizontal velocity, vertical velocity)
|
15 |
+
- 128 (x-dim)
|
16 |
+
- 128 (y-dim)
|
17 |
+
|
18 |
+
It was simulated on the unit square up to T=1 and saved as uniformly spaced in space and time. The forcing time- and sample-independent forcing field is given by 0.1sin(2pi(x+y)).
|
19 |
+
|
20 |
+
# Train/Val/Test-split
|
21 |
+
|
22 |
+
19640/120/240 trajectories
|
23 |
+
|
24 |
+
# Download & Assembly
|
25 |
+
|
26 |
+
The dataset can be downloaded, e.g., via `huggingface-cli download`.
|
27 |
+
|
28 |
+
After download, the chunked data can be assembled into a single NetCDF file using the provided `assemble_data.py` script.
|
29 |
+
Use it as follows:
|
30 |
+
```bash
|
31 |
+
python assemble_data.py --input_dir . --output_file FNS-KF.nc
|
32 |
+
```
|