--- license: cc-by-nc-4.0 tags: - CFD - Multiphase - CompressibleFlow - SciML - Bubbles - Shock - R22 pretty_name: 2D Shock-Induced R22 Bubble Collapse in Air size_categories: - 10K ## About the data |Metadata|Description| |-----|------| |Solver|[ALPACA](https://www.sciencedirect.com/science/article/abs/pii/S0010465521003581)| |PDE|2D compressible Euler equations| |Dimension|2D| |Number of Trajectories|300| |Train-Test-Split|0.8 - 0.2| |Number of Timesteps|101| |Simulation End Time|70 \\( \mu s \\)| |Save Interval|0.7 \\( \mu s \\)| |Fields| - density_mixed
- density_water
- density_air
- pressure
- velocityX
- velocityY
- volume_fraction_water| |Simulation Resolution|2048x2560 (Clipped and Downsampled)| |Dataset Resolution|512x512 & 256x256| |Grid Type|Cartesian Uniform Grid| |Initial Condition|The bubbles are in equilibrium with the surrounding pre-shock environment.| |Boundary Conditions| North: Open
South: Open
East: Open
West: Open| |Conditioning Parameters| Shock Mach Number [1.3 - 2.1]
Bubble Count [1 - 5]
Bubble Radius [2mm - 3.5mm]
Bubble Center Position [Random in Domain] Further metadata information can be found in the corresponding `metadata.json` file. ## Key Challenges for Surrogate Modelling - Accurate interface capturing - Understanding wave dynamics - Tracking bubble fragments ## How to Download the Dataset Download the whole dataset: ``` hf download FluidVerse/2D_SRBA_OOOO --repo-type dataset ``` Download only part of the dataset with resolution 256x256: ``` from huggingface_hub import snapshot_download snapshot_download( repo_id="FluidVerse/2D_SRBA_OOOO", repo_type="dataset", allow_patterns="multi_r22_bubble/256x256/*", local_dir="." ) ```