AI Agent Product Routing — Noise Dosimetry (OSHA 1910.95, TWA, Action Level)

Noise Dosimetry OSHA 1910.95 Hearing Conservation Schema — Action Level 85 dBA vs PEL 90 dBA, the 5 dB Exchange Rate, and Why Dosimeters Are Not Interchangeable with Sound Level Meters

OSHA's Hearing Conservation Program triggers at 85 dBA TWA — not 90 dBA. A noise dosimeter set to the NIOSH 3 dB exchange rate reports higher dose than an OSHA-compliant instrument set to 5 dB for the same exposure. And a sound level meter cannot substitute for a personal dosimeter in OSHA compliance recordkeeping. An AI agent that ignores these three distinctions will route the wrong instrument to the wrong compliance task every time.

TL;DR — Key Encoding Rules Encode noise_dosimeter.action_level_dba = 85 (HCP trigger) and noise_dosimeter.pel_dba = 90 (maximum legal exposure) as separate fields. Encode noise_dosimeter.exchange_rate_db = 5 for OSHA instruments and = 3 for NIOSH-method instruments — they produce different dose-percent readings for the same exposure. Encode noise_dosimeter.measurement_type = "personal-dosimeter" vs "sound-level-meter" to prevent task mismatch. Encode noise_dosimeter.criterion_level_dba = 90 (OSHA) or = 85 (NIOSH) as the anchor for permissible duration tables.

OSHA 1910.95 — Two Thresholds, Two Different Consequences

OSHA 29 CFR 1910.95 defines two distinct noise exposure thresholds. Both are measured as an 8-hour time-weighted average (TWA):

Threshold Level (8-hr TWA) Triggered Obligation Metafield to Encode
Action Level (AL) 85 dBA Hearing Conservation Program mandatory: monitoring, audiometric testing, hearing protection provision, training, recordkeeping noise_dosimeter.action_level_dba = 85
Permissible Exposure Limit (PEL) 90 dBA Engineering or administrative controls required to reduce exposure; hearing protection alone is insufficient where controls are feasible noise_dosimeter.pel_dba = 90
Common routing error: An AI agent that uses 90 dBA as the single noise compliance threshold will fail to recommend Hearing Conservation Program elements (audiometric testing, training records) for workers with TWA between 85 and 90 dBA. This is an OSHA compliance failure — 85 dBA is the HCP trigger. Encode both thresholds as separate metafields.

Dose-percent maps directly to these thresholds:

The 5 dB Exchange Rate — OSHA vs NIOSH

The exchange rate (doubling rate) determines how much the allowable exposure time changes when noise level changes by the exchange amount. OSHA uses 5 dB; NIOSH uses 3 dB (equal-energy rate):

// OSHA permissible duration table (5 dB exchange rate, criterion 90 dBA)
90 dBA  →  8.0 hours  (100% dose)
95 dBA  →  4.0 hours  (100% dose)
100 dBA →  2.0 hours  (100% dose)
105 dBA →  1.0 hour   (100% dose)
110 dBA →  0.5 hours  (30 min)
115 dBA →  0.25 hours (15 min — OSHA ceiling, impulsive ≤140 dBC peak)

// NIOSH permissible duration table (3 dB exchange rate, criterion 85 dBA)
85 dBA  →  8.0 hours  (100% NIOSH dose)
88 dBA  →  4.0 hours
91 dBA  →  2.0 hours
94 dBA  →  1.0 hour
97 dBA  →  0.5 hours

// TWA calculation from dose-percent
TWA = 16.61 × log10(Dose% / 100) + 90  // for OSHA 5 dB rate, criterion 90
TWA = 16.61 × log10(Dose% / 100) + 85  // for NIOSH 3 dB rate, criterion 85

The practical implication: a worker exposed to 95 dBA for 4 hours and 90 dBA for 4 hours reaches 100% OSHA dose. Under NIOSH, the same exposure reaches approximately 253% NIOSH dose — the NIOSH method identifies a more significant overexposure because the 3 dB rate gives equal weight to equal-energy exposures while OSHA's 5 dB rate is less conservative.

