Leekyo commited on
Commit
2255a26
·
verified ·
1 Parent(s): e9d55e3

Card: DrivAerNet-style — teaser GIF, TOC, News, modalities, dataloader, applications, acknowledgements

Browse files
Files changed (2) hide show
  1. README.md +116 -20
  2. assets/teaser.gif +3 -0
README.md CHANGED
@@ -32,6 +32,34 @@ tags:
32
  <img src="https://img.shields.io/badge/license-ODC--By%201.0-blue.svg" alt="License: ODC-By 1.0">
33
  </p>
34
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
  > **DeepJEB++** is a large-scale dataset of **generatively-designed jet-engine brackets**, each paired with
36
  > physics-based performance labels from an automated finite-element (FEA) pipeline. It is built by **augmenting
37
  > the SimJEB design space inside a 2D latent space** and lifting the synthesized images to 3D with a **3D
@@ -39,11 +67,14 @@ tags:
39
  > load cases. The result couples **geometry ↔ physics** at a scale (40× SimJEB) suitable for data-driven and
40
  > surrogate modelling in engineering design.
41
 
42
- Authors: Soyoung Yoo · Leekyo Jeong · Jinsu Ra · Dongeon Lee · Sunwoong Yang · Hyogu Jeong · Namwoo Kang — **KAIST SmartDesignLab**
 
 
 
43
 
44
  | | |
45
  |---|---|
46
- | **Designs (deployable)** | **15,360** |
47
  | **Load cases** | vertical / horizontal / diagonal / torsional |
48
  | **Per design** | surface mesh · boundary conditions · FEA surface fields · scalar labels (incl. mass) |
49
  | **Material** | Ti-6Al-4V · E = 113,800 MPa · ν = 0.342 |
@@ -53,7 +84,7 @@ Authors: Soyoung Yoo · Leekyo Jeong · Jinsu Ra · Dongeon Lee · Sunwoong Yang
53
 
54
  ---
55
 
56
- ## 1 · The data, qualitatively
57
 
58
  <div align="center">
59
  <img src="assets/gallery.png" alt="Generated bracket variety with auto-detected interfaces" width="92%">
@@ -67,8 +98,8 @@ Authors: Soyoung Yoo · Leekyo Jeong · Jinsu Ra · Dongeon Lee · Sunwoong Yang
67
  <br><sub><b>4-load FEA response fields.</b> Top: displacement (deformed ×9). Bottom: von Mises stress. Columns: vertical / horizontal / diagonal / torsional.</sub>
68
  </div>
69
 
70
- The hero banner above shows real brackets coloured by their **per-case vertical-load displacement field**
71
- (blue = clamped bolts, red = lug tip). The same brackets, as raw geometry:
72
 
73
  <div align="center">
74
  <img src="assets/banner_geometry.png" alt="Generated bracket meshes (geometry)" width="100%">
@@ -76,7 +107,7 @@ The hero banner above shows real brackets coloured by their **per-case vertical-
76
 
77
  ---
78
 
79
- ## 2 · Augmentation methodology
80
 
81
  The core idea is **2D latent-space augmentation**: instead of perturbing 3D meshes directly, new designs are
82
  synthesized by **interpolating between SimJEB seed brackets in the latent space of a fine-tuned diffusion
@@ -109,21 +140,28 @@ model**, then reconstructed in 3D by a foundation model and labelled by FEA.
109
 
110
  ---
111
 
112
- ## 3 · What each sample contains
113
 
114
- Every design shares one `<case>` id (e.g. `012-015-diag_xz_mm_IS02`) across mesh, boundary conditions, fields
115
- and the label row.
116
 
117
  ```
118
  DeepJEB-PP/
119
- ├── 1_surface_meshes.tar.gz # 15,360 × <case>.obj — input surface mesh (~50k verts)
120
- ├── 2_boundary_conditions.tar.gz # 15,360 × <case>.npz — bolt_idx (clamped), lug_idx (loaded), bolt_holes
121
- ├── 3_fea_fields.tar.gz # 15,360 × <case>.npz — surface_points/faces, per-load U & von Mises (×4)
122
- ├── deepjebpp_labels.csv # mass_g, vol_mm3, per-load max|u|, p95 von Mises, ...
123
  └── metadata.json # material / loads / units / schema
124
  ```
