Leekyo commited on
Commit
1b29382
·
verified ·
1 Parent(s): e84c74f

Restore full data card + apply torsion Y->Z (News, FEA spec, Usage patch)

Browse files
Files changed (1) hide show
  1. README.md +316 -99
README.md CHANGED
@@ -1,99 +1,316 @@
1
- ---
2
- license: odc-by
3
- pretty_name: DeepJEB++
4
- size_categories:
5
- - 10K<n<100K
6
- tags:
7
- - engineering-design
8
- - finite-element-analysis
9
- - surrogate-modeling
10
- - 3d-geometry
11
- - jet-engine-bracket
12
- ---
13
-
14
- > 📢 Update — v1.1 (2026-07)
15
- > The torsional load moment is now applied about the Z-axis to match the
16
- > SimJEB reference torsion condition (v1.0 applied it about the Y-axis), and
17
- > `tor_maxvm` was added to the labels. Vertical / horizontal / diagonal loads,
18
- > geometry, meshes and boundary conditions are unchanged.
19
- > If you already downloaded v1.0, you do not need to re-download the full
20
- > ~29 GB — apply the lightweight torsion patch (see [Usage](#usage)).
21
-
22
- # DeepJEB++
23
-
24
- A foundation-model-driven 2D-to-3D data-augmentation dataset for structural
25
- engineering design. **15,360** simulation-labeled jet-engine brackets, generated
26
- by adapting Stable Diffusion v1.5 and TRELLIS, each paired with automatically
27
- computed linear-elastic finite-element labels under four load cases.
28
-
29
- ## License
30
- **ODC-By v1.0** (Open Data Commons Attribution License). Free to use, modify,
31
- and share -- including for commercial purposes -- with attribution (please cite
32
- the DeepJEB++ paper and the upstream SimJEB and DeepJEB datasets).
33
- See the `LICENSE` file.
34
-
35
- ## Contents
36
- | Path | Description |
37
- |------|-------------|
38
- | `1_surface_meshes/` | 15,360 surface meshes (`.obj`, native ~50k verts) |
39
- | `2_boundary_conditions/` | Four-bolt + loaded-clevis interfaces (vertex indices, mm frame) |
40
- | `3_fea_fields/` | Per-case surface FEA fields (`.npz`): displacement `U`, von Mises `vm` for 4 loads |
41
- | `deepjebpp_labels.csv` | Scalar labels: mass, per-load max displacement & 95th-pct von Mises |
42
- | `metadata.json` | Material, load cases, units, layout |
43
- | `README.txt` | Full human-readable specification |
44
-
45
- All field/BC entries are at a consistent 25k FEM-mesh density. BC node indices
46
- reference `3_fea_fields/<case>.npz` `surface_points` (25k), not the native `.obj`.
47
-
48
- ## Usage
49
-
50
- ### New users — full v1.1
51
- ```python
52
- from huggingface_hub import snapshot_download
53
- snapshot_download("KAIST-SmartDesignLab/DeepJEB-PP", repo_type="dataset",
54
- local_dir="DeepJEB-PP")
55
- ```
56
- Extract the `.tar.gz` archives, load fields with `numpy.load(...)` and scalars
57
- from `deepjebpp_labels.csv`.
58
-
59
- ### Already have v1.0? Apply the torsion patch (no 29 GB re-download)
60
- v1.1 changes **only the torsion labels** (moment axis Y -> Z to match the SimJEB
61
- reference torsion condition) and adds `tor_maxvm`. Vertical / horizontal /
62
- diagonal loads, geometry, meshes and boundary conditions are byte-identical to
63
- v1.0. To update in place without re-downloading the full `3_fea_fields` (~29 GB):
64
- ```python
65
- from huggingface_hub import hf_hub_download
66
- # ~14 GB torsion-only patch instead of the full archive
67
- hf_hub_download("KAIST-SmartDesignLab/DeepJEB-PP",
68
- "3_fea_fields_torsion_z_v1.1.tar.gz",
69
- repo_type="dataset", local_dir="patch")
70
- hf_hub_download("KAIST-SmartDesignLab/DeepJEB-PP", "apply_torsion_patch.py",
71
- repo_type="dataset", local_dir="patch")
72
- ```
73
- ```bash
74
- mkdir -p patch/torsion
75
- tar -xzf patch/3_fea_fields_torsion_z_v1.1.tar.gz -C patch/torsion
76
- python patch/apply_torsion_patch.py <your 3_fea_fields dir> patch/torsion
77
- ```
78
- The script replaces `tor_U / tor_vm / tor_maxu / tor_p95vm` and adds
79
- `tor_maxvm` in each `<case>.npz` (verifying `surface_points` match), leaving
80
- the other loads untouched. Then also replace the small `deepjebpp_labels.csv`
81
- and `metadata.json` with the v1.1 copies. See `PATCH_README.txt`.
82
-
83
- ### Pin a specific version
84
- ```python
85
- snapshot_download("KAIST-SmartDesignLab/DeepJEB-PP", repo_type="dataset",
86
- revision="v1.1") # or "v1.0" for the original Y-axis torsion
87
- ```
88
-
89
- ## Load cases (Ti-6Al-4V, linear static)
90
- vertical 35.6 kN | horizontal 37.8 kN | diagonal 42.3 kN | torsional 565 kN-mm
91
-
92
- The **torsional** load is applied as a moment about the **Z-axis** `(0, 0, 1)`, matching the SimJEB reference torsion condition. (See Version history.)
93
-
94
- ## Version history
95
- - **v1.1** (2026-07) - Torsional moment axis corrected from Y to **Z-axis** `(0,0,1)` to match the SimJEB reference torsion loading condition; `tor_maxvm` (full-volume max von Mises) added to `deepjebpp_labels.csv`. **Recommended version.**
96
- - **v1.0** (2026-06) - Initial release; torsional moment applied about the Y-axis `(0,1,0)`. Retained via git tag for reproducibility of any prior results.
97
-
98
- ## Citation
99
- Citation will be added upon publication (ASME Journal of Mechanical Design).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: odc-by
3
+ pretty_name: "DeepJEB++"
4
+ size_categories:
5
+ - 10K<n<100K
6
+ task_categories:
7
+ - tabular-regression
8
+ - graph-ml
9
+ tags:
10
+ - engineering-design
11
+ - finite-element-analysis
12
+ - structural-mechanics
13
+ - 3d
14
+ - mesh
15
+ - generative-design
16
+ - foundation-model
17
+ - jet-engine-bracket
18
+ - surrogate-modeling
19
+ ---
20
+
21
+ <div align="center">
22
+ <img src="assets/banner_displacement.png" alt="DeepJEB++ generated brackets — displacement fields" width="100%">
23
+ </div>
24
+
25
+ <h1 align="center">DeepJEB++</h1>
26
+ <p align="center"><b>Foundation Model-Driven Large-Scale 3D Engineering Dataset via 2D Latent Space Augmentation</b></p>
27
+
28
+ <p align="center">
29
+ <a href="https://arxiv.org/abs/2606.12994"><img src="https://img.shields.io/badge/arXiv-2606.12994-b31b1b.svg" alt="arXiv"></a>
30
+ <a href="https://huggingface.co/datasets/KAIST-SmartDesignLab/DeepJEB-PP"><img src="https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-Dataset-ffb000.svg" alt="Hugging Face Dataset"></a>
31
+ <img src="https://img.shields.io/badge/Status-Under%20Review-orange.svg" alt="Status: Under Review">
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-07 — v1.1.** The torsional moment is now applied about the **Z-axis** `(0, 0, 1)` to match the SimJEB reference torsion condition (v1.0 applied it about the Y-axis), and `tor_maxvm` was added to the labels. Vertical / horizontal / diagonal loads, geometry, meshes and boundary conditions are unchanged. If you already downloaded v1.0, apply the lightweight [torsion patch](#usage) instead of re-downloading the full ~29 GB (pin `revision="v1.0"` for the original).
57
+ - **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).
58
+ - **2026-06** — Preprint on arXiv ([2606.12994](https://arxiv.org/abs/2606.12994)); manuscript **under review**.
59
+
60
+ ---
61
+
62
+ ## Overview
63
+
64
+ > **DeepJEB++** is a large-scale dataset of **generatively-designed jet-engine brackets**, each paired with
65
+ > physics-based performance labels from an automated finite-element (FEA) pipeline. It is built by **augmenting
66
+ > the SimJEB design space inside a 2D latent space** and lifting the synthesized images to 3D with a **3D
67
+ > foundation model (TRELLIS)**, then automatically recovering boundary conditions and solving four structural
68
+ > load cases. The result couples **geometry ↔ physics** at a scale (40× SimJEB) suitable for data-driven and
69
+ > surrogate modelling in engineering design.
70
+
71
+ <div align="center">
72
+ <img src="assets/teaser.gif" alt="A generated bracket rotating, coloured by its vertical-load displacement field" width="46%">
73
+ <br><sub>A single design, coloured by its vertical-load displacement field (blue = clamped bolts, red = lug tip).</sub>
74
+ </div>
75
+
76
+ | | |
77
+ |---|---|
78
+ | **Designs (deployable)** | 15,360 |
79
+ | **Load cases** | vertical / horizontal / diagonal / torsional |
80
+ | **Per design** | surface mesh · boundary conditions · FEA surface fields · scalar labels (incl. mass) |
81
+ | **Material** | Ti-6Al-4V · E = 113,800 MPa · ν = 0.342 |
82
+ | **Scale** | 40× SimJEB (380) |
83
+ | **Paper** | [arXiv:2606.12994](https://arxiv.org/abs/2606.12994) |
84
+ | **License** | ODC-By 1.0 (matching upstream SimJEB / DeepJEB) |
85
+
86
+ ---
87
+
88
+ ## The data, qualitatively
89
+
90
+ <div align="center">
91
+ <img src="assets/gallery.png" alt="Generated bracket variety with auto-detected interfaces" width="92%">
92
+ <br><sub><b>Generated bracket variety + auto-detected interfaces</b> 24 of 15,360, each with a gate-validated 4-bolt flange and lug-clevis detection (orange).</sub>
93
+ </div>
94
+
95
+ <br>
96
+
97
+ <div align="center">
98
+ <img src="assets/fea_fields.png" alt="Four-load FEA response fields" width="92%">
99
+ <br><sub><b>4-load FEA response fields.</b> Top: displacement (deformed ×9). Bottom: von Mises stress. Columns: vertical / horizontal / diagonal / torsional.</sub>
100
+ </div>
101
+
102
+ The hero banner shows real brackets coloured by their per-case vertical-load displacement field. The same
103
+ brackets, as raw geometry:
104
+
105
+ <div align="center">
106
+ <img src="assets/banner_geometry.png" alt="Generated bracket meshes (geometry)" width="100%">
107
+ </div>
108
+
109
+ ---
110
+
111
+ ## Augmentation methodology
112
+
113
+ The core idea is **2D latent-space augmentation**: instead of perturbing 3D meshes directly, new designs are
114
+ synthesized by **interpolating between SimJEB seed brackets in the latent space of a fine-tuned diffusion
115
+ model**, then reconstructed in 3D by a foundation model and labelled by FEA.
116
+
117
+ | # | Step | What happens |
118
+ |---|------|--------------|
119
+ | 1 | **Seed pairs** | Pairs of SimJEB bracket renders chosen as interpolation endpoints. |
120
+ | 2 | **2D latent interpolation** | Fine-tuned Stable Diffusion mixes the two VAE latents (ratio 0→1) → frames IS00–IS18. |
121
+ | 3 | **Image → 3D** | A single diagonal view drives TRELLIS (SimJEB-finetuned) image-to-3D, 25-step. |
122
+ | 4 | **Automatic BC** | 4-bolt flange + lug-clevis detected and validated by a calibrated gate. |
123
+ | 5 | **FEA labels** | Four load cases solved → displacement, von Mises, mass per design. |
124
+
125
+ <div align="center">
126
+ <img src="assets/framework.png" alt="End-to-end framework" width="92%">
127
+ <br><sub><b>End-to-end framework</b> — generation (latent interpolation + foundation-model lifting) → automatic labelling.</sub>
128
+ </div>
129
+
130
+ <br>
131
+
132
+ <div align="center">
133
+ <img src="assets/interp_2d.png" alt="2D latent interpolation" width="80%">
134
+ <br><sub><b>2D latent interpolation</b> — a smooth transition between two parent brackets (IS00 → IS18).</sub>
135
+ </div>
136
+
137
+ > **Why 2D-latent augmentation?** Interpolating in a learned image latent space produces smooth, valid,
138
+ > manufacturable-looking new brackets that span the design space between real examples — far easier than
139
+ > perturbing 3D meshes directly — while a 3D foundation model guarantees consistent, watertight geometry ready
140
+ > for FEA. A key finding: increasing the diffusion sampling steps raised valid BC-detection from **16% → 96%**.
141
+
142
+ ---
143
+
144
+ ## Dataset structure
145
+
146
+ Distributed as per-component `.tar.gz` archives + a CSV. Every design shares one `<case>` id
147
+ (e.g. `012-015-diag_xz_mm_IS02`) across all modalities.
148
+
149
+ ```
150
+ DeepJEB-PP/
151
+ ├── 1_surface_meshes.tar.gz # 15,360 × <case>.obj
152
+ ├── 2_boundary_conditions.tar.gz # 15,360 × <case>.npz
153
+ ├── 3_fea_fields.tar.gz # 15,360 × <case>.npz
154
+ ├── deepjebpp_labels.csv # scalar labels (15,360 rows)
155
+ └── metadata.json # material / loads / units / schema
156
+ ```
157
+
158
+ **Modalities**
159
+
160
+ | Modality | File | Content |
161
+ |---|---|---|
162
+ | Geometry | `1_surface_meshes/<case>.obj` | input surface mesh, native ~50k verts |
163
+ | Boundary conditions | `2_boundary_conditions/<case>.npz` | `bolt_idx` (clamped), `lug_idx` (loaded), `bolt_holes` — indices into the 25k FEM `surface_points` |
164
+ | 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,) |
165
+ | Scalar labels | `deepjebpp_labels.csv` | `mass_g`, `vol_mm3`, per-load `max|u|`, `p95 von Mises`, … |
166
+
167
+ **FEA specification**
168
+
169
+ | | |
170
+ |---|---|
171
+ | Material | Ti-6Al-4V · E = 113,800 MPa · ν = 0.342 (yield 903 MPa / 131 ksi, reference) |
172
+ | Vertical (ver) | force (0, 0, 1) · 35,600 N |
173
+ | Horizontal (hor) | force (−1, 0, 0) · 37,800 N |
174
+ | Diagonal (dia) | force (−0.669, 0, 0.743) · 42,300 N |
175
+ | Torsional (tor) | moment (0, 0, 1) · 565,000 N·mm _(Z-axis, matches SimJEB; v1.1)_ |
176
+ | Solver | tetgen + conjugate-gradient, 25k node budget |
177
+
178
+ ---
179
+
180
+ ## Usage
181
+
182
+ **Download & extract**
183
+
184
+ ```bash
185
+ huggingface-cli download KAIST-SmartDesignLab/DeepJEB-PP --repo-type dataset --local-dir DeepJEB-PP
186
+ cd DeepJEB-PP && for f in *.tar.gz; do tar -xzf "$f"; done
187
+ ```
188
+
189
+ **Already have v1.0? Apply the torsion patch (no full re-download)**
190
+
191
+ v1.1 changes **only the torsion labels** (moment axis Y→Z) and adds `tor_maxvm`; all other loads, geometry, meshes and BCs are byte-identical to v1.0. Update in place instead of re-downloading the ~29 GB `3_fea_fields`:
192
+
193
+ ```python
194
+ from huggingface_hub import hf_hub_download
195
+ # ~14 GB torsion-only patch
196
+ hf_hub_download("KAIST-SmartDesignLab/DeepJEB-PP",
197
+ "3_fea_fields_torsion_z_v1.1.tar.gz",
198
+ repo_type="dataset", local_dir="patch")
199
+ hf_hub_download("KAIST-SmartDesignLab/DeepJEB-PP", "apply_torsion_patch.py",
200
+ repo_type="dataset", local_dir="patch")
201
+ ```
202
+
203
+ ```bash
204
+ mkdir -p patch/torsion
205
+ tar -xzf patch/3_fea_fields_torsion_z_v1.1.tar.gz -C patch/torsion
206
+ python patch/apply_torsion_patch.py <your 3_fea_fields dir> patch/torsion
207
+ ```
208
+
209
+ The script swaps `tor_U / tor_vm / tor_maxu / tor_p95vm` and adds `tor_maxvm` in each `<case>.npz` (verifying `surface_points` match). Then also replace the small `deepjebpp_labels.csv` and `metadata.json` with the v1.1 copies. See `PATCH_README.txt`.
210
+
211
+ **Pin a version**
212
+
213
+ ```python
214
+ from huggingface_hub import snapshot_download
215
+ snapshot_download("KAIST-SmartDesignLab/DeepJEB-PP", repo_type="dataset",
216
+ revision="v1.1") # or "v1.0" for the original Y-axis torsion
217
+ ```
218
+
219
+ **Load one design**
220
+
221
+ ```python
222
+ import numpy as np, pandas as pd, trimesh
223
+
224
+ case = "012-015-diag_xz_mm_IS02"
225
+ mesh = trimesh.load(f"1_surface_meshes/{case}.obj")
226
+ bc = np.load(f"2_boundary_conditions/{case}.npz") # bolt_idx, lug_idx
227
+ field = np.load(f"3_fea_fields/{case}.npz") # ver_U, ver_vm, hor_U, ...
228
+ label = pd.read_csv("deepjebpp_labels.csv").set_index("case").loc[case]
229
+
230
+ clamped = field["surface_points"][bc["bolt_idx"]] # clamped bolt nodes (mm)
231
+ vm_ver = field["ver_vm"] # vertical-load von Mises (MPa)
232
+ ```
233
+
234
+ **PyTorch dataloader** (geometry + fields + scalar targets)
235
+
236
+ ```python
237
+ import os, glob, numpy as np, pandas as pd, torch
238
+ from torch.utils.data import Dataset
239
+
240
+ class DeepJEBPP(Dataset):
241
+ """Per-case surface points, BC masks, per-load fields, and scalar labels."""
242
+ LOADS = ["ver", "hor", "dia", "tor"]
243
+
244
+ def __init__(self, root, load="ver"):
245
+ self.root, self.load = root, load
246
+ self.cases = sorted(os.path.splitext(os.path.basename(f))[0]
247
+ for f in glob.glob(f"{root}/3_fea_fields/*.npz"))
248
+ self.labels = pd.read_csv(f"{root}/deepjebpp_labels.csv").set_index("case")
249
+
250
+ def __len__(self):
251
+ return len(self.cases)
252
+
253
+ def __getitem__(self, i):
254
+ c = self.cases[i]
255
+ fld = np.load(f"{self.root}/3_fea_fields/{c}.npz")
256
+ bc = np.load(f"{self.root}/2_boundary_conditions/{c}.npz")
257
+ pts = fld["surface_points"].astype("float32")
258
+ n = len(pts)
259
+ bolt = np.zeros(n, "float32"); bolt[bc["bolt_idx"]] = 1.0 # clamped mask
260
+ lug = np.zeros(n, "float32"); lug[bc["lug_idx"]] = 1.0 # loaded mask
261
+ row = self.labels.loc[c]
262
+ return {
263
+ "case": c,
264
+ "points": torch.from_numpy(pts), # (N,3) mm
265
+ "bc": torch.from_numpy(np.stack([bolt, lug], 1)), # (N,2)
266
+ "U": torch.from_numpy(fld[f"{self.load}_U"].astype("float32")), # (N,3)
267
+ "vm": torch.from_numpy(fld[f"{self.load}_vm"].astype("float32")), # (N,)
268
+ "y": torch.tensor([row["mass_g"],
269
+ row[f"{self.load}_p95vm"],
270
+ row[f"{self.load}_maxu"]], dtype=torch.float32),
271
+ }
272
+
273
+ # ds = DeepJEBPP("DeepJEB-PP", load="ver"); print(len(ds), ds[0]["points"].shape)
274
+ ```
275
+
276
+ ---
277
+
278
+ ## Applications
279
+
280
+ - **Surrogate modelling** — learn geometry → performance (mass, p95 von Mises, peak displacement, or full
281
+ nodal fields) with point-cloud / mesh-GNN / implicit models; a 40× larger training corpus than SimJEB.
282
+ - **Field prediction** — predict per-node displacement and stress fields under each of the four load cases.
283
+ - **Generative & inverse design** — benchmark generators on a labelled, BC-aware bracket design space; close
284
+ the loop with the released solver-input meshes.
285
+ - **Design optimisation** — data-driven optimisation / constraint screening using the mass and stress labels.
286
+ - **Cross-dataset transfer** — pre-train on DeepJEB++ and transfer to the smaller real SimJEB / DeepJEB sets.
287
+
288
+ ---
289
+
290
+ ## Citation
291
+
292
+ ```bibtex
293
+ @article{deepjebpp2026,
294
+ title = {DeepJEB++: Foundation Model-Driven Large-Scale 3D Engineering
295
+ Dataset via 2D Latent Space Augmentation},
296
+ author = {Yoo, Soyoung and Jeong, Leekyo and Ra, Jinsu and Lee, Dongeon
297
+ and Yang, Sunwoong and Jeong, Hyogu and Kang, Namwoo},
298
+ journal = {arXiv preprint arXiv:2606.12994},
299
+ year = {2026}
300
+ }
301
+ ```
302
+
303
+ ---
304
+
305
+ ## Acknowledgements
306
+
307
+ DeepJEB++ builds on the **SimJEB** dataset (Whalen et al.) and the original **DeepJEB**, both derived from the
308
+ **GE Jet Engine Bracket Challenge** geometry, and uses the **TRELLIS** 3D foundation model for image-to-3D
309
+ generation. Developed at **KAIST SmartDesignLab**.
310
+
311
+ ---
312
+
313
+ ## License
314
+
315
+ Released under the **Open Data Commons Attribution License (ODC-By v1.0)**, matching the upstream
316
+ SimJEB / DeepJEB datasets. Derived from the SimJEB dataset (GE Jet Engine Bracket Challenge geometry).