bsk-2001 commited on
Commit
35ff453
·
verified ·
1 Parent(s): 3122219

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +76 -0
README.md ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-4.0
3
+ tags:
4
+ - CFD
5
+ - Multiphase
6
+ - CompressibleFlow
7
+ - SciML
8
+ - Droplets
9
+ - Shock
10
+ - 3D
11
+ pretty_name: 3D Shock-Induced Droplet Breakup in Air
12
+ size_categories:
13
+ - 1K<n<10K
14
+ ---
15
+
16
+ # 3D Shock-Induced Air Bubble Collapse in Water
17
+ ## Description
18
+
19
+ The dataset captures the time-evolving behavior of 3D spherical droplets subjected to an external shock wave in air.
20
+ The interaction with the shock wave results in two different breakup-modes of the droplet (SIE and RTP).
21
+ Here we investigate a scenario with symmetric boundary conditions at the north, south, top and bottom walls.
22
+
23
+ <div style="display:flex;justify-content:center">
24
+ <video style="width:100%;max-width:800px" src="https://huggingface.co/datasets/FluidVerse/3D_SABW_SSOOSS/resolve/main/3D_SABW_SSOOSS_Mas1.30.mp4" loop autoplay muted></video>
25
+ </div>
26
+
27
+ ## About the data
28
+ |Metadata|Description|
29
+ |-----|------|
30
+ |Solver|[ALPACA](https://www.sciencedirect.com/science/article/abs/pii/S0010465521003581)|
31
+ |PDE|3D compressible Euler equations|
32
+ |Dimension|3D|
33
+ |Number of Trajectories|180|
34
+ |Train-Test-Split|0.8 - 0.2|
35
+ |Number of Timesteps|101|
36
+ |Simulation End Time|91 \\( \mu s \\) - 1240 \\( \mu s \\) (depending on the IC)|
37
+ |Save Interval|0.91 \\( \mu s \\) - 12.40 \\( \mu s \\) (depending on the IC)|
38
+ |Fields| - density_mixed <br/> - density_water <br/> - density_air <br/> - pressure <br/> - velocityX <br/> - velocityY <br/> - velocityZ <br/> - volume_fraction_water|
39
+ |Simulation Resolution|256x128x128 (Clipped and Downsampled)|
40
+ |Dataset Resolution|128x128x128|
41
+ |Grid Type|Cartesian Uniform Grid|
42
+ |Initial Condition|The droplets are in equilibrium with the surrounding pre-shock environment.|
43
+ |Boundary Conditions| North: Symmetry <br/> South: Symmetry <br/> Top: Symmetry <br/> Bottom: Symmetry <br/> East: Open <br/> West: Open|
44
+ |Conditioning Parameters| Shock Mach Number [1.2 - 3.2] <br/> Weber Number [10 - 30 & 10k - 30k] <br/> Droplet Count [1 - 5] <br/> Droplet Radius [2mm - 3.5mm] <br/> Droplet Center Position [Random in Domain]
45
+
46
+ Further metadata information can be found in the corresponding `metadata.json` file.
47
+
48
+ ## Dataset Structure
49
+ The train.h5 and test.h5 in this repository are meta hdf5 files that link to multiple subparts inside the corresponding subset folder.
50
+ The mentioned train-test-split [0.8 - 0.2] is only valid when all subparts inside the subset folder are present.
51
+
52
+ ## Key Challenges for Surrogate Modelling
53
+ - Distinguish breakup mode - RTP or SIE
54
+ - Accurate interface capturing
55
+ - Understanding wave dynamics
56
+ - Tracking droplet fragments
57
+ - Capture droplet interactions in the case of multi-droplets
58
+
59
+ ## How to Download the Dataset
60
+
61
+ Download the whole dataset:
62
+ ```
63
+ hf download FluidVerse/3D_SDBA_SSOOSS --repo-type dataset
64
+ ```
65
+
66
+ Download only part of the dataset with resolution 128x128x128:
67
+ ```
68
+ from huggingface_hub import snapshot_download
69
+
70
+ snapshot_download(
71
+ repo_id="FluidVerse/3D_SDBA_SSOOSS",
72
+ repo_type="dataset",
73
+ allow_patterns="3d_shock_multi_droplet_breakup_in_air/128x128x128/*",
74
+ local_dir="."
75
+ )
76
+ ```