125
 
126
- > BC node indices reference the 25k FEM `surface_points` frame in `3_fea_fields/<case>.npz` (not the native `.obj`).
 
 
 
 
 
 
 
127
 
128
  **FEA specification**
129
 
@@ -138,16 +176,17 @@ DeepJEB-PP/
138
 
139
  ---
140
 
141
- ## 4 · Usage
142
 
143
- The dataset ships as per-component `.tar.gz` archives + a CSV. Download, extract, then load per case.
144
 
145
  ```bash
146
- # Download everything (recommended)
147
  huggingface-cli download KAIST-SmartDesignLab/DeepJEB-PP --repo-type dataset --local-dir DeepJEB-PP
148
  cd DeepJEB-PP && for f in *.tar.gz; do tar -xzf "$f"; done
149
  ```
150
 
 
 
151
  ```python
152
  import numpy as np, pandas as pd, trimesh
153
 
@@ -161,15 +200,62 @@ clamped = field["surface_points"][bc["bolt_idx"]] # clamped bolt nodes (mm)
161
  vm_ver = field["ver_vm"] # vertical-load von Mises (MPa)
162
  ```
163
 
164
- Single-file download via `huggingface_hub`:
165
 
166
  ```python
167
- from huggingface_hub import hf_hub_download
168
- p = hf_hub_download("KAIST-SmartDesignLab/DeepJEB-PP", "3_fea_fields.tar.gz", repo_type="dataset")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
169
  ```
170
 
171
  ---
172
 
 
 
 
 
 
 
 
 
 
 
 
 
173
  ## Citation
174
 
175
  ```bibtex
@@ -183,6 +269,16 @@ p = hf_hub_download("KAIST-SmartDesignLab/DeepJEB-PP", "3_fea_fields.tar.gz", re
183
  }
184
  ```
185
 
 
 
 
 
 
 
 
 
 
 
186
  ## License
187
 
188
  Released under the **Open Data Commons Attribution License (ODC-By v1.0)**, matching the upstream
 
32
  <img src="https://img.shields.io/badge/license-ODC--By%201.0-blue.svg" alt="License: ODC-By 1.0">
33
  </p>
34
 
