bsk-2001 commited on
Commit
24d4248
·
verified ·
1 Parent(s): 14556f3

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +70 -0
README.md ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-4.0
3
+ tags:
4
+ - CFD
5
+ - Multiphase
6
+ - CompressibleFlow
7
+ - SciML
8
+ - Bubbles
9
+ - Shock
10
+ - R22
11
+ pretty_name: 2D Shock-Induced R22 Bubble Collapse in Air
12
+ size_categories:
13
+ - 10K<n<100K
14
+ ---
15
+
16
+ # 2D Shock-Induced R22 Bubble Collapse in Air
17
+ ## Description
18
+
19
+ The dataset captures the time-evolving behavior of 2D cylindrical R22 bubbles subjected to an external shock wave in air.
20
+ The interaction with the shock wave results in a collapse of the R22 bubble.
21
+ Here we investigate a scenario with open boundary conditions at every wall.
22
+
23
+ <div style="display:flex;justify-content:center">
24
+ <video style="width:100%;max-width:400px" src="https://huggingface.co/datasets/FluidVerse/2D_SABW_OOOO/resolve/main/SABW_OOOO_Mas2.10.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|2D compressible Euler equations|
32
+ |Dimension|2D|
33
+ |Number of Trajectories|300|
34
+ |Train-Test-Split|0.8 - 0.2|
35
+ |Number of Timesteps|101|
36
+ |Simulation End Time|70 \\( \mu s \\)|
37
+ |Save Interval|0.7 \\( \mu s \\)|
38
+ |Fields| - density_mixed <br/> - density_water <br/> - density_air <br/> - pressure <br/> - velocityX <br/> - velocityY <br/> - volume_fraction_water|
39
+ |Simulation Resolution|2048x2560 (Clipped and Downsampled)|
40
+ |Dataset Resolution|512x512 & 256x256|
41
+ |Grid Type|Cartesian Uniform Grid|
42
+ |Initial Condition|The bubbles are in equilibrium with the surrounding pre-shock environment.|
43
+ |Boundary Conditions| North: Open <br/> South: Open <br/> East: Open <br/> West: Open|
44
+ |Conditioning Parameters| Shock Mach Number [1.3 - 2.1] <br/> Bubble Count [1 - 5] <br/> Bubble Radius [2mm - 3.5mm] <br/> Bubble Center Position [Random in Domain]
45
+
46
+ Further metadata information can be found in the corresponding `metadata.json` file.
47
+
48
+ ## Key Challenges for Surrogate Modelling
49
+ - Accurate interface capturing
50
+ - Understanding wave dynamics
51
+ - Tracking bubble fragments
52
+
53
+ ## How to Download the Dataset
54
+
55
+ Download the whole dataset:
56
+ ```
57
+ hf download FluidVerse/2D_SRBA_OOOO --repo-type dataset
58
+ ```
59
+
60
+ Download only part of the dataset with resolution 256x256:
61
+ ```
62
+ from huggingface_hub import snapshot_download
63
+
64
+ snapshot_download(
65
+ repo_id="FluidVerse/2D_SRBA_OOOO",
66
+ repo_type="dataset",
67
+ allow_patterns="multi_r22_bubble/256x256/*",
68
+ local_dir="."
69
+ )
70
+ ```