pedrota2000 commited on
Commit
229dc69
·
verified ·
1 Parent(s): 3d41565

Add files using upload-large-folder tool

Browse files
Files changed (1) hide show
  1. README.md +64 -3
README.md CHANGED
@@ -1,3 +1,64 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # NS Simulation Dataset — 3D Driven Turbulence (128³)
2
+
3
+ ## Overview
4
+
5
+ This dataset contains output from a 3D isothermal hydrodynamic driven turbulence simulation run with [AthenaK](https://github.com/PrincetonUniversity/athenak). The simulation models subsonic turbulence driven on large scales in a periodic box.
6
+
7
+ ## Simulation Parameters
8
+
9
+ | Parameter | Value |
10
+ |---|---|
11
+ | Code | AthenaK |
12
+ | Problem | 3D driven turbulence |
13
+ | Grid resolution | 128 × 128 × 128 |
14
+ | Domain | [-0.5, 0.5]³ (unit box) |
15
+ | Boundary conditions | Periodic (all faces) |
16
+ | EOS | Isothermal |
17
+ | Isothermal sound speed | 5.0 |
18
+ | Time integrator | RK2 |
19
+ | CFL number | 0.3 |
20
+ | Spatial reconstruction | PLM |
21
+ | Riemann solver | HLLE |
22
+
23
+ ## Turbulence Driving
24
+
25
+ | Parameter | Value |
26
+ |---|---|
27
+ | Driving type | Driven (continuously forced) |
28
+ | Energy injection rate (`dedt`) | 1×10⁻⁴ |
29
+ | Correlation time (`tcorr`) | 5.0 |
30
+ | Driving wavenumber range | nlow=1, nhigh=3 (peak at n=2) |
31
+ | Spectral form | Parabolic |
32
+ | Driving mode | Purely solenoidal (sol_fraction=1.0) |
33
+
34
+ ## Files
35
+
36
+ - **Format:** Legacy VTK binary (`DATASET STRUCTURED_POINTS`)
37
+ - **Naming:** `Turb.hydro_w.NNNNN.vtk` where `NNNNN` is the output index
38
+ - **Total files:** 1001 snapshots (indices 18903–19903)
39
+ - **Time range:** t ≈ 189.03 to 199.03 (output cadence Δt = 0.01)
40
+ - **Grid size per file:** 128³ = 2,097,152 cells
41
+
42
+ ## Data Fields (per file)
43
+
44
+ Each VTK file contains the following cell-centred scalar fields:
45
+
46
+ | Field name | Description |
47
+ |---|---|
48
+ | `dens` | Mass density ρ |
49
+ | `velx` | Velocity component v_x |
50
+ | `vely` | Velocity component v_y |
51
+ | `velz` | Velocity component v_z |
52
+ | `s_00` | Passive scalar (tracer) |
53
+
54
+ ## Reading the Data
55
+
56
+ The files are standard VTK legacy binary format and can be read with [ParaView](https://www.paraview.org/), [VisIt](https://visit-dav.github.io/visit-website/), or Python via `vtk` or `pyvista`:
57
+
58
+ ```python
59
+ import pyvista as pv
60
+
61
+ mesh = pv.read("Turb.hydro_w.18903.vtk")
62
+ density = mesh["dens"].reshape(128, 128, 128)
63
+ velx = mesh["velx"].reshape(128, 128, 128)
64
+ ```