CoolFace
Datasetpublic

FluidVerse/samples

Fluidverse Samples This dataset provides sample files for all of the datasets published by the Fluidverse Organization. For each dataset, two trajectories are provided - one with a single bubble / droplet and one multi-droplet / bubble trajectory with five bubbles / droplets. Note: This is not a standalone dataset with a test and train split. This huggingface dataset serves solely as a preview for the complete datasets listed below. Dataset samples… See the full description on the dataset page: https://huggingface.co/datasets/FluidVerse/samples.

sourceHugging Facecc-by-nc-4.0updated 5mo agoView on Hugging Face
0likes335downloads
README.md49 linesDownload Raw Back to root
1---2license: cc-by-nc-4.03tags:4- CFD5- Multiphase6- CompressibleFlow7- SciML8- Bubbles9- Droplets10- Shock11pretty_name: Fluidverse Samples12---13 14# Fluidverse Samples15 16This dataset provides sample files for all of the datasets published by the  Fluidverse Organization. 17For each dataset, two trajectories are provided - one with a single bubble / droplet and one multi-droplet / bubble trajectory with five bubbles / droplets. 18 19**Note:** This is not a standalone dataset with a test and train split. This huggingface dataset serves solely as a preview for the complete datasets listed below.20 21## Dataset samples22 23| Dataset name | Dataset shortname | URL |24|--------------|-------------------|-----|25|2D Shock-Induced Air Bubble Collapse in Water with Symmetric BC|2D_SABW_SSOO|https://huggingface.co/datasets/FluidVerse/2D_SABW_SSOO|26|2D Shock-Induced Air Bubble Collapse in Water with Open BC|2D_SABW_OOOO|https://huggingface.co/datasets/FluidVerse/2D_SABW_OOOO|27|2D Shock-Induced Droplet Breakup in Air with Symmetric BC|2D_SDBA_SSOO|https://huggingface.co/datasets/FluidVerse/2D_SDBA_SSOO|28|2D Shock-Induced R22 Bubble Collapse in Air with Open BC|2D_SRBA_OOOO|https://huggingface.co/datasets/FluidVerse/2D_SRBA_OOOO|29|3D Shock-Induced Air Bubble Collapse in Water with Symmetric BC|3D_SABW_SSOOSS|https://huggingface.co/datasets/FluidVerse/3D_SABW_SSOOSS|30|3D Shock-Induced Droplet Breakup in Air with Symmetric BC|3D_SDBA_SSOOSS|https://huggingface.co/datasets/FluidVerse/3D_SDBA_SSOOSS|31 32## How to Download the Dataset33 34Download the whole dataset:35```36hf download FluidVerse/samples --repo-type dataset37```38 39Download only one dataset sample:40```41from huggingface_hub import snapshot_download42 43snapshot_download(44    repo_id="FluidVerse/samples",45    repo_type="dataset",46    allow_patterns="2D_SABW_OOOO_256x256_samples.h5",47    local_dir="."48)49```