Datasets:

Modalities:
Tabular
Text
Size:
< 1K
DOI:
License:
shakxy42 commited on
Commit
bb06a67
·
verified ·
1 Parent(s): 0820ae1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +48 -27
README.md CHANGED
@@ -1,31 +1,52 @@
1
  ---
2
  license: cc-by-4.0
3
  ---
 
 
 
 
4
  ---
5
- dataset_info:
6
- config_name: single-bubble
7
- features:
8
- - name: input
9
- sequence:
10
- sequence:
11
- sequence:
12
- sequence: float32
13
- - name: output
14
- sequence:
15
- sequence:
16
- sequence:
17
- sequence: float32
18
- - name: fluid_params
19
- sequence: float32
20
- - name: filename
21
- dtype: string
22
- splits:
23
- - name: train
24
- num_bytes: 142299153
25
- num_examples: 16
26
- - name: test
27
- num_bytes: 53362183
28
- num_examples: 6
29
- download_size: 0
30
- dataset_size: 195661336
31
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-4.0
3
  ---
4
+ # BubbleML 2.0:
5
+
6
+ **BubbleML_2** is a high-fidelity dataset of boiling simulations in 2D for three fluids (FC-72, Liquid N2 and R515B). It provides paired time-series fields stored in HDF5 (.hdf5) files together with metadata (.json) and explicit train/test splits.
7
+
8
  ---
9
+
10
+ ## 🚀 Quickstart
11
+
12
+ The current available dataset subsets are-
13
+ ```
14
+ "single-bubble", "pb-saturated", "pb-subcooled", "fb-velscale", "fb-chf"
15
+ ```
16
+ They are chosen for each individual forecasting task in our paper, viz. Single Bubble, Saturated Pool Boiling, Subcooled Pool Boiling, Flow Boiling- Varying Inlet Velocity and
17
+ Flow Boiling- Varying Heat Flux.
18
+ ```python
19
+ from datasets import load_dataset
20
+
21
+ # Load the TRAIN split
22
+ ds_train = load_dataset(
23
+ "hpcforge/BubbleML_2",
24
+ name="single-bubble",
25
+ split="train",
26
+ streaming=True, # to save disk space
27
+ trust_remote_code=True, # required to run the custom dataset script
28
+ )
29
+
30
+ # Load the TEST split
31
+ ds_test = load_dataset(
32
+ "hpcforge/BubbleML_2",
33
+ name="single-bubble",
34
+ split="test",
35
+ streaming=True,
36
+ trust_remote_code=True,
37
+ )
38
+ ```
39
+ Each example in ds_train / ds_test has the following fields:
40
+ * input
41
+ NumPy array of shape (time_window=5, fields=4, HEIGHT, WIDTH)
42
+ * output
43
+ NumPy array of shape (time_window=5, fields=4, HEIGHT, WIDTH)
44
+ * fluid_params
45
+ List of 9 floats representing: Inverse Reynolds Number, Non-dimensionalized Specific Heat, Non-dimensionalized Viscosity, Non-dimensionalized Density,
46
+ Non-dimensionalized Thermal Conductivity, Stefan Number, Prandtl Number, Nucleation wait time and the Heater temperature.
47
+ ```
48
+ [inv_reynolds, cpgas, mugas, rhogas, thcogas, stefan, prandtl, heater.nucWaitTime, heater.wallTemp]
49
+ ```
50
+ * filename
51
+ HDF5 filename (e.g. Twall_90.hdf5)
52
+