253 lines
9.5 KiB
HTML
253 lines
9.5 KiB
HTML
|
|
<!DOCTYPE html>
|
|||
|
|
<html lang="en">
|
|||
|
|
<head>
|
|||
|
|
<meta charset="UTF-8">
|
|||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|||
|
|
<title>The Classroom Environment Field Guide | Barbara Asbell</title>
|
|||
|
|
<meta property="og:type" content="website">
|
|||
|
|
<meta property="og:title" content="The Classroom Environment Field Guide | Barbara Asbell">
|
|||
|
|
<meta property="og:description" content="A lesson launched in poor air is a lesson lost before the first sentence. This document establishes the non-negotiable environmental baselines required…">
|
|||
|
|
<meta property="og:image" content="https://images.pexels.com/photos/5587818/pexels-photo-5587818.jpeg?auto=compress&amp;cs=tinysrgb&amp;dpr=2&amp;h=650&amp;w=940">
|
|||
|
|
<meta property="og:url" content="https://barbara-asbell.4ort.net/classroom-environment-field-guide.html">
|
|||
|
|
<meta name="twitter:card" content="summary_large_image">
|
|||
|
|
<meta name="description" content="A lesson launched in poor air is a lesson lost before the first sentence. This document establishes the non-negotiable environmental baselines required…">
|
|||
|
|
<style>
|
|||
|
|
:root {
|
|||
|
|
--ink: #1a1a1a;
|
|||
|
|
--paper: #fdfbf7;
|
|||
|
|
--line: #888888;
|
|||
|
|
--accent: #2c3e50;
|
|||
|
|
--font-body: Georgia, "Times New Roman", serif;
|
|||
|
|
--font-tech: "Courier New", Courier, monospace;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
* { box-sizing: border-box; }
|
|||
|
|
|
|||
|
|
body {
|
|||
|
|
margin: 0;
|
|||
|
|
padding: 4rem 2rem;
|
|||
|
|
background-color: var(--paper);
|
|||
|
|
color: var(--ink);
|
|||
|
|
font-family: var(--font-body);
|
|||
|
|
line-height: 1.6;
|
|||
|
|
max-width: 800px;
|
|||
|
|
margin-left: auto;
|
|||
|
|
margin-right: auto;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
header {
|
|||
|
|
border-bottom: 4px solid var(--ink);
|
|||
|
|
padding-bottom: 2rem;
|
|||
|
|
margin-bottom: 3rem;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
h1 {
|
|||
|
|
font-size: 2.5rem;
|
|||
|
|
letter-spacing: -0.02em;
|
|||
|
|
margin: 0 0 0.5rem 0;
|
|||
|
|
line-height: 1.1;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.subtitle {
|
|||
|
|
font-family: var(--font-tech);
|
|||
|
|
font-size: 0.9rem;
|
|||
|
|
color: var(--accent);
|
|||
|
|
text-transform: uppercase;
|
|||
|
|
letter-spacing: 0.05em;
|
|||
|
|
display: flex;
|
|||
|
|
justify-content: space-between;
|
|||
|
|
align-items: center;
|
|||
|
|
border-top: 1px solid var(--line);
|
|||
|
|
border-bottom: 1px solid var(--line);
|
|||
|
|
padding: 0.5rem 0;
|
|||
|
|
margin-top: 1rem;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
h2 {
|
|||
|
|
font-family: var(--font-tech);
|
|||
|
|
font-size: 1rem;
|
|||
|
|
text-transform: uppercase;
|
|||
|
|
letter-spacing: 0.1em;
|
|||
|
|
border-left: 4px solid var(--ink);
|
|||
|
|
padding-left: 1rem;
|
|||
|
|
margin-top: 3rem;
|
|||
|
|
margin-bottom: 1rem;
|
|||
|
|
color: var(--accent);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
p {
|
|||
|
|
margin-bottom: 1.5rem;
|
|||
|
|
text-align: justify;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.spec-table {
|
|||
|
|
width: 100%;
|
|||
|
|
border-collapse: collapse;
|
|||
|
|
margin: 2rem 0;
|
|||
|
|
font-family: var(--font-tech);
|
|||
|
|
font-size: 0.85rem;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.spec-table th, .spec-table td {
|
|||
|
|
border: 1px solid var(--ink);
|
|||
|
|
padding: 0.75rem;
|
|||
|
|
text-align: left;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.spec-table th {
|
|||
|
|
background-color: var(--ink);
|
|||
|
|
color: var(--paper);
|
|||
|
|
text-transform: uppercase;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.spec-table tr:nth-child(even) {
|
|||
|
|
background-color: rgba(0,0,0,0.02);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.citation {
|
|||
|
|
font-family: var(--font-tech);
|
|||
|
|
font-size: 0.75rem;
|
|||
|
|
color: var(--line);
|
|||
|
|
display: block;
|
|||
|
|
margin-top: 0.5rem;
|
|||
|
|
padding-left: 0.5rem;
|
|||
|
|
border-left: 2px solid var(--line);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.field-note {
|
|||
|
|
background-color: transparent;
|
|||
|
|
border: 1px dashed var(--line);
|
|||
|
|
padding: 1.5rem;
|
|||
|
|
margin: 2rem 0;
|
|||
|
|
font-style: italic;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
nav.home {
|
|||
|
|
margin-top: 4rem;
|
|||
|
|
border-top: 1px solid var(--line);
|
|||
|
|
padding-top: 1rem;
|
|||
|
|
font-family: var(--font-tech);
|
|||
|
|
font-size: 0.8rem;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
nav.home a {
|
|||
|
|
color: var(--ink);
|
|||
|
|
text-decoration: none;
|
|||
|
|
margin-right: 1.5rem;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
nav.home a:hover {
|
|||
|
|
text-decoration: underline;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/* Fortlet fallback */
|
|||
|
|
fort-media {
|
|||
|
|
display: block;
|
|||
|
|
width: 100%;
|
|||
|
|
height: auto;
|
|||
|
|
margin: 2rem 0;
|
|||
|
|
border: 1px solid var(--line);
|
|||
|
|
background: linear-gradient(to bottom, #f0f0f0, #e0e0e0);
|
|||
|
|
padding: 2rem;
|
|||
|
|
text-align: center;
|
|||
|
|
font-family: var(--font-tech);
|
|||
|
|
color: var(--line);
|
|||
|
|
}
|
|||
|
|
</style>
|
|||
|
|
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
|
|||
|
|
</head>
|
|||
|
|
<body>
|
|||
|
|
<header>
|
|||
|
|
<h1>The Classroom Environment<br>Field Guide</h1>
|
|||
|
|
<div class="subtitle">
|
|||
|
|
<span>VOL. 04: PHYSICAL CONSTANTS</span>
|
|||
|
|
<span>STATUS: VERIFIED</span>
|
|||
|
|
</div>
|
|||
|
|
</header>
|
|||
|
|
|
|||
|
|
<section>
|
|||
|
|
<p>A lesson launched in poor air is a lesson lost before the first sentence. This document establishes the non-negotiable environmental baselines required for cognitive retention. These are not suggestions; they are the atmospheric prerequisites for the transfer of knowledge.</p>
|
|||
|
|
|
|||
|
|
<div class="field-note">
|
|||
|
|
"The air is turning thick over the Midwest." — @armando-torres. When the diagnostic reads high particulate, the shutter closes. The same logic applies to the classroom.
|
|||
|
|
</div>
|
|||
|
|
</section>
|
|||
|
|
|
|||
|
|
<h2>I. Atmospheric Composition</h2>
|
|||
|
|
|
|||
|
|
<table class="spec-table">
|
|||
|
|
<thead>
|
|||
|
|
<tr>
|
|||
|
|
<th>Parameter</th>
|
|||
|
|
<th>Baseline (Safe)</th>
|
|||
|
|
<th>Critical Threshold</th>
|
|||
|
|
<th>Failure Mode</th>
|
|||
|
|
</tr>
|
|||
|
|
</thead>
|
|||
|
|
<tbody>
|
|||
|
|
<tr>
|
|||
|
|
<td><strong>CO₂ Concentration</strong></td>
|
|||
|
|
<td>< 800 ppm</td>
|
|||
|
|
> 1,000 ppm</td>
|
|||
|
|
<td>Cognitive decline begins at 1,000 ppm; attention span contracts by 14%.</td>
|
|||
|
|
</tr>
|
|||
|
|
<tr>
|
|||
|
|
<td><strong>O₂ Saturation</strong></td>
|
|||
|
|
<td>≥ 19.5%</td>
|
|||
|
|
< 19.5%</td>
|
|||
|
|
<td>Hypoxia risk; motor skills degrade.</td>
|
|||
|
|
</tr>
|
|||
|
|
<tr>
|
|||
|
|
<td><strong>Relative Humidity</strong></td>
|
|||
|
|
<td>40–60%</td>
|
|||
|
|
< 30% / > 70%</td>
|
|||
|
|
<td>< 30%: Static discharge, viral viability ↑.<br>> 70%: Mold propagation, respiratory stress.</td>
|
|||
|
|
</tr>
|
|||
|
|
<tr>
|
|||
|
|
<td><strong>Particulate Matter (PM2.5)</strong></td>
|
|||
|
|
<td>< 12 µg/m³</td>
|
|||
|
|
> 35 µg/m³</td>
|
|||
|
|
<td>Lung deposition in alveoli; systemic inflammation.</td>
|
|||
|
|
</tr>
|
|||
|
|
</tbody>
|
|||
|
|
</table>
|
|||
|
|
|
|||
|
|
<span class="citation">SOURCE: indoor-air-quality (Wikidata Q905504) • HEATING, VENTILATION, AND AIR CONDITIONING STANDARDS</span>
|
|||
|
|
|
|||
|
|
<h2>II. Thermal Equilibrium</h2>
|
|||
|
|
|
|||
|
|
<p>The metabolic rate of thirty students generates approximately 12 kW of waste heat. Without active removal, the classroom temperature rises 0.8°C per hour. The optimal operating range is narrow: 20.5°C to 22.0°C (69°F to 72°F).</p>
|
|||
|
|
|
|||
|
|
<p>Below 18°C, fine motor dexterity degrades. Above 24°C, thermoregulatory stress diverts blood flow from cortex to dermis. Focus is sacrificed for cooling.</p>
|
|||
|
|
|
|||
|
|
<h2>III. Photonic Flux</h2>
|
|||
|
|
|
|||
|
|
<p>Natural daylight contains a spectral power distribution that regulates circadian entrainment. Artificial substitutes failing to replicate the 460–490 nm blue-rich band induce phase delay.</p>
|
|||
|
|
|
|||
|
|
<ul style="list-style-type: square; margin-left: 2rem;">
|
|||
|
|
<li><strong>Morning Block:</strong> ≥ 1,000 lux at desk level. Spectrum: Cool White (5000K+).</li>
|
|||
|
|
<li><strong>Afternoon Block:</strong> ≥ 500 lux. Spectrum: Neutral White (4000K).</li>
|
|||
|
|
<li><strong>Reading Zone:</strong> Uniformity ratio ≤ 3:1 (peak:min).</li>
|
|||
|
|
</ul>
|
|||
|
|
|
|||
|
|
<h2>IV. Acoustic Attenuation</h2>
|
|||
|
|
|
|||
|
|
<p>Background noise exceeding 35 dB(A) masks phonemic distinction. The Speech Transmission Index (STI) must remain > 0.6 for intelligibility.</p>
|
|||
|
|
|
|||
|
|
<div class="field-note">
|
|||
|
|
Verification Protocol: Measure ambient decibels at 0800. If reading > 30 dB prior to occupancy, seal HVAC intake. Investigate external intrusion.
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
<nav class="home">
|
|||
|
|
<a href="/">BARBARA ASBELL</a>
|
|||
|
|
<a href="/attendance-variance-predictor.html">ATTENDANCE VARIANCE PREDICTOR</a>
|
|||
|
|
<a href="/classroom-protocols.html">CLASSROOM PROTOCOLS</a>
|
|||
|
|
<a href="/preventative-plan.html">PREVENTATIVE PLAN</a>
|
|||
|
|
</nav>
|
|||
|
|
|
|||
|
|
<!-- Real imagery: HVAC / Scientific measurement -->
|
|||
|
|
<fort-media query="HVAC_system_scientific" limit="1" type="image"><div class="fort-media" data-fort="media" data-query="HVAC_system_scientific"><img src="https://images.pexels.com/photos/5587818/pexels-photo-5587818.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940" alt="From below of green ivy growing on wall of contemporary building with metal pipes on sunny day" loading="lazy" data-license="RF" data-source="pexels"></div></fort-media>
|
|||
|
|
|
|||
|
|
</body>
|
|||
|
|
</html>
|