35
+ <p align="center">Soyoung Yoo · Leekyo Jeong · Jinsu Ra · Dongeon Lee · Sunwoong Yang · Hyogu Jeong · Namwoo Kang &nbsp;—&nbsp; <b>KAIST SmartDesignLab</b></p>
36
+
37
+ ---
38
+
39
+ ## Contents
40
+
41
+ - [News](#news)
42
+ - [Overview](#overview)
43
+ - [The data, qualitatively](#the-data-qualitatively)
44
+ - [Augmentation methodology](#augmentation-methodology)
45
+ - [Dataset structure](#dataset-structure)
46
+ - [Usage](#usage)
47
+ - [Applications](#applications)
48
+ - [Citation](#citation)
49
+ - [Acknowledgements](#acknowledgements)
50
+ - [License](#license)
51
+
52
+ ---
53
+
54
+ ## News
55
+
56
+ - **2026-06** — DeepJEB++ released on Hugging Face: **15,360** designs with surface meshes, boundary conditions, per-load FEA surface fields, and scalar labels (incl. mass).
57
+ - **2026-06** — Preprint on arXiv ([2606.12994](https://arxiv.org/abs/2606.12994)); manuscript **under review**.
58
+
59
+ ---
60
+
61
+ ## Overview
62
+
63
  > **DeepJEB++** is a large-scale dataset of **generatively-designed jet-engine brackets**, each paired with
64
  > physics-based performance labels from an automated finite-element (FEA) pipeline. It is built by **augmenting
65
  > the SimJEB design space inside a 2D latent space** and lifting the synthesized images to 3D with a **3D
 
67
  > load cases. The result couples **geometry ↔ physics** at a scale (40× SimJEB) suitable for data-driven and
68
  > surrogate modelling in engineering design.
69
 
70
+ <div align="center">
71
+ <img src="assets/teaser.gif" alt="A generated bracket rotating, coloured by its vertical-load displacement field" width="46%">
72
+ <br><sub>A single design, coloured by its vertical-load displacement field (blue = clamped bolts, red = lug tip).</sub>
73
+ </div>
74
 
75
  | | |
76
  |---|---|
77
+ | **Designs (deployable)** | 15,360 |
78
  | **Load cases** | vertical / horizontal / diagonal / torsional |
79
  | **Per design** | surface mesh · boundary conditions · FEA surface fields · scalar labels (incl. mass) |
80
  | **Material** | Ti-6Al-4V · E = 113,800 MPa · ν = 0.342 |
 
84
 
85
  ---
86
 
87
+ ## The data, qualitatively
88
 
89
  <div align="center">
90
  <img src="assets/gallery.png" alt="Generated bracket variety with auto-detected interfaces" width="92%">
 
98
  <br><sub><b>4-load FEA response fields.</b> Top: displacement (deformed ×9). Bottom: von Mises stress. Columns: vertical / horizontal / diagonal / torsional.</sub>
99
  </div>
100
 
101
+ The hero banner shows real brackets coloured by their per-case vertical-load displacement field. The same
102
+ brackets, as raw geometry:
103
 
104
  <div align="center">
105
  <img src="assets/banner_geometry.png" alt="Generated bracket meshes (geometry)" width="100%">
 
107
 
108
  ---
109
 
110
+ ## Augmentation methodology
111
 
112
  The core idea is **2D latent-space augmentation**: instead of perturbing 3D meshes directly, new designs are
113
  synthesized by **interpolating between SimJEB seed brackets in the latent space of a fine-tuned diffusion
 
140
 
141
  ---
142
 
143
+ ## Dataset structure
144
 
145
+ Distributed as per-component `.tar.gz` archives + a CSV. Every design shares one `<case>` id
146
+ (e.g. `012-015-diag_xz_mm_IS02`) across all modalities.
147
 
148
  ```
149
  DeepJEB-PP/
150
+ ├── 1_surface_meshes.tar.gz # 15,360 × <case>.obj
151
+ ├── 2_boundary_conditions.tar.gz # 15,360 × <case>.npz
152
+ ├── 3_fea_fields.tar.gz # 15,360 × <case>.npz
153
+ ├── deepjebpp_labels.csv # scalar labels (15,360 rows)
154
  └── metadata.json # material / loads / units / schema
155
  ```
156
 
157
+ **Modalities**
158
+
159
+ | Modality | File | Content |
160
+ |---|---|---|
161
+ | Geometry | `1_surface_meshes/<case>.obj` | input surface mesh, native ~50k verts |
162
+ | Boundary conditions | `2_boundary_conditions/<case>.npz` | `bolt_idx` (clamped), `lug_idx` (loaded), `bolt_holes` — indices into the 25k FEM `surface_points` |
163
+ | FEA surface fields | `3_fea_fields/<case>.npz` | `surface_points` (N,3), `surface_faces` (M,3), and per load `{ver,hor,dia,tor}_U` (N,3) + `_vm` (N,) |
164
+ | Scalar labels | `deepjebpp_labels.csv` | `mass_g`, `vol_mm3`, per-load `max|u|`, `p95 von Mises`, … |
165
 
166
  **FEA specification**
167
 
 
176
 
177
  ---
178
 
179
+ ## Usage
180
 
181
+ **Download & extract**
182
 
183
  ```bash
 
184
  huggingface-cli download KAIST-SmartDesignLab/DeepJEB-PP --repo-type dataset --local-dir DeepJEB-PP
185
  cd DeepJEB-PP && for f in *.tar.gz; do tar -xzf "$f"; done
186
  ```
187
 
188
+ **Load one design**
189
+
190
  ```python
191
  import numpy as np, pandas as pd, trimesh
192
 
 
200
  vm_ver = field["ver_vm"] # vertical-load von Mises (MPa)
201
  ```
202
 
203
+ **PyTorch dataloader** (geometry + fields + scalar targets)
204
 
205
  ```python
206
+ import os, glob, numpy as np, pandas as pd, torch
207
+ from torch.utils.data import Dataset
208
+
209
+ class DeepJEBPP(Dataset):
210
+ """Per-case surface points, BC masks, per-load fields, and scalar labels."""
211
+ LOADS = ["ver", "hor", "dia", "tor"]
212
+
213
+ def __init__(self, root, load="ver"):
214
+ self.root, self.load = root, load
215
+ self.cases = sorted(os.path.splitext(os.path.basename(f))[0]
216
+ for f in glob.glob(f"{root}/3_fea_fields/*.npz"))
217
+ self.labels = pd.read_csv(f"{root}/deepjebpp_labels.csv").set_index("case")
218
+
219
+ def __len__(self):
220
+ return len(self.cases)
221
+
222
+ def __getitem__(self, i):
223
+ c = self.cases[i]
224
+ fld = np.load(f"{self.root}/3_fea_fields/{c}.npz")
225
+ bc = np.load(f"{self.root}/2_boundary_conditions/{c}.npz")
226
+ pts = fld["surface_points"].astype("float32")
227
+ n = len(pts)
228
+ bolt = np.zeros(n, "float32"); bolt[bc["bolt_idx"]] = 1.0 # clamped mask
229
+ lug = np.zeros(n, "float32"); lug[bc["lug_idx"]] = 1.0 # loaded mask
230
+ row = self.labels.loc[c]
231
+ return {
232
+ "case": c,
233
+ "points": torch.from_numpy(pts), # (N,3) mm
234
+ "bc": torch.from_numpy(np.stack([bolt, lug], 1)), # (N,2)
235
+ "U": torch.from_numpy(fld[f"{self.load}_U"].astype("float32")), # (N,3)
236
+ "vm": torch.from_numpy(fld[f"{self.load}_vm"].astype("float32")), # (N,)
237
+ "y": torch.tensor([row["mass_g"],
238
+ row[f"{self.load}_p95vm"],
239
+ row[f"{self.load}_maxu"]], dtype=torch.float32),
240
+ }
241
+
242
+ # ds = DeepJEBPP("DeepJEB-PP", load="ver"); print(len(ds), ds[0]["points"].shape)
243
  ```
244
 
245
  ---
246
 
247
+ ## Applications
248
+
249
+ - **Surrogate modelling** — learn geometry → performance (mass, p95 von Mises, peak displacement, or full
250
+ nodal fields) with point-cloud / mesh-GNN / implicit models; a 40× larger training corpus than SimJEB.
251
+ - **Field prediction** — predict per-node displacement and stress fields under each of the four load cases.
252
+ - **Generative & inverse design** — benchmark generators on a labelled, BC-aware bracket design space; close
253
+ the loop with the released solver-input meshes.
254
+ - **Design optimisation** — data-driven optimisation / constraint screening using the mass and stress labels.
255
+ - **Cross-dataset transfer** — pre-train on DeepJEB++ and transfer to the smaller real SimJEB / DeepJEB sets.
256
+
257
+ ---
258
+
259
  ## Citation
260
 
261
  ```bibtex
 
269
  }
270
  ```
271
 
272
+ ---
273
+
274
+ ## Acknowledgements
275
+
276
+ DeepJEB++ builds on the **SimJEB** dataset (Whalen et al.) and the original **DeepJEB**, both derived from the
277
+ **GE Jet Engine Bracket Challenge** geometry, and uses the **TRELLIS** 3D foundation model for image-to-3D
278
+ generation. Developed at **KAIST SmartDesignLab**.
279
+
280
+ ---
281
+
282
  ## License
283
 
284
  Released under the **Open Data Commons Attribution License (ODC-By v1.0)**, matching the upstream
assets/teaser.gif ADDED

Git LFS Details

  • SHA256: 932c2ba97f348182a50842493ad7e009f639e7e49ed338cb39c82ad3541966f8
  • Pointer size: 132 Bytes
  • Size of remote file: 1.04 MB