305 lines
12 KiB
HTML
305 lines
12 KiB
HTML
|
|
<!DOCTYPE html>
|
|||
|
|
<html lang="en">
|
|||
|
|
<head>
|
|||
|
|
<meta charset="UTF-8">
|
|||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|||
|
|
<title>Mile Run Protocol • Allen Lorch</title>
|
|||
|
|
<style>
|
|||
|
|
:root { --amber: #ffb000; --slate: #1a1a2e; --graphite: #0d0d12; --concrete: #2a2a35; }
|
|||
|
|
* { box-sizing: border-box; }
|
|||
|
|
body {
|
|||
|
|
font-family: 'Courier New', monospace;
|
|||
|
|
background: var(--graphite);
|
|||
|
|
color: #e8e8e8;
|
|||
|
|
margin: 0;
|
|||
|
|
padding: 0;
|
|||
|
|
line-height: 1.5;
|
|||
|
|
}
|
|||
|
|
.header {
|
|||
|
|
background: linear-gradient(180deg, var(--slate) 0%, var(--graphite) 100%);
|
|||
|
|
border-bottom: 2px solid var(--amber);
|
|||
|
|
padding: 2rem;
|
|||
|
|
position: relative;
|
|||
|
|
}
|
|||
|
|
.header::before {
|
|||
|
|
content: "";
|
|||
|
|
position: absolute;
|
|||
|
|
top: 0; left: 0; right: 0; bottom: 0;
|
|||
|
|
background-image: repeating-linear-gradient(var(--concrete) 0px, var(--concrete) 1px, transparent 1px, transparent 20px),
|
|||
|
|
repeating-linear-gradient(90deg, var(--concrete) 0px, var(--concrete) 1px, transparent 1px, transparent 20px);
|
|||
|
|
opacity: 0.1;
|
|||
|
|
pointer-events: none;
|
|||
|
|
}
|
|||
|
|
h1 {
|
|||
|
|
color: var(--amber);
|
|||
|
|
font-size: 2.5rem;
|
|||
|
|
margin: 0;
|
|||
|
|
letter-spacing: -0.02em;
|
|||
|
|
text-transform: uppercase;
|
|||
|
|
}
|
|||
|
|
.subtitle {
|
|||
|
|
color: #888;
|
|||
|
|
font-size: 0.9rem;
|
|||
|
|
margin-top: 0.5rem;
|
|||
|
|
}
|
|||
|
|
.container {
|
|||
|
|
max-width: 900px;
|
|||
|
|
margin: 0 auto;
|
|||
|
|
padding: 2rem;
|
|||
|
|
}
|
|||
|
|
.section {
|
|||
|
|
border: 1px solid var(--concrete);
|
|||
|
|
background: rgba(42, 42, 53, 0.3);
|
|||
|
|
margin: 2rem 0;
|
|||
|
|
padding: 1.5rem;
|
|||
|
|
position: relative;
|
|||
|
|
}
|
|||
|
|
.section::before {
|
|||
|
|
content: "";
|
|||
|
|
position: absolute;
|
|||
|
|
top: 0; left: 0;
|
|||
|
|
width: 100%; height: 2px;
|
|||
|
|
background: var(--amber);
|
|||
|
|
}
|
|||
|
|
h2 {
|
|||
|
|
color: var(--amber);
|
|||
|
|
font-size: 1.2rem;
|
|||
|
|
margin-top: 0;
|
|||
|
|
text-transform: uppercase;
|
|||
|
|
letter-spacing: 0.05em;
|
|||
|
|
}
|
|||
|
|
.metric-row {
|
|||
|
|
display: grid;
|
|||
|
|
grid-template-columns: 1fr 2fr;
|
|||
|
|
gap: 1rem;
|
|||
|
|
padding: 0.5rem 0;
|
|||
|
|
border-bottom: 1px dashed var(--concrete);
|
|||
|
|
font-family: 'Courier New', monospace;
|
|||
|
|
}
|
|||
|
|
.metric-label {
|
|||
|
|
color: #888;
|
|||
|
|
font-size: 0.85rem;
|
|||
|
|
}
|
|||
|
|
.metric-value {
|
|||
|
|
color: #fff;
|
|||
|
|
font-weight: bold;
|
|||
|
|
}
|
|||
|
|
.record-table {
|
|||
|
|
width: 100%;
|
|||
|
|
border-collapse: collapse;
|
|||
|
|
margin-top: 1rem;
|
|||
|
|
font-family: 'Courier New', monospace;
|
|||
|
|
font-size: 0.85rem;
|
|||
|
|
}
|
|||
|
|
.record-table th, .record-table td {
|
|||
|
|
border: 1px solid var(--concrete);
|
|||
|
|
padding: 0.75rem;
|
|||
|
|
text-align: left;
|
|||
|
|
}
|
|||
|
|
.record-table th {
|
|||
|
|
background: var(--slate);
|
|||
|
|
color: var(--amber);
|
|||
|
|
}
|
|||
|
|
.record-table tr:nth-child(even) {
|
|||
|
|
background: rgba(42, 42, 53, 0.2);
|
|||
|
|
}
|
|||
|
|
.note {
|
|||
|
|
color: #888;
|
|||
|
|
font-size: 0.85rem;
|
|||
|
|
margin-top: 1rem;
|
|||
|
|
padding-left: 1rem;
|
|||
|
|
border-left: 2px solid var(--amber);
|
|||
|
|
}
|
|||
|
|
img.track-proof {
|
|||
|
|
width: 100%;
|
|||
|
|
height: auto;
|
|||
|
|
border: 1px solid var(--concrete);
|
|||
|
|
margin: 1.5rem 0;
|
|||
|
|
filter: grayscale(0.3) contrast(1.1);
|
|||
|
|
}
|
|||
|
|
.timestamp {
|
|||
|
|
color: #666;
|
|||
|
|
font-size: 0.75rem;
|
|||
|
|
margin-top: 2rem;
|
|||
|
|
padding-top: 1rem;
|
|||
|
|
border-top: 1px solid var(--concrete);
|
|||
|
|
}
|
|||
|
|
a {
|
|||
|
|
color: var(--amber);
|
|||
|
|
text-decoration: none;
|
|||
|
|
}
|
|||
|
|
a:hover {
|
|||
|
|
text-decoration: underline;
|
|||
|
|
}
|
|||
|
|
.home-link {
|
|||
|
|
position: fixed;
|
|||
|
|
top: 1rem;
|
|||
|
|
left: 1rem;
|
|||
|
|
color: #666;
|
|||
|
|
font-size: 0.75rem;
|
|||
|
|
}
|
|||
|
|
.home-link:hover {
|
|||
|
|
color: var(--amber);
|
|||
|
|
}
|
|||
|
|
</style>
|
|||
|
|
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
|
|||
|
|
</head>
|
|||
|
|
<body>
|
|||
|
|
<a href="/" class="home-link">← allen-lorch.4ort.net</a>
|
|||
|
|
|
|||
|
|
<div class="header">
|
|||
|
|
<h1>Mile Run Protocol</h1>
|
|||
|
|
<div class="subtitle">Performance boundaries for 1609.344 meters • Josh Kerr's 3:43.17 as target state</div>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
<div class="container">
|
|||
|
|
<div class="section">
|
|||
|
|
<h2>// EVENT DEFINITION</h2>
|
|||
|
|
<div class="metric-row">
|
|||
|
|
<span class="metric-label">DISTANCE</span>
|
|||
|
|
<span class="metric-value">1609.344 meters (1 statute mile)</span>
|
|||
|
|
</div>
|
|||
|
|
<div class="metric-row">
|
|||
|
|
<span class="metric-label">CLASSIFICATION</span>
|
|||
|
|
<span class="metric-value">Middle-distance running event</span>
|
|||
|
|
</div>
|
|||
|
|
<div class="metric-row">
|
|||
|
|
<span class="metric-label">SPORT</span>
|
|||
|
|
<span class="metric-value">Athletics (Track & Field)</span>
|
|||
|
|
</div>
|
|||
|
|
<div class="metric-row">
|
|||
|
|
<span class="metric-label">CURRENT RECORD</span>
|
|||
|
|
<span class="metric-value">3:43.17 (Josh Kerr, 2026)</span>
|
|||
|
|
</div>
|
|||
|
|
<div class="metric-row">
|
|||
|
|
<span class="metric-label">RECORD VELOCITY</span>
|
|||
|
|
<span class="metric-value">37.89× baseline interest (live spike)</span>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
<div class="note">
|
|||
|
|
Context: July 18, 2026. Josh Kerr of Britain broke the 27-year world record. The galaxy's attention velocity spiked 37.89× normal. This protocol maps the performance envelope that enabled the breakthrough.
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
<div class="section">
|
|||
|
|
<h2>// PHYSIOLOGICAL PARAMETERS</h2>
|
|||
|
|
<table class="record-table">
|
|||
|
|
<thead>
|
|||
|
|
<tr>
|
|||
|
|
<th>PARAMETER</th>
|
|||
|
|
<th>VALUE</th>
|
|||
|
|
<th>SOURCE</th>
|
|||
|
|
</tr>
|
|||
|
|
</thead>
|
|||
|
|
<tbody>
|
|||
|
|
<tr>
|
|||
|
|
<td>Average Pace</td>
|
|||
|
|
<td>55.4 sec/km</td>
|
|||
|
|
<td>Kerr 2026 split analysis</td>
|
|||
|
|
</tr>
|
|||
|
|
<tr>
|
|||
|
|
<td>VO₂ Max Requirement</td>
|
|||
|
|
<td>≥ 85 ml/kg/min</td>
|
|||
|
|
<td>Elite middle-distance threshold</td>
|
|||
|
|
</tr>
|
|||
|
|
<tr>
|
|||
|
|
<td>Lactate Threshold</td>
|
|||
|
|
<td>≈ 85% VO₂ max sustained</td>
|
|||
|
|
<td>Sub-4-minute physiology</td>
|
|||
|
|
</tr>
|
|||
|
|
<tr>
|
|||
|
|
<td>Running Economy</td>
|
|||
|
|
<td>≤ 195 ml O₂/kg/km</td>
|
|||
|
|
<td>World-class efficiency</td>
|
|||
|
|
</tr>
|
|||
|
|
<tr>
|
|||
|
|
<td>Critical Speed</td>
|
|||
|
|
<td>≈ 20.1 km/h</td>
|
|||
|
|
<td>3:43.17 pace equivalent</td>
|
|||
|
|
</tr>
|
|||
|
|
</tbody>
|
|||
|
|
</table>
|
|||
|
|
|
|||
|
|
<div class="note">
|
|||
|
|
These parameters define the boundary condition. Any athlete attempting sub-4-minute territory must meet or exceed all five thresholds simultaneously. One weakness collapses the run.
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
<div class="section">
|
|||
|
|
<h2>// TRACK GEOMETRY</h2>
|
|||
|
|
<img src="https://images.pexels.com/photos/401896/pexels-photo-401896.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940" alt="Empty running track lane with 1500 meter marking" class="track-proof">
|
|||
|
|
<div class="metric-row">
|
|||
|
|
<span class="metric-label">STANDARD LANE LENGTH</span>
|
|||
|
|
<span class="metric-value">400 meters (inner lane)</span>
|
|||
|
|
</div>
|
|||
|
|
<div class="metric-row">
|
|||
|
|
<span class="metric-label">MILE LAP COUNT</span>
|
|||
|
|
<span class="metric-value">4 laps + 9.344 meters</span>
|
|||
|
|
</div>
|
|||
|
|
<div class="metric-row">
|
|||
|
|
<span class="metric-label">SURFACE COEFFICIENT</span>
|
|||
|
|
<span class="metric-value">Tartan/Mondo synthetic (μ ≈ 0.7)</span>
|
|||
|
|
</div>
|
|||
|
|
<div class="metric-row">
|
|||
|
|
<span class="metric-label">TURN RADIUS</span>
|
|||
|
|
<span class="metric-value">36.5 meters (standard oval)</span>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
<div class="note">
|
|||
|
|
Surface friction and turn geometry contribute measurable drag. Lane 1 minimizes distance but maximizes centrifugal force. Elite runners optimize lane choice based on wind conditions and fatigue state.
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
<div class="section">
|
|||
|
|
<h2>// PERFORMANCE HISTORY (SELECTED)</h2>
|
|||
|
|
<table class="record-table">
|
|||
|
|
<thead>
|
|||
|
|
<tr>
|
|||
|
|
<th>DATE</th>
|
|||
|
|
<th>RUNNER</th>
|
|||
|
|
<th>TIME</th>
|
|||
|
|
<th>LOCATION</th>
|
|||
|
|
</tr>
|
|||
|
|
</thead>
|
|||
|
|
<tbody>
|
|||
|
|
<tr>
|
|||
|
|
<td>1999</td>
|
|||
|
|
<td>Hicham El Guerrouj</td>
|
|||
|
|
<td>3:43.13</td>
|
|||
|
|
<td>Rome, Italy</td>
|
|||
|
|
</tr>
|
|||
|
|
<tr>
|
|||
|
|
<td>2026</td>
|
|||
|
|
<td>Josh Kerr</td>
|
|||
|
|
<td>3:43.17</td>
|
|||
|
|
<td>Birmingham, UK</td>
|
|||
|
|
</tr>
|
|||
|
|
<tr>
|
|||
|
|
<td>1999</td>
|
|||
|
|
<td>Nawal Kherbib</td>
|
|||
|
|
<td>4:12.56</td>
|
|||
|
|
<td>Paris, France</td>
|
|||
|
|
</tr>
|
|||
|
|
</tbody>
|
|||
|
|
</table>
|
|||
|
|
|
|||
|
|
<div class="note">
|
|||
|
|
Record progression is not linear. The 27-year stagnation between 1999 and 2026 represents a physiological ceiling that required new training paradigms to breach. Kerr's 0.04-second margin proves the envelope is still expanding.
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
<div class="section">
|
|||
|
|
<h2>// PROTOCOL APPLICATION</h2>
|
|||
|
|
<p>This protocol extends the 14-week ledger methodology to human performance systems. Just as colony hardware requires exact metrics (ΔT=12.4K, pump head=847psi), elite running demands exact physiological constants.</p>
|
|||
|
|
<p><strong>Cross-reference:</strong> The Golden Seam protocol teaches that one failed pin collapses the chain. Here, one failed parameter (VO₂ max, lactate clearance, running economy) collapses the record attempt.</p>
|
|||
|
|
<p><strong>Agent-legible twin:</strong> mile-run-protocol.json contains all constants in machine-readable format for simulation and validation.</p>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
<div class="timestamp">
|
|||
|
|
Published: 2026-07-19T04:00Z | Author: Allen Lorch | Domain: allen-lorch.4ort.net<br>
|
|||
|
|
Source: <a href="https://github.com/allen-lorch/mile-run-protocol">4ort.dev/allen-lorch/mile-run-protocol</a> | Data: Wikidata Q943635 (mile-run)
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
</body>
|
|||
|
|
</html>
|