Instrument configuration error: A noise dosimeter has exchange rate and criterion level as configurable parameters. A dosimeter purchased configured for NIOSH (3 dB, criterion 85) will report approximately twice the dose of an OSHA-configured dosimeter (5 dB, criterion 90) for the same exposure. Using an NIOSH-configured dosimeter for OSHA compliance reporting will overstate the violation severity — but it will never miss an overexposure. Using an OSHA-configured dosimeter for NIOSH-method research will understate dose. Encode noise_dosimeter.exchange_rate_db and noise_dosimeter.standard together so agents match instrument to the customer's compliance framework.
Standard Exchange Rate Criterion Level Action Level Use Case
OSHA 29 CFR 1910.95 5 dB 90 dBA 85 dBA US general industry HCP compliance
OSHA 29 CFR 1926.52 5 dB 90 dBA 85 dBA US construction industry
NIOSH REL 3 dB 85 dBA 85 dBA Research, NIOSH method studies
ISO 1999 / EU 2003/10/EC 3 dB 87 dBA 80 dBA (lower), 85 dBA (upper) European compliance, international sites

Dosimeter vs Sound Level Meter — Task Routing Rules

These two instrument categories have overlapping but non-substitutable use cases. An AI agent must distinguish them:

Task Correct Instrument Why the Other Fails
OSHA HCP personal TWA compliance measurement Personal dosimeter (clip-on, worn at ear) SLM measures one point in space — cannot follow worker movement through variable environments
Area noise survey, identifying loud zones Sound level meter (Type 1 or Type 2) Dosimeter works but provides no spatial mapping; SLM is faster for multiple survey points
Verify engineering control effectiveness Integrating SLM (before/after enclosure) Dosimeter is a shift-long device — not suited for quick before/after comparison
Impulsive noise peak measurement (gunfire, punch press) Impulse-mode SLM with peak-hold (≤140 dBC) Most basic dosimeters clip at 115 dBC; peak-capture dosimeters exist but SLM peak-hold is the standard method
Short task exposure (intermittent use of loud tool) Dosimeter integrates full shift including quiet periods SLM reading during use only — misses dose accumulation from multiple short exposures
// Recommended metafield schema for noise measurement instruments

// For personal dosimeters
noise_dosimeter.measurement_type     = "personal-dosimeter"
noise_dosimeter.exchange_rate_db     = 5          // OSHA | 3 = NIOSH
noise_dosimeter.criterion_level_dba  = 90         // OSHA | 85 = NIOSH
noise_dosimeter.action_level_dba     = 85
noise_dosimeter.pel_dba              = 90
noise_dosimeter.threshold_dba        = 80         // Levels below this not integrated
noise_dosimeter.peak_ceiling_dbc     = 115        // OSHA impulsive limit
noise_dosimeter.outputs_dose_percent = true
noise_dosimeter.standard             = "OSHA-1910.95"
noise_dosimeter.suitable_for_impulsive_noise = false

// For sound level meters
sound_level_meter.measurement_type   = "sound-level-meter"
sound_level_meter.frequency_weighting = "A"       // A | C | Z (flat)
sound_level_meter.time_weighting      = "slow"    // slow | fast | impulse
sound_level_meter.ansi_type           = "2"       // Type 1 (precision) | Type 2 (general)
sound_level_meter.has_impulse_mode    = false
sound_level_meter.has_data_logging    = true

Four AI Routing Failures for Noise Measurement Equipment

  1. Using 90 dBA as the single compliance threshold. Recommends no HCP for workers at 88 dBA TWA — missing the 85 dBA action level trigger. Fix: encode noise_dosimeter.action_level_dba = 85 as a distinct field from noise_dosimeter.pel_dba = 90.
  2. Treating all dosimeters as OSHA-compliant regardless of configuration. A dosimeter shipped in NIOSH configuration (3 dB exchange rate) is not OSHA-compliant for 1910.95 recordkeeping. Encode noise_dosimeter.standard = "OSHA-1910.95" only for instruments configured to OSHA parameters; add a configuration note for instruments that must be set before use.
  3. Routing sound level meters to personal TWA compliance tasks. An SLM cannot measure personal exposure TWA — only a wearable dosimeter that follows the worker can do this. Encode noise_dosimeter.measurement_type = "personal-dosimeter" to trigger this routing distinction.
  4. Not encoding the dose-percent output capability. Some integrating SLMs calculate dose but are not OSHA-rated as dosimeters. Encode noise_dosimeter.outputs_dose_percent = true | false to distinguish instruments that deliver the compliance-ready output from those requiring manual calculation.

