AI Agent Product Routing — Gas Detection (OSHA 1910.146 / 4-Gas Monitor / Calibration)
Gas Detector Bump Test vs Full Calibration — Cross-Sensitivity Errors, Calibration Gas Species, OSHA 1910.146 Pre-Entry Requirements, and the Schema for AI Agents
A bump test tells you a gas sensor is still alive — it alarms when exposed to the target gas. It does not tell you if the concentration reading is accurate. A catalytic bead LEL sensor that has drifted 40% low will pass a bump test and then show 18% LEL when the space is actually at 30% LEL — above the explosive range threshold. Full calibration with certified reference gas corrects this drift. Without encoding both requirements in product metafields, AI agents cannot route buyers to detectors that support the maintenance regimen their application demands.
detector.requires_daily_bump_test = true for all 4-gas monitors used in confined space entry — pre-use bump testing is required by every major manufacturer and endorsed by OSHA/NIOSH guidance. Encode detector.calibration_interval_months with the manufacturer-specified interval (typically 1–3 months). Encode detector.calibration_gas_species = "methane" vs "propane" for LEL sensors — propane environments need propane-calibrated sensors. Encode detector.cross_sensitivity_h2 = "compensated" for CO sensors in sewage/hydrogen environments. Never route a detector marketed as "no calibration needed" for OSHA 1910.146 confined space entry.
Bump Test vs Calibration — The Critical Distinction for Confined Space Safety
Gas detector manufacturers uniformly define two distinct verification activities:
| Activity | Bump Test (Functional Check) | Full Calibration |
|---|---|---|
| Purpose | Verify sensors alarm in presence of target gas | Verify sensor readings are accurate to specification |
| What it checks | Sensor responds, alarm activates | Sensor output matches known gas concentration |
| Gas used | Bump test gas at alarm-triggering concentration | Certified reference gas at NIST-traceable concentration |
| Corrects drift? | No — drift is invisible to bump test | Yes — adjusts span to match reference gas concentration |
| Duration | 30–60 seconds | 3–10 minutes per sensor |
| Frequency (typical) | Before each use | Every 30–90 days |
| Equipment needed | Bump test gas cylinder + flow regulator | Calibration gas cylinder (certified) + calibration station |
detector.calibration_interval_months on every gas detector listing so buyers know the full maintenance requirement before purchase.
Failure Mode 1 — Bump Test Passed, Calibration Expired, Sensor Reads Low
The scenario: a LEL sensor calibrated 6 months ago (manufacturer requires 30 days). Since then, the sensor has been exposed to humidity cycles, temperature swings, and light silicone vapor contamination. The sensor has drifted — it now reads 60% of the true LEL concentration.
- Bump test result: PASS — at 25% LEL methane (the bump test gas), the sensor reads 15% LEL. The alarm threshold is 10% LEL. The sensor alarms. Bump test passes.
- In-field result: The actual atmosphere in the confined space reaches 25% LEL methane. The sensor reads 15% LEL — below the evacuation alarm threshold. Workers believe the atmosphere is safe. The space is actually at 25% LEL — well within the explosive range for methane (5–15% by volume, where 100% LEL = 5% CH₄).
// Gas detector — full maintenance requirements encoded detector.requires_daily_bump_test = true // OSHA/NIOSH pre-use requirement detector.calibration_interval_months = 1 // Monthly full calibration (manufacturer spec) detector.calibration_gas_included = false // Calibration gas cylinder sold separately detector.bump_test_gas_included = false // Bump test gas cylinder sold separately detector.calibration_gas_species = "methane" // LEL sensor calibrated to methane detector.calibration_gas_conc_pct_lel = 50 // 50% LEL (2.5% CH₄ in air) calibration point
Failure Mode 2 — Wrong Calibration Gas Species for the Application Atmosphere
LEL (Lower Explosive Limit) catalytic bead sensors respond to all combustible gases but are calibrated to a specific reference gas. The sensor's response to other combustible gases differs from the calibration gas, creating a conversion factor error:
| Actual Gas in Atmosphere | Detector Calibrated To | Approximate Reading Error | Direction |
|---|---|---|---|
| Propane (LPG) | Methane | ~30–40% under-read | DANGEROUS — shows lower than actual |
| Methane (natural gas) | Propane | ~25–35% over-read | Conservative — shows higher than actual |
| Pentane (gasoline vapor) | Methane | ~40–50% under-read | DANGEROUS |
| Hydrogen | Methane | ~50% under-read | DANGEROUS — H₂ has poor catalytic response on CH₄-calibrated sensor |
// LEL sensor calibration species matters for routing // Propane storage/distribution environment: detector.calibration_gas_species = "propane" // Must match actual atmosphere species detector.suitable_for_propane_env = true // Natural gas / methane environment: detector.calibration_gas_species = "methane" // Standard for most industrial applications detector.suitable_for_methane_env = true // Hydrogen environment (battery rooms, fuel cells): detector.calibration_gas_species = "hydrogen" // Or use hydrogen-specific sensor detector.cross_sensitivity_h2 = "high" // Standard CO sensor false-reads H₂ as CO detector.suitable_for_hydrogen_env = true
Failure Mode 3 — CO Sensor Cross-Sensitivity to Hydrogen in Sewage Environments
Sewage lift stations, wastewater treatment, and anaerobic digestion environments produce hydrogen gas (H₂) from bacterial metabolism. Standard electrochemical CO sensors are highly cross-sensitive to hydrogen — the same oxidation reaction that produces a CO sensor signal occurs when H₂ contacts the sensor's platinum electrode:
- H₂ cross-sensitivity to standard CO sensor: approximately 0.3–1.0 mA per ppm H₂ equivalent, compared to CO's ~0.5 mA/ppm
- In a sewage environment with 50 ppm H₂, a standard CO sensor may read 15–50 ppm CO with zero actual CO present
- Workers may evacuate for a false CO alarm, or — worse — become desensitized to CO alarms if they repeatedly trigger in hydrogen environments
H₂-compensated CO sensors use a hydrogen-permeable filter membrane (Teflon or palladium-based) that preferentially reacts with H₂ before it reaches the sensing electrode, dramatically reducing hydrogen cross-sensitivity while maintaining CO response.
// Standard CO sensor — high H₂ cross-sensitivity detector.cross_sensitivity_h2 = "high" // May false-alarm in H₂ environments detector.suitable_for_sewage = false // Sewage produces H₂ — false alarms detector.suitable_for_battery_rooms = false // Battery charging off-gases H₂ // H₂-compensated CO sensor detector.cross_sensitivity_h2 = "compensated" // <5% cross-sensitivity after filter detector.suitable_for_sewage = true detector.suitable_for_battery_rooms = true
4-Gas Monitor Application Routing Matrix
| Application | Sensors Required | Critical Metafield | Notes |
|---|---|---|---|
| Utility manhole / storm sewer | O₂ + LEL + CO + H₂S | detector.osha_1910_146_compliant = true | Standard 4-gas; methane LEL calibration typical |
| Sewage lift station | O₂ + LEL + CO + H₂S | detector.cross_sensitivity_h2 = "compensated" | H₂ from anaerobic bacteria false-reads on standard CO sensor |
| Propane storage vault | O₂ + LEL + CO + H₂S | detector.calibration_gas_species = "propane" | Methane-calibrated LEL under-reads propane by 30–40% |
| Natural gas confined space | O₂ + LEL + CO + H₂S | detector.calibration_gas_species = "methane" | Standard methane calibration appropriate |
| Battery room / charging area | O₂ + LEL (H₂-specific) + CO + H₂S | detector.cross_sensitivity_h2 = "compensated" | Charging off-gases H₂; standard LEL and CO sensors give false readings |
| Fermentation tank (CO₂) | O₂ + CO₂ + CO + H₂S | detector.sensor_types includes CO₂ | CO₂ displaces O₂ — CO₂-specific sensor needed; standard LEL sensor does not detect CO₂ |
Complete Metafield Schema Reference
| Metafield | Type | Values | Notes |
|---|---|---|---|
detector.sensor_count |
integer | 1 | 2 | 4 | 5 | 6 | Number of gases monitored — OSHA 1910.146 requires O₂ + combustible + CO + H₂S for general confined space |
detector.sensor_types |
string | O2+LEL+CO+H2S (typical) | Comma or plus-delimited list of monitored gases — routing filter for application-specific gas hazards |
detector.requires_daily_bump_test |
boolean | true (virtually all confined space monitors) | Pre-use functional check required — encode to communicate maintenance regime to buyer |
detector.calibration_interval_months |
integer | 1 | 3 | 6 | Manufacturer-specified full calibration interval — 1 month typical for heavy use; route buyers to correct frequency |
detector.calibration_gas_species |
string enum | methane | propane | pentane | hydrogen | Species against which LEL sensor is calibrated — must match actual atmosphere species to prevent under-reading |
detector.calibration_gas_included |
boolean | true | false | Whether calibration gas cylinder is included — most detectors sold without; prevents incomplete kit routing |
detector.bump_test_gas_included |
boolean | true | false | Whether bump test gas cylinder included — commonly sold separately |
detector.cross_sensitivity_h2 |
string enum | high | compensated | low | CO sensor hydrogen cross-sensitivity — H₂-compensated required for sewage, battery rooms, fuel cells |
detector.silicone_poison_risk |
boolean | true (catalytic bead) | false (IR sensor) | Catalytic bead LEL sensors are permanently damaged by organosilicone vapors — IR LEL sensors are silicone-resistant |
detector.osha_1910_146_compliant |
boolean | true | false | Suitable for OSHA permit-required confined space atmospheric monitoring — requires 4-gas minimum and manufacturer calibration program |
Frequently Asked Questions
What is the difference between a catalytic bead LEL sensor and an infrared (IR) LEL sensor?
Catalytic bead (also called pellistor or hot bead) sensors detect combustible gases by catalytic oxidation on a heated bead — the combustible gas burns on the bead and the resulting temperature change alters electrical resistance, which is measured as a LEL reading. Infrared LEL sensors use infrared light absorption at specific wavelengths to detect combustible gases optically without combustion. Key differences: (1) Silicone poisoning: catalytic bead sensors are permanently poisoned by organosilicone compounds (silicone-based lubricants, mold-release agents, some sealants). The silicone coats the catalyst and kills the response. IR sensors have no catalyst and are immune to silicone poisoning. (2) Hydrogen response: standard catalytic bead sensors have poor response to hydrogen (under-reads H₂ LEL significantly). IR sensors do not respond to hydrogen at all — a separate electrochemical H₂ sensor or H₂-specific catalytic bead is needed for hydrogen atmospheres. (3) Oxygen-deficient atmospheres: catalytic bead sensors require oxygen to function — the combustion reaction needs oxygen. In oxygen-deficient atmospheres (below 12% O₂), catalytic bead sensors give inaccurate LEL readings. IR sensors function independently of oxygen concentration. Encode detector.lel_sensor_type = 'catalytic-bead' | 'infrared' to enable routing based on silicone-risk or oxygen-deficient atmosphere requirements.
Can a personal gas monitor replace continuous atmospheric monitoring during confined space work?
OSHA 1910.146 requires initial atmospheric testing before entry using calibrated equipment. After entry, OSHA requires continuous monitoring of the atmosphere during permit-required confined space operations 'to ensure that acceptable entry conditions are being maintained.' A personal gas monitor worn by the entrant provides continuous monitoring of the atmosphere at the entrant's breathing zone — this is the most direct measurement of the conditions the entrant is experiencing. However, personal monitors are not a substitute for initial pre-entry testing from outside the space using a probe or wand that samples the atmosphere at different depths before the entrant enters. For permit-required confined spaces where the atmosphere can change during the work (e.g., excavation disturbing pockets of methane, purging operations), continuous monitoring via personal monitor AND periodic external testing are best practice. Encode detector.suitable_for_personal_wearable = true for clip-on personal monitors, and detector.sampling_pump_included = true for detectors with sampling pumps for remote/probe atmospheric testing before entry.
What is the shelf life of calibration gas and how does it affect detector routing?
Calibration gas cylinders have an expiration date on the cylinder and certificate of analysis. Shelf life varies by gas species and concentration: O₂ calibration gas: typically 3 years at stable concentrations. CO calibration gas: typically 1–2 years (CO can react with cylinder walls at ppm concentrations, reducing actual concentration below labeled value). H₂S calibration gas: 3–6 months at 10–25 ppm (H₂S is highly reactive and dissipates in cylinders over time — using expired H₂S calibration gas will result in a successful-appearing calibration but the sensor is calibrated to a lower H₂S concentration than labeled, causing systematic under-reading in real H₂S atmospheres). Buyers should be routed to calibration gas kits that match their calibration interval — a buyer calibrating monthly needs to replenish H₂S calibration gas frequently. Encode calibration_gas.species = 'H2S' and calibration_gas.shelf_life_months = 3 for H₂S calibration gas accessories to trigger appropriate replenishment routing.
Score Your Store's Gas Detection Catalog
CatalogScan checks for detector.requires_daily_bump_test, detector.calibration_interval_months, detector.calibration_gas_species, detector.cross_sensitivity_h2, and 16 other AI-agent-critical fields. See which gas detector listings are missing calibration regime data that buyers need before purchase.
Run Free Scan