You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Diversify Help page examples across all page types (#164)
## Summary
- Rebalance Help page examples from 4/3/3 (fusion/fission/twotwo only)
to cover all 6 page types:
- **Fusion** (2): H+Li classic, Ni+H Rossi/Parkhomov
- **Fission** (2): Uranium, Palladium (Fleischmann-Pons)
- **Two-to-Two** (2): H+B aneutronic, D+Ni
- **Element Data** (2): U-238 decay chain, Fe-56 binding energy peak
- **Muller Resonance** (1): Palladium NAE analysis with filter
- **Cascades** (1): Parkhomov Ni-LiAlH4 preset
- Extended `ExampleQuery` type to support `element-data`, `cascades`,
and `muller-resonance` query types
- Updated Help.tsx routing to navigate to all page types with correct
URL params
- Updated badge labels for new query types
Depends on #163 for Cascades/Muller URL param support.
## Test plan
- [x] Build passes
- [x] All example query tests pass (9/9)
- [ ] Click each example card on Help page — verify navigation to
correct page with correct state
- [ ] Verify U-238 example opens element data with decay chain visible
- [ ] Verify Parkhomov cascade example loads the material preset
- [ ] Verify Pd NAE example opens Muller Resonance with NAE tab filtered
🤖 Generated with [Claude Code](https://claude.com/claude-code)
---------
Co-authored-by: Claude (staging merge) <noreply@anthropic.com>
description: 'Find fusion reactions releasing more than 10 MeV of energy. Shows the most energetic transmutation pathways.',
42
-
queryType: 'fusion',
43
-
filter: {minMeV: 10},
44
-
},
45
38
46
-
// Fission examples
39
+
// Fission examples (2)
47
40
{
48
41
name: 'Uranium Fission Pathways',
49
42
description: 'All fission pathways from uranium isotopes. Shows the diverse product spectrum of uranium splitting.',
50
43
queryType: 'fission',
51
44
filter: {elements: ['U']},
52
45
},
53
-
{
54
-
name: 'Iron Fission',
55
-
description: 'Exothermic fission pathways from iron isotopes. Iron-56 has near-peak binding energy per nucleon, so fewer exothermic fission pathways exist compared to heavier elements.',
56
-
queryType: 'fission',
57
-
filter: {elements: ['Fe']},
58
-
},
59
46
{
60
47
name: 'Palladium Fission',
61
48
description: 'Pd fission pathways relevant to Fleischmann-Pons cold fusion experiments using palladium electrodes.',
62
49
queryType: 'fission',
63
50
filter: {elements: ['Pd']},
64
51
},
65
52
66
-
// Two-to-Two examples
53
+
// Two-to-Two examples (2)
54
+
{
55
+
name: 'Proton-Boron Reactions',
56
+
description: 'H + B-11 produces three alpha particles in the aneutronic fusion reaction (p + B-11 → 3α), considered ideal for clean energy.',
57
+
queryType: 'twotwo',
58
+
element1List: ['H'],
59
+
element2List: ['B'],
60
+
filter: {},
61
+
},
67
62
{
68
63
name: 'Deuterium-Nickel Reactions',
69
-
description: 'D + Ni two-to-two reactions. The default query showing deuterium-based transmutations with nickel, lithium, aluminum, boron, and nitrogen.',
64
+
description: 'D + Ni two-to-two reactions showing deuterium-based transmutations with nickel, lithium, aluminum, boron, and nitrogen.',
70
65
queryType: 'twotwo',
71
66
element1List: ['D'],
72
67
element2List: ['Ni','Li','Al','B','N'],
73
68
filter: {},
74
69
},
70
+
71
+
// Element Data examples (2)
75
72
{
76
-
name: 'Proton-Boron Reactions',
77
-
description: 'H + B-11 produces three alpha particles in the aneutronic fusion reaction (p + B-11 → 3α), considered ideal for clean energy.',
78
-
queryType: 'twotwo',
79
-
element1List: ['H'],
80
-
element2List: ['B'],
73
+
name: 'Uranium-238 Decay Chain',
74
+
description: 'The most famous natural decay series (4n+2). Trace 14 steps from U-238 through radium and radon down to stable Pb-206.',
75
+
queryType: 'element-data',
76
+
elementZ: 92,
77
+
elementA: 238,
81
78
filter: {},
82
79
},
83
80
{
84
-
name: 'Lithium-Lithium Reactions',
85
-
description: 'Li + Li two-to-two reactions. Lithium is a key element in LENR research due to its low atomic number and high reactivity.',
86
-
queryType: 'twotwo',
87
-
element1List: ['Li'],
88
-
element2List: ['Li'],
81
+
name: 'Iron-56 — Peak Binding Energy',
82
+
description: 'Fe-56 has the highest binding energy per nucleon of any nuclide, making it the endpoint of stellar nucleosynthesis.',
83
+
queryType: 'element-data',
84
+
elementZ: 26,
85
+
elementA: 56,
86
+
filter: {},
87
+
},
88
+
89
+
// Muller Resonance example (1)
90
+
{
91
+
name: 'Palladium NAE Analysis',
92
+
description: 'Explore palladium\'s nuclear active environment predictions — central to Fleischmann-Pons deuterium loading experiments.',
0 commit comments