Datasets:
The full dataset viewer is not available (click to read why). Only showing a preview of the rows.
Error code: JobManagerCrashedError
Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
image image | label class label |
|---|---|
0data0 | |
1data1 | |
2data10 | |
3data100 | |
4data1000 | |
5data1001 | |
6data1002 | |
7data1003 | |
8data1004 | |
9data1005 | |
10data1006 | |
11data1007 | |
12data1008 | |
13data1009 | |
14data101 | |
15data1010 | |
16data1011 | |
17data1012 | |
18data1013 | |
19data1014 | |
20data1015 | |
21data1016 | |
22data1017 | |
23data1018 | |
24data1019 | |
25data102 | |
26data1020 | |
27data1021 | |
28data1022 | |
29data1023 | |
30data1024 | |
31data1025 | |
32data1026 | |
33data1027 | |
34data1028 | |
35data1029 | |
36data103 | |
37data1030 | |
38data1031 | |
39data1032 | |
40data1033 | |
41data1034 | |
42data1035 | |
43data1036 | |
44data1037 | |
45data1038 | |
46data1039 | |
47data104 | |
48data1040 | |
49data1041 | |
50data1042 | |
51data1043 | |
52data1044 | |
53data1045 | |
54data1046 | |
55data1047 | |
56data1048 | |
57data1049 | |
58data105 | |
59data1050 | |
60data1051 | |
61data1052 | |
62data1053 | |
63data1054 | |
64data1055 | |
65data1056 | |
66data1057 | |
67data1058 | |
68data1059 | |
69data106 | |
70data1060 | |
71data1061 | |
72data1062 | |
73data1063 | |
74data1064 | |
75data1065 | |
76data1066 | |
77data1067 | |
78data1068 | |
79data1069 | |
80data107 | |
81data1070 | |
82data1071 | |
83data1072 | |
84data1073 | |
85data1074 | |
86data1075 | |
87data1076 | |
88data1077 | |
89data1078 | |
90data1079 | |
91data108 | |
92data1080 | |
93data1081 | |
94data1082 | |
95data1083 | |
96data1084 | |
97data1085 | |
98data1086 | |
99data1087 |
Paired Compressible / Boussinesq Flow with Random Temperature BCs
📄 Paper: A Neural Surrogate Approach for Simulating Natural Convection Problems (arXiv:2606.25259) — Nurshat Menglik, Alex Shao, David Hyde.
10,000 matched pairs of 2D natural-convection simulations of the differentially heated square cavity under randomized wall-temperature boundary conditions. Each sample solves the same problem twice — once with the Boussinesq model and once with the fully compressible model — producing aligned low-fidelity/high-fidelity field pairs.
Both solves use a monolithic, fully implicit mixed finite element method
(Taylor–Hood: [P2]^2 velocity, P1 scalars) on the unit square, implemented in
FEniCSx/DOLFINx.
Note: this is the earlier data release (December 2025). It stores pressure as the raw mean-subtracted perturbation and carries no per-sample
meta.json. For the newer run with recorded generation parameters and normalized pressure, see Paired_Boussinesq_Compressible_Dataset.
Contents
10,000 sample folders, data0 … data9999 (~57 GB total). Each folder contains:
| File | Description |
|---|---|
T_bouss.npy, T_comp.npy |
Temperature (P1 nodal values) |
ux_bouss.npy, uy_bouss.npy |
Boussinesq velocity components (P2 nodal values) |
ux_comp.npy, uy_comp.npy |
Compressible velocity components (P2 nodal values) |
p_bouss_pert.npy, p_comp_pert.npy |
Pressure, raw mean-subtracted perturbation |
rho_comp.npy |
Density (compressible solve only) |
coords_*.npy |
(n, 2) node coordinates matching each field above |
paired_fields_2x4.png |
2×4 visualization of the Boussinesq/compressible pair |
All arrays are float64 and unstructured: they are flat finite-element nodal
value arrays, not images. Node counts vary per sample (the mesh resolution is
swept across the dataset — roughly 1.5k to 71k temperature nodes), and velocity
lives on a richer P2 space than the P1 scalars — so always pair a field with its
own coords_*.npy file rather than assuming a common grid.
Loading
import numpy as np
T = np.load("data0/T_bouss.npy") # (n,)
xy = np.load("data0/coords_T_bouss.npy") # (n, 2)
# interpolate onto a regular grid for ML use
from scipy.interpolate import griddata
gx, gy = np.meshgrid(np.linspace(0, 1, 64), np.linspace(0, 1, 64))
T_grid = griddata(xy, T, (gx, gy), method="linear")
If you want ready-to-train tensors on a uniform grid instead of raw FE output, use NeuralConvection_2D_TrainTest and NeuralConvection_3D_TrainTest.
Source
Generated with the solver and data-generation pipeline at https://github.com/Nurshat317/NeuralConvection
License
Released under CC BY 4.0. You are free to share and adapt this data, including commercially, provided you give appropriate credit and indicate any changes. The requested form of credit is a citation to the paper below.
Citation
If you use this dataset in your research, please cite:
@article{menglik2026neural,
title = {A Neural Surrogate Approach for Simulating Natural Convection Problems},
author = {Menglik, Nurshat and Shao, Alex and Hyde, David},
journal = {arXiv preprint arXiv:2606.25259},
year = {2026},
eprint = {2606.25259},
archivePrefix = {arXiv},
primaryClass = {physics.comp-ph},
url = {https://arxiv.org/abs/2606.25259}
}
- Paper: arXiv:2606.25259
- Code: github.com/Nurshat317/NeuralConvection
- Downloads last month
- 1,547