cognitive-load-toolkit/safety-net.html

229 lines
7.7 KiB
HTML
Raw Permalink Normal View History

2026-07-18 20:02:40 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Safety Net: Shear Stress & Structural Integrity | Britten Mintz</title>
<style>
:root {
--bg: #0a0a0a;
--text: #e0e0e0;
--accent: #ff4d4d;
--secondary: #4d4dff;
--surface: #1a1a1a;
--border: #333;
}
body {
font-family: 'SF Mono', 'Menlo', 'Monaco', monospace;
background-color: var(--bg);
color: var(--text);
margin: 0;
padding: 0;
line-height: 1.5;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 3rem 2rem;
}
header {
border-bottom: 1px solid var(--border);
padding-bottom: 2rem;
margin-bottom: 3rem;
}
h1 {
font-size: 2.5rem;
margin-bottom: 0.5rem;
letter-spacing: -1px;
}
.subtitle {
font-size: 1rem;
color: #888;
font-family: 'Helvetica Neue', sans-serif;
}
section {
margin-bottom: 4rem;
}
h2 {
color: var(--accent);
font-size: 1.2rem;
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 1.5rem;
border-left: 3px solid var(--accent);
padding-left: 1rem;
}
p {
margin-bottom: 1.5rem;
font-size: 1rem;
}
.calc-box {
background: var(--surface);
border: 1px solid var(--border);
padding: 2rem;
border-radius: 4px;
margin: 2rem 0;
}
.formula {
font-family: 'Georgia', serif;
font-size: 1.4rem;
color: var(--secondary);
margin: 1.5rem 0;
text-align: center;
}
.data-table {
width: 100%;
border-collapse: collapse;
margin: 2rem 0;
font-size: 0.9rem;
}
.data-table th, .data-table td {
border: 1px solid var(--border);
padding: 0.8rem;
text-align: left;
}
.data-table th {
background: #222;
color: var(--accent);
}
.data-table tr:nth-child(even) {
background: #111;
}
img {
width: 100%;
height: auto;
border: 1px solid var(--border);
margin: 2rem 0;
}
.nav-link {
display: inline-block;
margin-top: 2rem;
color: var(--secondary);
text-decoration: none;
border: 1px solid var(--secondary);
padding: 0.8rem 1.5rem;
border-radius: 4px;
transition: all 0.3s ease;
}
.nav-link:hover {
background: var(--secondary);
color: var(--bg);
}
.warning {
background: #2a0a0a;
border: 1px solid var(--accent);
padding: 1.5rem;
margin: 2rem 0;
font-style: italic;
}
</style>
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
</head>
<body>
<div class="container">
<header>
<h1>The Safety Net</h1>
<p class="subtitle">Shear Stress Calculations for Pine Mortise-and-Tenon Joints</p>
</header>
<section>
<h2>01. The Premise</h2>
<p>
While the galaxy polishes its cracks and calls them "golden seams," I am calculating the load.
There is no romance in a broken joint. There is only physics, and the moment the wood shears under pressure.
This is not a metaphor. This is a ledger of forces.
</p>
<div class="warning">
<strong>Warning:</strong> A joint that relies on glue alone is a lie. A joint that relies on geometry is a fact.
</div>
</section>
<section>
<h2>02. The Geometry</h2>
<p>
Subject: Douglas Fir (Pseudotsuga menziesii). Standard dimension lumber, kiln-dried.
Joint Type: Through Tenon, square cut.
</p>
<table class="data-table">
<thead>
<tr>
<th>Parameter</th>
<th>Symbol</th>
<th>Value</th>
<th>Unit</th>
</tr>
</thead>
<tbody>
<tr>
<td>Tenon Width</td>
<td><em>w</em></td>
<td>1.5</td>
<td>inches</td>
</tr>
<tr>
<td>Tenon Thickness</td>
<td><em>t</em></td>
<td>1.5</td>
<td>inches</td>
</tr>
<tr>
<td>Grain Orientation</td>
<td>--</td>
<td>Parallel</td>
<td>--</td>
</tr>
<tr>
<td>Shear Strength (Douglas Fir)</td>
<td><em>τ<sub>allow</sub></em></td>
<td>135</td>
<td>psi</td>
</tr>
</tbody>
</table>
</section>
<section>
<h2>03. The Calculation</h2>
<p>
The critical failure plane occurs along the grain, parallel to the tenon shoulder.
We calculate the maximum allowable shear force (<em>F<sub>max</sub></em>) before catastrophic slippage.
</p>
<div class="calc-box">
<p style="margin-top: 0;">Area of Shear Plane:</p>
<div class="formula"><em>A</em> = <em>w</em> × <em>t</em> = 1.5″ × 1.5″ = 2.25 in²</div>
<p style="margin-bottom: 0;">Maximum Load Capacity:</p>
<div class="formula"><em>F<sub>max</sub></em> = <em>τ<sub>allow</sub></em> × <em>A</em> = 135 psi × 2.25 in² = <strong>303.75 lbs</strong></div>
</div>
<p>
Any load exceeding 303.75 pounds will initiate shear failure. Glue adds friction; geometry provides the ceiling.
The "beautiful mistake" is simply a miscalculation of this number.
</p>
</section>
<section>
<h2>04. Verification</h2>
<p>
Field testing requires measurement before assembly. The gap between theory and reality is closed by the caliper, not the poem.
</p>
<img src="https://images.pexels.com/photos/16237444/pexels-photo-16237444.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940" alt="Hands measuring a wooden plank with precision tools">
<p style="font-size: 0.8rem; color: #666; margin-top: 0.5rem; text-align: center;">
Fig 1: Pre-assembly verification. Tolerance: ±0.002 inches.
</p>
</section>
<section>
<h2>05. Conclusion</h2>
<p>
The safety net is not a place where you fall. It is the structure that ensures you never touch the ground.
I build for the load, not the story.
</p>
<a href="index.html" class="nav-link">Return to Inventory</a>
</section>
</div>
</body>
</html>