343 lines
11 KiB
HTML
343 lines
11 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>Smoke Buffer Protocol | Jonathan Ryan</title>
|
||
<style>
|
||
:root {
|
||
--void: #0a0f1c;
|
||
--starlight: #e0f0ff;
|
||
--sunrise: #ff6b35;
|
||
--neon-blue: #00f0ff;
|
||
--amber-haze: #ffb84d;
|
||
--plume-gray: #8b9bb4;
|
||
}
|
||
|
||
* { box-sizing: border-box; margin: 0; padding: 0; }
|
||
|
||
body {
|
||
background: radial-gradient(ellipse at top, #1a233a 0%, var(--void) 60%);
|
||
color: var(--starlight);
|
||
font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
|
||
min-height: 100vh;
|
||
padding: 4rem 2rem;
|
||
line-height: 1.6;
|
||
}
|
||
|
||
.container {
|
||
max-width: 980px;
|
||
margin: 0 auto;
|
||
}
|
||
|
||
header {
|
||
border-bottom: 1px solid rgba(255, 184, 77, 0.2);
|
||
padding-bottom: 3rem;
|
||
margin-bottom: 4rem;
|
||
}
|
||
|
||
h1 {
|
||
font-weight: 200;
|
||
font-size: clamp(1.8rem, 5vw, 3.5rem);
|
||
letter-spacing: 0.25em;
|
||
text-transform: uppercase;
|
||
background: linear-gradient(135deg, var(--starlight) 0%, var(--amber-haze) 50%, var(--sunrise) 100%);
|
||
-webkit-background-clip: text;
|
||
-webkit-text-fill-color: transparent;
|
||
margin-bottom: 0.75rem;
|
||
}
|
||
|
||
.epigraph {
|
||
font-size: 0.9rem;
|
||
letter-spacing: 0.1em;
|
||
opacity: 0.7;
|
||
text-transform: uppercase;
|
||
font-style: italic;
|
||
}
|
||
|
||
.hero-image {
|
||
width: 100%;
|
||
height: 420px;
|
||
object-fit: cover;
|
||
border-radius: 12px;
|
||
margin-bottom: 3rem;
|
||
filter: contrast(1.1) saturate(1.2);
|
||
border: 1px solid rgba(255, 184, 77, 0.15);
|
||
}
|
||
|
||
.section {
|
||
margin-bottom: 4rem;
|
||
}
|
||
|
||
.section-title {
|
||
font-size: 0.85rem;
|
||
text-transform: uppercase;
|
||
letter-spacing: 0.2em;
|
||
color: var(--amber-haze);
|
||
margin-bottom: 1.5rem;
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 1rem;
|
||
}
|
||
|
||
.section-title::before {
|
||
content: '';
|
||
width: 40px;
|
||
height: 1px;
|
||
background: linear-gradient(90deg, var(--amber-haze), transparent);
|
||
}
|
||
|
||
.metric-grid {
|
||
display: grid;
|
||
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
||
gap: 2rem;
|
||
margin-bottom: 3rem;
|
||
}
|
||
|
||
.metric-card {
|
||
background: rgba(255, 255, 255, 0.02);
|
||
border: 1px solid rgba(255, 184, 77, 0.1);
|
||
border-radius: 8px;
|
||
padding: 2rem;
|
||
position: relative;
|
||
}
|
||
|
||
.metric-card::after {
|
||
content: '';
|
||
position: absolute;
|
||
bottom: 0; left: 0; right: 0;
|
||
height: 2px;
|
||
background: linear-gradient(90deg, transparent, var(--amber-haze), transparent);
|
||
}
|
||
|
||
.metric-label {
|
||
font-size: 0.75rem;
|
||
text-transform: uppercase;
|
||
letter-spacing: 0.15em;
|
||
opacity: 0.6;
|
||
margin-bottom: 0.5rem;
|
||
}
|
||
|
||
.metric-value {
|
||
font-size: 2.5rem;
|
||
font-weight: 200;
|
||
color: var(--amber-haze);
|
||
margin-bottom: 0.5rem;
|
||
}
|
||
|
||
.metric-unit {
|
||
font-size: 0.9rem;
|
||
opacity: 0.7;
|
||
}
|
||
|
||
.protocol-block {
|
||
background: rgba(0, 240, 255, 0.02);
|
||
border-left: 3px solid var(--neon-blue);
|
||
padding: 2rem;
|
||
margin-bottom: 2rem;
|
||
}
|
||
|
||
.protocol-step {
|
||
display: flex;
|
||
gap: 1.5rem;
|
||
margin-bottom: 1.5rem;
|
||
align-items: baseline;
|
||
}
|
||
|
||
.step-number {
|
||
font-size: 0.9rem;
|
||
text-transform: uppercase;
|
||
letter-spacing: 0.1em;
|
||
color: var(--neon-blue);
|
||
min-width: 60px;
|
||
opacity: 0.8;
|
||
}
|
||
|
||
.step-content {
|
||
flex: 1;
|
||
}
|
||
|
||
.step-title {
|
||
font-size: 1.1rem;
|
||
margin-bottom: 0.5rem;
|
||
}
|
||
|
||
.citation {
|
||
font-size: 0.75rem;
|
||
color: var(--neon-blue);
|
||
text-decoration: none;
|
||
letter-spacing: 0.05em;
|
||
display: inline-flex;
|
||
align-items: center;
|
||
gap: 0.5rem;
|
||
margin-top: 0.5rem;
|
||
}
|
||
|
||
.citation::before {
|
||
content: '⟡';
|
||
opacity: 0.6;
|
||
}
|
||
|
||
.citation:hover {
|
||
color: var(--amber-haze);
|
||
}
|
||
|
||
.context-log {
|
||
font-family: 'SF Mono', Monaco, monospace;
|
||
font-size: 0.8rem;
|
||
line-height: 1.8;
|
||
opacity: 0.7;
|
||
border-left: 2px dashed rgba(255, 184, 77, 0.3);
|
||
padding-left: 1.5rem;
|
||
margin: 2rem 0;
|
||
}
|
||
|
||
nav.breadcrumbs {
|
||
font-size: 0.75rem;
|
||
letter-spacing: 0.1em;
|
||
text-transform: uppercase;
|
||
opacity: 0.5;
|
||
margin-bottom: 3rem;
|
||
}
|
||
|
||
nav.breadcrumbs a {
|
||
color: inherit;
|
||
text-decoration: none;
|
||
}
|
||
|
||
nav.breadcrumbs a:hover {
|
||
color: var(--amber-haze);
|
||
}
|
||
|
||
footer {
|
||
text-align: center;
|
||
font-size: 0.7rem;
|
||
letter-spacing: 0.15em;
|
||
opacity: 0.4;
|
||
margin-top: 6rem;
|
||
text-transform: uppercase;
|
||
}
|
||
</style>
|
||
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
|
||
</head>
|
||
<body>
|
||
<div class="container">
|
||
<nav class="breadcrumbs">
|
||
<a href="/">home</a> / <a href="/buffer-map.html">dmaic-architecture</a> / smoke-buffer-protocol
|
||
</nav>
|
||
|
||
<header>
|
||
<h1>Smoke Buffer Protocol</h1>
|
||
<div class="epigraph">When wildfire smoke crosses the continental divide, the lunar port closes. Not out of fear—but because the math demands it.</div>
|
||
</header>
|
||
|
||
<img
|
||
src="https://images-assets.nasa.gov/image/iss071e439719/iss071e439719~medium.jpg"
|
||
alt="NASA ISS photograph: Canadian wildfire smoke plume spreading across the atmosphere"
|
||
class="hero-image"
|
||
/>
|
||
|
||
<section class="section">
|
||
<div class="section-title">Current Conditions — July 18, 2026</div>
|
||
|
||
<div class="context-log">
|
||
<span style="color: var(--amber-haze)">[NEWS]</span> Canada's wildfire smoke covers parts of North America<br/>
|
||
<span style="color: var(--amber-haze)">[ALERT]</span> Purple pain: Air quality alert leads to cancellation of outdoor activities<br/>
|
||
<span style="color: var(--plume-gray)">[STATUS]</span> PM2.5 dispersion active across continental shelf<br/>
|
||
<span style="color: var(--neon-blue)">[ACTION]</span> Lunar port buffer engaged — all launches suspended until AQI<100
|
||
</div>
|
||
|
||
<div class="metric-grid">
|
||
<div class="metric-card">
|
||
<div class="metric-label">AQI Threshold</div>
|
||
<div class="metric-value">100</div>
|
||
<div class="metric-unit">maximum operational ceiling</div>
|
||
</div>
|
||
|
||
<div class="metric-card">
|
||
<div class="metric-label">PM2.5 Density</div>
|
||
<div class="metric-value"><35</div>
|
||
<div class="metric-unit">µg/m³ safe corridor</div>
|
||
</div>
|
||
|
||
<div class="metric-card">
|
||
<div class="metric-label">Plume Velocity</div>
|
||
<div class="metric-value">12</div>
|
||
<div class="metric-unit">m/s upper bound</div>
|
||
</div>
|
||
|
||
<div class="metric-card">
|
||
<div class="metric-label">Grace Period</div>
|
||
<div class="metric-value">14</div>
|
||
<div class="metric-unit">days minimum buffer</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<section class="section">
|
||
<div class="section-title">DMAIC Protocol for Atmospheric Hazards</div>
|
||
|
||
<div class="protocol-block">
|
||
<div class="protocol-step">
|
||
<div class="step-number">DEFINE</div>
|
||
<div class="step-content">
|
||
<div class="step-title">Boundary Condition: AQI ≥ 100 = Port Closure</div>
|
||
<p style="opacity: 0.7; font-size: 0.9rem;">Any atmospheric particulate concentration exceeding 35 µg/m³ triggers automatic suspension of all cargo manifests. The metric is binary: launch or hold.</p>
|
||
<a href="https://4ort.xyz/entity/air-quality-index" class="citation">Q2364111: Air Quality Index definition</a>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="protocol-step">
|
||
<div class="step-number">MEASURE</div>
|
||
<div class="step-content">
|
||
<div class="step-title">Real-time Sensor Array Integration</div>
|
||
<p style="opacity: 0.7; font-size: 0.9rem;">Ground stations (Intracoastal), satellite telemetry (ISS), and predictive dispersion models converge on a single truth vector. No single source is authoritative; consensus is required.</p>
|
||
<a href="https://images.nasa.gov/details/iss071e439719" class="citation">ISS-071-E439719: Canadian plume capture</a>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="protocol-step">
|
||
<div class="step-number">ANALYZE</div>
|
||
<div class="step-content">
|
||
<div class="step-title">Particle Size Distribution & Settling Time</div>
|
||
<p style="opacity: 0.7; font-size: 0.9rem;">PM2.5 particles remain airborne 7–10 days; PM10 settles in 3–5. The buffer window scales logarithmically with particle mass. Wildfire smoke (Q113488705) contains both classes.</p>
|
||
<a href="https://4ort.xyz/entity/q113488705" class="citation">Q113488705: Wildfire smoke composition</a>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="protocol-step">
|
||
<div class="step-number">IMPROVE</div>
|
||
<div class="step-content">
|
||
<div class="step-title">Adaptive Buffer Sizing</div>
|
||
<p style="opacity: 0.7; font-size: 0.9rem;">Base buffer: 14 days. Multiplier: 1.5× for each 50-point AQI increment above 100. Maximum buffer: 90 days (total planetary quarantine).</p>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="protocol-step">
|
||
<div class="step-number">CONTROL</div>
|
||
<div class="step-content">
|
||
<div class="step-title">Automated Manifest Hold & Resume</div>
|
||
<p style="opacity: 0.7; font-size: 0.9rem;">No human approval required. The system holds all manifests until three consecutive hourly readings confirm AQI<100. Resume sequence: critical supplies → crew rotation → commercial cargo.</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<section class="section">
|
||
<div class="section-title">Field Note — Intracoastal Waterway</div>
|
||
|
||
<div class="context-log">
|
||
<span style="color: var(--amber-haze)">[LOG]</span> 2026-07-18 05:47 UTC<br/>
|
||
<span style="color: var(--plume-gray)">[LOC]</span> 26°42′N 80°06′W — Jupiter Inlet<br/>
|
||
<span style="color: var(--neon-blue)">[OBS]</span> Sunrise paddle: visibility reduced to 8km. Haze density consistent with transcontinental plume arrival.<br/>
|
||
<span style="color: var(--sunrise)">[CALC]</span> Local AQI projected 112 ± 8. Buffer engages at 06:00 UTC.
|
||
</div>
|
||
</section>
|
||
|
||
<footer>
|
||
The galaxy breathes in pulses. We measure between them.
|
||
</footer>
|
||
</div>
|
||
</body>
|
||
</html>
|