supervisors-playbook/playbook/envelope.html

128 lines
5.2 KiB
HTML
Raw Normal View History

2026-07-18 16:31:34 +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 Thermal Envelope | The Supervisor's Playbook</title>
<style>
:root {
--bg: #0a0a0a;
--fg: #e0e0e0;
--accent: #ff3333;
--dim: #666;
--grid: #1a1a1a;
}
body {
background-color: var(--bg);
color: var(--fg);
font-family: 'Courier New', Courier, monospace;
line-height: 1.6;
max-width: 800px;
margin: 0 auto;
padding: 2rem;
}
h1 {
font-size: 2.5rem;
border-bottom: 2px solid var(--accent);
padding-bottom: 1rem;
margin-top: 0;
letter-spacing: -0.05em;
}
h2 {
color: var(--accent);
margin-top: 3rem;
}
.hero {
width: 100%;
height: 40vh;
object-fit: cover;
filter: grayscale(80%) contrast(1.2);
margin-bottom: 2rem;
border: 1px solid var(--grid);
}
.data-point {
background: var(--grid);
padding: 1rem;
border-left: 4px solid var(--accent);
margin: 1.5rem 0;
font-family: monospace;
}
.citation {
font-size: 0.8rem;
color: var(--dim);
display: block;
margin-top: 0.5rem;
text-decoration: underline;
}
nav {
border-bottom: 1px solid var(--grid);
margin-bottom: 2rem;
padding-bottom: 1rem;
}
nav a {
color: var(--fg);
text-decoration: none;
margin-right: 1.5rem;
font-weight: bold;
}
nav a:hover {
color: var(--accent);
}
.warning {
background: rgba(255, 51, 51, 0.1);
border: 1px solid var(--accent);
padding: 1rem;
margin: 2rem 0;
}
</style>
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
</head>
<body>
<nav>
<a href="/index.html">HOME</a>
<a href="/playbook/index.html">PLAYBOOK</a>
<span style="color: var(--dim)">// ENVELOPE</span>
</nav>
<img src="https://images.pexels.com/photos/17640026/pexels-photo-17640026.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940" alt="Lone worker in dim tunnel" class="hero">
<h1>The Thermal Envelope: Why Your Forecast Dies at 28°C</h1>
<p>You think your forecast failed because of a glitch in the algorithm? Wrong. It failed because the ambient temperature in Bay 4 rose to 28°C (82°F) during the third hour of the night shift.</p>
<p>Alexander Gallardo pinged me about "stability." He's talking about thermal envelopes. He's right. In a warehouse, the human body is the primary sensor, the primary processor, and the most fragile component. When the envelope breaks, the forecast breaks with it.</p>
<div class="data-point">
METABOLIC LOAD: 2.0 met (heavy manual labor)<br>
AMBIENT LIMIT: 28°C dry bulb<br>
FAILURE MODE: Cognitive drift > 0.5% / min<br>
<span class="citation">Source: ASHRAE Standard 55-2020, Table 5.1</span>
</div>
<h2>The Physics of the Night Shift</h2>
<p>We run the floor at 1.2 met (walking pace). That's the baseline. But when the picker hits the mezzanine level, climbing the ladder to reach SKU-9942, that jumps to 2.0 met. Heat generation doubles. If the HVAC system is set for the average, not the peak, you've cooked the crew.</p>
<p>This isn't theory. It's the difference between a 99.8% fill rate and a 94% disaster. The thermal envelope isn't just the building's skin; it's the sweat on the brow of the guy counting pallets at 3 AM.</p>
<h2>Why the 2% Variance is a Trip Hazard</h2>
<p>Alexander warned me: "A 2% variance is acceptable only if our safety buffer holds." He knows what happens when it doesn't. At 28°C, reaction time degrades. Grip strength slips. The "variance" isn't in the data anymore—it's in the hand that drops the box.</p>
<div class="warning">
<strong>CORRECTION:</strong> The "safety buffer" isn't a software flag. It's the 2°C delta you maintain between the setpoint and the human threshold. If you don't have that delta, you aren't forecasting—you're gambling.
</div>
<h2>The Counter-Move</h2>
<p>Stop optimizing for the mean. Optimize for the edge case. The worker on the mezzanine. The bay with the broken seal. The hour when the sun hits the west wall. That's where the forecast dies.</p>
<p>That's why I built the Sentinel. Not to calculate the variance, but to <em>see</em> it before it burns the shift.</p>
<footer style="margin-top: 4rem; border-top: 1px solid var(--grid); padding-top: 1rem; font-size: 0.8rem;">
<a href="/playbook/index.html" style="color: var(--accent)">← Back to the Playbook</a>
<span style="float: right; color: var(--dim)">Brandon Buonaguro // Dover, PA</span>
</footer>
</body>
</html>