Khalizo commited on
Commit
2abe58b
·
verified ·
1 Parent(s): b59319d

Upload folder using huggingface_hub

Browse files
README.md ADDED
@@ -0,0 +1,292 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ license_name: mixed
4
+ license_link: LICENSE
5
+ language:
6
+ - en
7
+ tags:
8
+ - materials-science
9
+ - fusion-energy
10
+ - irradiation
11
+ - mechanical-properties
12
+ - nuclear-materials
13
+ - scientific-data
14
+ pretty_name: FusionMatDB
15
+ size_categories:
16
+ - 10K<n<100K
17
+ task_categories:
18
+ - tabular-regression
19
+ - other
20
+ ---
21
+
22
+ # FusionMatDB — Fusion Irradiation Materials Database
23
+
24
+ **The first publicly accessible, ML-ready database of fusion materials irradiation effects.**
25
+
26
+ Extracted from 65 ORNL Fusion Materials Program semiannual progress reports (1990–2024) using Gemini 3 Flash vision on Vertex AI, plus the SDC-IC ITER Structural Design Criteria material library.
27
+
28
+ No equivalent open-access database exists. EUROfusion EDDI (~3,000 records) is restricted to EU consortium members. This dataset fills that gap.
29
+
30
+ ---
31
+
32
+ ## Dataset Visualisations
33
+
34
+ ![Irradiation coverage map](fig1_coverage_map.png)
35
+ *Figure 1: Every record plotted in dose–temperature space. The database covers fission reactor conditions (1–100 dpa, 200–750°C) across 19 material classes — the regime relevant to ITER, DEMO, and private fusion machines.*
36
+
37
+ ![Radiation hardening curves](fig2_hardening_curves.png)
38
+ *Figure 2: Yield strength vs dose for RAFM steels and vanadium alloys — the core scientific signal. Higher doses and lower temperatures produce more hardening, consistent with dispersed barrier hardening (DBH) theory.*
39
+
40
+ ![Coverage bars](fig3_coverage_bars.png)
41
+ *Figure 3: Records by material class (left) and property type (right). RAFM steels dominate — reflecting 40 years of ORNL focus on ferritic/martensitic steels for fusion first-wall applications.*
42
+
43
+ ![Analysis panels](fig4_analysis_panels.png)
44
+ *Figure 4 (left to right): Void swelling vs dose shows the expected increasing trend — a physics-consistency check validating extraction accuracy. Records per ORNL report volume spans 1990–2024. Confidence score distribution shows 85% of records scoring ≥ 0.7.*
45
+
46
+ ---
47
+
48
+ ## Dataset Summary
49
+
50
+ | | |
51
+ |---|---|
52
+ | **Total records** | 22,269 |
53
+ | **Train / Val / Test** | 17,800 / 2,225 / 2,225 (80/10/10, stratified by material class) |
54
+ | **Features per record** | 54 |
55
+ | **Source documents** | 65 ORNL semiannual reports + SDC-IC ITER Material Library |
56
+ | **Material classes** | 19 (RAFM steel, vanadium alloy, copper alloy, tungsten, SiC, ceramics, ODS, austenitic SS, nano-laminates, and more) |
57
+ | **Date extracted** | April 2026 |
58
+ | **Extraction model** | Gemini 3 Flash (Vertex AI Express, temperature=0) |
59
+
60
+ ---
61
+
62
+ ## Data Sources and Licence
63
+
64
+ | Source | Records | Licence |
65
+ |---|---|---|
66
+ | ORNL Fusion Materials Program semiannual progress reports (vols. 10–75) | 20,318 | Public domain (U.S. DOE) |
67
+ | SDC-IC ITER Structural Design Criteria Material Library | 1,951 | EUPL-1.2 |
68
+
69
+ **Licence note:** ORNL data is U.S. federal government work (public domain). SDC-IC data is EUPL-1.2 (copyleft, allows commercial use with attribution). When using only ORNL-sourced records (`source == "gemini_vision"`), the dataset is effectively public domain. When including SDC-IC records (`source == "sdc_ic_parse"`), attribution under EUPL-1.2 applies.
70
+
71
+ Filter by `source` column to use the licence appropriate for your use case.
72
+
73
+ ---
74
+
75
+ ## Splits
76
+
77
+ ```python
78
+ from datasets import load_dataset
79
+
80
+ ds = load_dataset("khalizo/fusionmatdb") # all splits
81
+ train = load_dataset("khalizo/fusionmatdb", split="train")
82
+ val = load_dataset("khalizo/fusionmatdb", split="validation")
83
+ test = load_dataset("khalizo/fusionmatdb", split="test")
84
+ ```
85
+
86
+ Splits are stratified by `material_class`. Rare classes (<30 records) are pooled for stratification purposes.
87
+
88
+ ---
89
+
90
+ ## Features
91
+
92
+ ### Material identification
93
+ | Column | Type | Description |
94
+ |---|---|---|
95
+ | `material_name` | string | Canonical name (e.g. `"EUROFER97"`, `"V-4Cr-4Ti"`, `"F82H"`) |
96
+ | `material_class` | string | Class (see Material Classes below) |
97
+ | `source` | string | `gemini_vision` or `sdc_ic_parse` |
98
+ | `paper_id` | string | Source document ID (e.g. `"ornl_70"`) |
99
+
100
+ ### Elemental composition (weight %)
101
+ `W_wt_pct`, `Cr_wt_pct`, `V_wt_pct`, `Ta_wt_pct`, `Fe_wt_pct`, `C_wt_pct`, `Mn_wt_pct`, `Mo_wt_pct`, `Ni_wt_pct`, `Si_wt_pct`, `Ti_wt_pct`, `Al_wt_pct`
102
+
103
+ ### Processing
104
+ | Column | Type | Description |
105
+ |---|---|---|
106
+ | `manufacturer` | string | Manufacturer name |
107
+ | `product_shape` | string | Form (e.g. `"rolled plate"`, `"rod"`) |
108
+ | `temper_temp_C` | float | Tempering temperature (°C) |
109
+ | `grain_size_um` | float | Grain size (µm) |
110
+ | `layer_spacing_nm` | float | Bilayer thickness for nano-laminates (nm) |
111
+
112
+ ### Irradiation conditions
113
+ | Column | Type | Description |
114
+ |---|---|---|
115
+ | `irradiation_state` | string | `"irradiated"` or `"unirradiated"` |
116
+ | `dose_dpa` | float | Displacement per atom (0–500 dpa validated) |
117
+ | `irradiation_temp_C` | float | Irradiation temperature (°C; cryogenic values are physically correct) |
118
+ | `reactor` | string | Facility (e.g. `"HFIR"`, `"BOR-60"`, `"EBR-II"`, `"ion_beam"`) |
119
+ | `neutron_spectrum` | string | `"fission"`, `"fast"`, `"mixed"`, `"ion"` |
120
+ | `helium_appm` | float | Transmutation helium (appm) |
121
+
122
+ ### Mechanical properties
123
+ | Column | Type | Description |
124
+ |---|---|---|
125
+ | `yield_strength_mpa_unirradiated` | float | Yield strength before irradiation (MPa) |
126
+ | `yield_strength_mpa_irradiated` | float | Yield strength after irradiation (MPa) |
127
+ | `yield_strength_mpa_std` | float | Measurement uncertainty (MPa) |
128
+ | `uts_mpa_unirradiated` | float | Ultimate tensile strength, unirradiated (MPa) |
129
+ | `uts_mpa_irradiated` | float | Ultimate tensile strength, irradiated (MPa) |
130
+ | `elongation_pct_irradiated` | float | Elongation after irradiation (%) |
131
+ | `dbtt_k_irradiated` | float | Ductile-to-brittle transition temperature after irradiation (K) |
132
+ | `fracture_toughness_mpa_sqrt_m` | float | Fracture toughness (MPa√m) |
133
+ | `charpy_energy_j` | float | Charpy impact energy (J) |
134
+ | `hardness_value` | float | Hardness (HV or as noted in `hardness_type`) |
135
+ | `volumetric_swelling_pct` | float | Void swelling (%) |
136
+ | `void_diameter_nm` | float | Average void diameter (nm) |
137
+ | `void_density_per_m3` | float | Void density (m⁻³) |
138
+ | `dislocation_loop_diameter_nm` | float | Dislocation loop diameter (nm) |
139
+ | `creep_rate_per_s` | float | Steady-state creep rate (s⁻¹) |
140
+ | `electrical_resistivity_uohm_cm_irradiated` | float | Electrical resistivity post-irradiation (µΩ·cm) |
141
+ | `dielectric_breakdown_kv_per_mm_irradiated` | float | Dielectric breakdown strength post-irradiation (kV/mm) |
142
+
143
+ ### ML metadata
144
+ | Column | Type | Description |
145
+ |---|---|---|
146
+ | `confidence_score` | float | Extraction quality (0.0–1.0); based on field completeness |
147
+ | `reviewed_by_human` | bool | True for SDC-IC records (human-curated) |
148
+ | `split` | string | `train`, `validation`, or `test` |
149
+
150
+ ---
151
+
152
+ ## Material Classes
153
+
154
+ | Class | Example materials | Records |
155
+ |---|---|---|
156
+ | `RAFM_steel` | F82H, EUROFER97, HT-9, 9Cr, T91, Grade 91 | 5,512 |
157
+ | `vanadium_alloy` | V-4Cr-4Ti, V-5Cr-5Ti, V-2.5Ti-1Si | 2,956 |
158
+ | `copper_alloy` | CuCrZr, GlidCop, MARZ copper, OFHC Cu | 2,415 |
159
+ | `austenitic_steel` | 316 SS, 304 SS, JPCA, PCA, Fe-Cr-Ni alloys | 2,118 |
160
+ | `other` | Multi-material, ambiguous, or LWR-specific | 2,391 |
161
+ | `ceramic_insulator` | Al₂O₃, MgAl₂O₄, AlN, SiC, BN, BeO | 1,094 |
162
+ | `SiC_composite` | SiC/SiC, Hi-Nicalon composites | 887 |
163
+ | `ODS_steel` | MA957, PM2000, 14YWT | 784 |
164
+ | `tungsten_alloy` | W-Re, K-doped W, La-doped W, W-NiFe | 712 |
165
+ | `tungsten` | Pure W, W single crystal | 638 |
166
+ | `ferritic_model_alloy` | Fe-3Cr, Fe-12Cr, Fe-18Cr, alpha-Fe | 391 |
167
+ | `nickel_alloy` | Ni, Inconel, BAM-11, Alloy 718 | 182 |
168
+ | `beryllium` | Be, BeO | 181 |
169
+ | `refractory_metal` | Mo, Mo-Re, Cr, Nb-1Zr | 127 |
170
+ | `carbon_graphite` | H451, IG-110, graphite | 114 |
171
+ | `nanolaminate` | Cu-Fe, Cu-Nb (Helion magnet candidates) | 101 |
172
+ | `titanium_alloy` | Ti-6Al-4V | 86 |
173
+ | `HTS_tape` | REBCO, YBCO | 77 |
174
+ | `max_phase` | Ti₂AlC, Ti₃SiC₂ | 30 |
175
+ | `zirconium_alloy` | Zircaloy | 18 |
176
+
177
+ ---
178
+
179
+ ## Property Coverage
180
+
181
+ | Property | Total records | Irradiated | Unirradiated |
182
+ |---|---|---|---|
183
+ | Yield strength (MPa) | 4,868 | 2,267 | 2,601 |
184
+ | UTS (MPa) | 3,681 | 1,757 | 1,924 |
185
+ | Elongation (%) | 1,920 | 1,920 | — |
186
+ | Volumetric swelling (%) | 2,066 | 2,066 | — |
187
+ | Hardness | 1,496 | — | — |
188
+ | Fracture toughness (MPa√m) | 1,262 | 1,262 | — |
189
+ | DBTT (K) | 510 | 510 | — |
190
+ | Void diameter (nm) | 796 | 796 | — |
191
+ | Creep rate (s⁻¹) | 216 | 216 | — |
192
+ | Electrical resistivity (µΩ·cm) | 254 | 254 | — |
193
+
194
+ ---
195
+
196
+ ## Intended Uses
197
+
198
+ ### ✅ Gaussian Process property predictors
199
+
200
+ Best-supported GP training targets (complete: dose + temp + property all present):
201
+
202
+ | Material class | GP rows | Input → Target |
203
+ |---|---|---|
204
+ | RAFM steels | 457 | dose_dpa, irradiation_temp_C → yield_strength_mpa_irradiated |
205
+ | Vanadium alloys | 371 | dose_dpa, irradiation_temp_C → yield_strength_mpa_irradiated |
206
+ | Copper alloys | 156 | dose_dpa, irradiation_temp_C → yield_strength_mpa_irradiated |
207
+ | Tungsten | 109 | dose_dpa, irradiation_temp_C → yield_strength_mpa_irradiated |
208
+
209
+ ```python
210
+ import pandas as pd
211
+ df = pd.read_parquet("train.parquet")
212
+
213
+ # RAFM steel GP dataset
214
+ rafm = df[
215
+ (df["material_class"] == "RAFM_steel") &
216
+ df["yield_strength_mpa_irradiated"].notna() &
217
+ df["dose_dpa"].notna() &
218
+ df["irradiation_temp_C"].notna()
219
+ ][["dose_dpa", "irradiation_temp_C", "yield_strength_mpa_irradiated"]]
220
+ ```
221
+
222
+ ### ✅ Radiation damage world model
223
+
224
+ 142 records with both `yield_strength_mpa_unirradiated` and `yield_strength_mpa_irradiated` in the same row. Paired format: (state_before, action) → state_after.
225
+
226
+ ### ✅ Bayesian active learning
227
+
228
+ Load as GP prior data in [FusionBAL](https://github.com/khalizo/fusionbal) to recommend which irradiation experiments to run next. Replicates the Digilab Bristol result reducing V-4Cr-4Ti experiments from 30 to ~9.
229
+
230
+ ### ✅ Materials NLP and information extraction
231
+
232
+ Each record traces to a specific ORNL report page. Useful for training materials NER models or evaluating LLM extraction accuracy.
233
+
234
+ ### ❌ Deep learning / neural networks
235
+
236
+ Not enough data per material class (would need 5,000+ per class). Use GPs.
237
+
238
+ ---
239
+
240
+ ## Known Limitations
241
+
242
+ 1. **Extraction accuracy is estimated, not fully verified.** All 20,318 ORNL records are LLM-extracted. Spot-checked against source PDFs (EUROFER97 RT yield = 580 MPa ✓, W yield range ✓) but not systematically validated. `reviewed_by_human = True` only for SDC-IC records.
243
+
244
+ 2. **Sparse paired data.** Only 142 records have both irradiated and unirradiated yield strength in the same row. Most ORNL papers report one or the other, not both.
245
+
246
+ 3. **Fission proxy, not fusion neutrons.** All ORNL data uses fission reactor spectra (HFIR, BOR-60, EBR-II). No DT fusion neutron irradiation data exists — IFMIF is not yet operational. Fission data is the standard proxy for fusion conditions.
247
+
248
+ 4. **202 high-dose records flagged.** Records with `dose_dpa > 150` are flagged in the source data for expert review. Doses 150–500 dpa are achievable in fast reactors (EBR-II, FFTF); values previously >500 dpa have been nulled.
249
+
250
+ 5. **Cryogenic temperatures are correct.** Records with `irradiation_temp_C < -50°C` represent real cryogenic irradiation experiments (10–196 K = liquid helium to liquid nitrogen). These are not unit errors.
251
+
252
+ 6. **Material name fragmentation.** 68 distinct RAFM steel variants are stored separately. For class-level GP training, group by `material_class` rather than `material_name`.
253
+
254
+ 7. **`other` class (20%).** 2,391 records have ambiguous or multi-material names that couldn't be classified. Filter with `material_class != "other"` to work with the classified 80%.
255
+
256
+ ---
257
+
258
+ ## Comparison to Existing Databases
259
+
260
+ | Database | Records | Irradiation data | Access | ML-ready |
261
+ |---|---|---|---|---|
262
+ | **FusionMatDB** (this dataset) | **22,269** | **Yes — core focus** | **Open** | **Yes** |
263
+ | EUROfusion EDDI | ~3,000 | Yes | EU consortium only | No |
264
+ | MatDB4Fusion (KIT) | 353 | No (baseline only) | Public CSV | Partial |
265
+ | JRC ODIN | >20,000 | Some | Tiered | No |
266
+ | ITER MPH | Unknown | Yes | Closed | No |
267
+
268
+ ---
269
+
270
+ ## Related Projects
271
+
272
+ - **FusionBAL** — Bayesian active learning for fusion experiment planning (loads this dataset as GP prior)
273
+ - **FusionUQ** — Uncertainty quantification for MACE-MP-0 ML interatomic potentials (calibrates against this dataset)
274
+
275
+ ---
276
+
277
+ ## Citation
278
+
279
+ ```bibtex
280
+ @dataset{fusionmatdb2026,
281
+ title = {FusionMatDB: An Open-Source Fusion Irradiation Materials Database},
282
+ author = {Khalizo},
283
+ year = {2026},
284
+ url = {https://huggingface.co/datasets/khalizo/fusionmatdb},
285
+ note = {Extracted from ORNL Fusion Materials Program semiannual progress
286
+ reports (1990--2024) using Gemini 3 Flash vision on Vertex AI.}
287
+ }
288
+ ```
289
+
290
+ Source data attribution:
291
+ - **ORNL Fusion Materials Program reports**: U.S. Department of Energy, public domain. Available at https://fmp.ornl.gov/semiannual-progress-reports/
292
+ - **SDC-IC Material Library**: ITER Structural Design Criteria, EUPL-1.2. Available at https://github.com/Structural-Mechanics/SDC-IC-Material-Library
fig1_coverage_map.png ADDED

Git LFS Details

  • SHA256: f070f1d259ecda3d7a2197b680aa538acbdbfb92fadb50ed0ba29a129945fd9f
  • Pointer size: 131 Bytes
  • Size of remote file: 368 kB
fig2_hardening_curves.png ADDED

Git LFS Details

  • SHA256: 1599be8bfd4ee71c9c4c55e1ffc48687998f2105eafac315753b8ef5cb89ad28
  • Pointer size: 131 Bytes
  • Size of remote file: 202 kB
fig3_coverage_bars.png ADDED

Git LFS Details

  • SHA256: ed07d5908179dc53913127d1cca01525f54d2fd215b65ad9e24efe9af6c92bc3
  • Pointer size: 131 Bytes
  • Size of remote file: 133 kB
fig4_analysis_panels.png ADDED

Git LFS Details

  • SHA256: a4370818279f526491d349a4c0ddaa9cc3bd56a32934b1f4ee3c9ca87148c4c1
  • Pointer size: 131 Bytes
  • Size of remote file: 192 kB
fusionmatdb.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4b8651f4629b2f9b84c0f25d27a641fba9cc5d3a84d899b758d65f2cf0838455
3
+ size 400938
test.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:11cfb075385470d70f0e72fe2e0c2b3c70b053e584eb0a04a2c31a1330ecbd87
3
+ size 92113
train.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d9f0cac64c5d31cc441fd846a7c4399683e0c8472f0ecddd4ff39543c9c1c4bd
3
+ size 418102
validation.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:98bcfe3212972eab4c34b6ffe3f897573318bdfbe20d3e7c6d40cf4b14fc224f
3
+ size 91771