I don't remember

This commit is contained in:
2026-03-04 16:28:07 +00:00
parent 585e66ceb4
commit 6885801078
25 changed files with 1278 additions and 1908 deletions

View File

@@ -876,3 +876,13 @@ export const ABLATIVE_MATERIALS = [
refPressure: 6.9e6,
},
]
// ── Structural materials (for wall thickness and mass estimation) ───────────
export const STRUCTURAL_MATERIALS = [
{ id: 'al_6061_t6', name: 'Aluminum 6061-T6', yieldStrength: 276e6, density: 2700, youngModulus: 69e9 },
{ id: 'ss_304', name: 'Stainless Steel 304', yieldStrength: 215e6, density: 7900, youngModulus: 193e9 },
{ id: 'inconel_718', name: 'Inconel 718', yieldStrength: 1100e6, density: 8190, youngModulus: 200e9 },
{ id: 'ti_6al_4v', name: 'Titanium Ti-6Al-4V', yieldStrength: 880e6, density: 4430, youngModulus: 114e9 },
{ id: 'cfrp', name: 'CFRP (typical)', yieldStrength: 600e6, density: 1600, youngModulus: 70e9 },
]