ydai17 commited on
Commit
275dbe8
·
verified ·
1 Parent(s): 52571bb

dataset card

Browse files
Files changed (1) hide show
  1. README.md +37 -0
README.md ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ tags:
4
+ - turbulence
5
+ - computational-fluid-dynamics
6
+ - direct-numerical-simulation
7
+ - navier-stokes
8
+ - scientific-machine-learning
9
+ pretty_name: 'TIDE - helical_re86_retune2_256_fp64'
10
+ ---
11
+
12
+ # TIDE - `helical_re86_retune2_256_fp64`
13
+
14
+ One configuration of **TIDE** (Turbulent Incompressible DNS Ensembles): a 256^3
15
+ fp64 direct numerical simulation of the incompressible Navier-Stokes equations,
16
+ shipped as independent realizations and released only after passing a fixed
17
+ acceptance standard of statistical gates and equation-level residual checks.
18
+
19
+ - **Index of all configurations:** https://huggingface.co/datasets/ydai17/TIDE
20
+ - **Code:** https://github.com/Dyloong1/TIDE-dataset-benchmark
21
+ - **DOI record:** https://doi.org/10.5281/zenodo.21589489
22
+
23
+ ```bash
24
+ huggingface-cli download ydai17/TIDE-helical_re86_retune2_256_fp64 --repo-type dataset \
25
+ --local-dir ./tide-data/corpus/helical_re86_retune2_256_fp64.zarr
26
+ ```
27
+
28
+ ```python
29
+ import zarr
30
+ z = zarr.open("./tide-data/corpus/helical_re86_retune2_256_fp64.zarr", mode="r")
31
+ u = z["u"][0] # (3, 256, 256, 256) velocity of the first frame
32
+ ```
33
+
34
+ Each store holds velocity `[N,3,256^3]`, pressure `[N,256^3]`, the optional
35
+ scalar/buoyancy channel, and per-frame `t`, `k_max_eta`, `seed`. Fields are
36
+ computed in fp64 and stored in fp32; frames are exported every 0.05 T_L.
37
+ Data under CC-BY-4.0.