Datasets:

ArXiv:
License:
maximilianherde commited on
Commit
32c5b1d
·
verified ·
1 Parent(s): e7d7555

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +32 -3
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 compressible Euler equations, this dataset contains trajectories starting from 4-quadrant Riemann problems.
8
+
9
+ # Dimensions
10
+
11
+ The assembled NetCDF file has a **single** variable called *data* with dimensionality
12
+ - 10000 (number of trajectories)
13
+ - 21 (time steps)
14
+ - 4 (density, horizontal velocity, vertical velocity, pressure)
15
+ - 128 (x-dim)
16
+ - 128 (y-dim)
17
+
18
+ It was simulated on the unit square up to T=1.
19
+
20
+ # Train/Val/Test-split
21
+
22
+ 9640/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 CE-RP.nc
32
+ ```