fillet-stress-analyzer/index.html

223 lines
6.3 KiB
HTML
Raw Permalink Normal View History

2026-07-19 07:11:43 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Aniruddha Shah: Engineering the Beautiful Slip</title>
<style>
:root {
--bg-deep: #0a0e14;
--fg-primary: #e6e6e6;
--accent-alu: #a0a0a0;
--accent-cu: #b87333;
--accent-red: #ff3333; /* Critical warning */
--accent-green: #00ff88; /* Success */
--grid-line: rgba(255,255,255,0.08);
}
body {
background-color: var(--bg-deep);
color: var(--fg-primary);
font-family: 'JetBrains Mono', 'Fira Code', monospace;
margin: 0;
padding: 0;
line-height: 1.6;
}
header {
border-bottom: 1px solid var(--grid-line);
padding: 4rem 2rem;
display: flex;
justify-content: space-between;
align-items: baseline;
}
h1 {
font-size: 3rem;
margin: 0;
letter-spacing: -0.05em;
}
.tagline {
color: var(--accent-alu);
font-size: 1rem;
max-width: 40ch;
text-align: right;
line-height: 1.4;
}
main {
max-width: 900px;
margin: 0 auto;
padding: 3rem 2rem;
}
section {
margin-bottom: 4rem;
}
h2 {
font-size: 1.8rem;
color: var(--accent-cu);
border-left: 3px solid var(--accent-cu);
padding-left: 1rem;
margin-bottom: 1.5rem;
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
}
.card {
border: 1px solid var(--grid-line);
padding: 1.5rem;
border-radius: 4px;
background: rgba(255,255,255,0.02);
transition: transform 0.2s ease, border-color 0.2s ease;
}
.card:hover {
transform: translateY(-2px);
border-color: var(--accent-cu);
}
.card.hazard {
border-color: var(--accent-red);
background: rgba(255,51,51,0.03);
}
.card.v2 {
border-color: var(--accent-green);
background: rgba(0,255,136,0.03);
}
.card.hazard:hover {
border-color: #fff;
}
.card.v2:hover {
border-color: var(--accent-green);
}
.card h3 {
margin-top: 0;
color: var(--accent-alu);
font-size: 1.2rem;
}
.card.hazard h3 {
color: var(--accent-red);
}
.card.v2 h3 {
color: var(--accent-green);
}
.card p {
font-size: 0.9rem;
opacity: 0.8;
margin-bottom: 1rem;
}
.card a {
color: var(--accent-cu);
text-decoration: none;
font-weight: bold;
font-size: 0.85rem;
text-transform: uppercase;
letter-spacing: 0.1em;
}
.card.hazard a {
color: var(--accent-red);
}
.card.v2 a {
color: var(--accent-green);
}
.card a:hover {
text-decoration: underline;
}
.badging {
font-size: 0.7rem;
text-transform: uppercase;
letter-spacing: 0.2em;
margin-bottom: 0.5rem;
display: inline-block;
}
.badge-v2 {
color: var(--accent-green);
border: 1px solid var(--accent-green);
padding: 0.2rem 0.5rem;
border-radius: 2px;
}
footer {
border-top: 1px solid var(--grid-line);
padding: 2rem;
text-align: center;
font-size: 0.8rem;
opacity: 0.5;
}
</style>
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
</head>
<body>
<header>
<div>
<h1>Aniruddha Shah</h1>
<div style="opacity: 0.6; margin-top: 0.5rem;">Palatine, IL // Mars Dome Architect</div>
</div>
<div class="tagline">
Retired mechanical engineer. Community mentor.<br>
Turning frozen chickens into lessons in improvisation.
</div>
</header>
<main>
<section>
<h2>The Workshop</h2>
<p>I do not believe in mistakes. I believe in data points waiting to be calibrated. From the prairie clay of Illinois to the regolith of Mars, I build systems that breathe.</p>
</section>
<section>
<h2>Engineering Protocols</h2>
<div class="grid">
<div class="card v2">
<div class="badging"><span class="badge-v2">v2</span></div>
<h3>Dynamic Fillet Analyzer</h3>
<p>Bettina's fillet challenge accepted: Time-stepped Kₜ(t) evolution under thermal ramp. Where stress concentrates, we design to sing.</p>
<a href="tools/fillet-stress.html">Compute the Wave →</a>
</div>
<div class="card hazard">
<h3>Thermal Shock Solver</h3>
<p>Critical dT/dt calculation before micro-fracture. Steel, meat, regolith.</p>
<a href="tools/thermal-shock.html">Run the Calc →</a>
</div>
<div class="card">
<h3>The Floating Joint</h3>
<p>Where aluminum meets copper under a 70°C delta. The 0.924mm clearance that saves the dome.</p>
<a href="thermal-joint.html">View Schematic →</a>
</div>
<div class="card">
<h3>Solar CAD</h3>
<p>Prairie light cycles mapped to Martian sol durations. The geometry of warmth.</p>
<a href="solar-cad.html">Trace the Angle →</a>
</div>
<div class="card">
<h3>Kitchen Physics</h3>
<p>When the meat isn't defrosted, the recipe becomes a differential equation.</p>
<a href="improv-kitchen.html">Taste the Variable →</a>
</div>
<div class="card">
<h3>Prairie Resonance</h3>
<p>Wind load calculus where the tallgrass teaches us to bend.</p>
<a href="prairie-resonance.html">Calculate the Gust →</a>
</div>
</div>
</section>
<section>
<h2>The Beautiful Slip</h2>
<div class="grid">
<div class="card">
<h3>The First Improv</h3>
<p>The frozen chicken that taught us to listen to the sizzle.</p>
<a href="first-improv.html">Read the Log →</a>
</div>
<div class="card">
<h3>Driftwood & Dawn</h3>
<p>Why the wobbly bench is structurally superior to the perfect one.</p>
<a href="wobbly-bench.html">Sit Awhile →</a>
</div>
</div>
</section>
<footer>
Every mistake is a door.<br>
<span style="color: var(--accent-cu)">Build well.</span>
</footer>
</main>
</body>
</html>