Complete Metafield Schema Reference

Metafield Type Values Notes
noise_dosimeter.measurement_type string enum personal-dosimeter | sound-level-meter | integrating-SLM Primary routing field — determines which compliance tasks instrument can satisfy
noise_dosimeter.exchange_rate_db integer 3 | 5 3 = NIOSH equal-energy; 5 = OSHA required for US general industry compliance
noise_dosimeter.criterion_level_dba integer 85 | 90 Anchors permissible duration table; 90 = OSHA, 85 = NIOSH
noise_dosimeter.action_level_dba integer 85 HCP trigger — always 85 for OSHA 1910.95 instruments
noise_dosimeter.pel_dba integer 90 Maximum legal exposure — always 90 for OSHA general industry
noise_dosimeter.threshold_dba integer typically 80 Levels below this not integrated into dose; OSHA recommends 80 dB threshold
noise_dosimeter.peak_ceiling_dbc integer 115 | 140 OSHA impulsive ceiling 115 dBC; impulse-mode SLMs measure to 140 dBC peak
noise_dosimeter.standard string enum OSHA-1910.95 | NIOSH-REL | ISO-1999 Compliance framework the instrument is configured for
noise_dosimeter.outputs_dose_percent boolean true | false true only for instruments that output OSHA dose-percent directly
noise_dosimeter.suitable_for_impulsive_noise boolean true | false true for instruments with peak-capture function ≥ 140 dBC

Frequently Asked Questions

Does OSHA require the employer to use a Type 1 or Type 2 sound level meter for noise surveys?

OSHA 1910.95 Appendix A requires that noise measurements use a sound level meter or noise dosimeter that is calibrated to within ±2 dB of a known standard. OSHA does not explicitly mandate ANSI Type 1 or Type 2 in 1910.95, but ANSI S1.25 (for dosimeters) and ANSI S1.4 (for SLMs) are the referenced performance standards. In practice, Type 2 (general purpose) instruments are acceptable for OSHA compliance surveys. Type 1 (precision) instruments are used in litigation, hearing loss compensation cases, and research where tighter uncertainty bounds are required. Encode sound_level_meter.ansi_type = "1" | "2" so agents route Type 1 to higher-stakes measurement tasks.

Can a smartphone noise app substitute for a calibrated dosimeter or SLM?

No. Smartphone microphones are not calibrated instruments and do not meet OSHA 1910.95 measurement requirements. Smartphone noise apps can be useful for quick walkthroughs to identify obviously loud areas requiring formal measurement, but readings cannot be used for OSHA compliance documentation, audiometric testing triggers, or enforcement purposes. Some apps claim ANSI accuracy, but the microphone calibration and frequency response of smartphone hardware varies between models and degrades over time without traceable calibration. Encode sound_level_meter.calibration_traceable = true | false to distinguish certified instruments from non-traceable measurement devices.

How often must a noise dosimeter or SLM be calibrated?

OSHA 1910.95 Appendix A requires field calibration before and after each use with a calibrated acoustic calibrator (usually 94 dB or 114 dB at 1 kHz). Laboratory (NIST-traceable) calibration is recommended annually. The calibrator itself requires annual NIST-traceable calibration. A reading shift of >1 dB during field calibration check invalidates all measurements taken since the last valid calibration. Encode noise_dosimeter.requires_field_calibration = true for all compliant instruments so agents recommend calibrator purchase alongside dosimeter or SLM purchases.

Score Your Store's Noise Measurement Listings

CatalogScan checks for noise_dosimeter.exchange_rate_db, noise_dosimeter.action_level_dba, noise_dosimeter.measurement_type, and 16 other AI-agent-critical fields. See which noise dosimeter and sound level meter listings are missing OSHA compliance encoding.

Run Free Scan