Home › Blog › Gas Detector Bump Test vs Calibration Schema
Shopify gas detector bump test vs calibration schema for AI agents: a sensor that passes a bump test can still read 40% low — calibration gas species must match the atmosphere, CO sensors false-alarm on hydrogen in sewage, silicone permanently poisons catalytic bead LEL sensors
A bump test tells you a gas sensor is still alive — it confirms the alarm triggers when the sensor is exposed to the target gas. It tells you nothing about whether the concentration reading is accurate. A catalytic bead LEL sensor that has drifted 40% low will pass a bump test every time and then display 18% LEL in a confined space that is actually at 30% LEL. Without encoding calibration regime, calibration gas species, and sensor cross-sensitivities as Shopify metafields, AI agents route buyers to detectors that are technically functional but operationally wrong for their application.
In this post
- Bump test vs calibration — what each actually verifies
- Failure mode 1 — treating bump test pass as calibration confirmation
- Failure mode 2 — methane-calibrated LEL sensor in a propane atmosphere
- Failure mode 3 — standard CO sensor in sewage, battery, or hydrogen environments
- Failure mode 4 — silicone vapor exposure poisons catalytic bead LEL sensors
- Complete metafield schema: detector.* (10 fields)
- Routing matrix — confined space application to detector requirements
Bump test vs calibration — what each actually verifies
Gas detector manufacturers define two distinct verification activities that are both required but answer completely different questions:
| Activity | Bump Test (Functional Check) | Full Calibration |
|---|---|---|
| Question answered | Does the sensor detect the gas and alarm? | Does the sensor read the right concentration? |
| Pass/fail result | Binary — sensor alarms or it doesn't | Quantitative — reading matches certified gas concentration ±5–10% |
| Detects drift? | No — drift is invisible to bump testing | Yes — adjusts span to match reference gas concentration |
| Gas used | Bump test gas at alarm-triggering concentration | Certified reference gas at NIST-traceable known concentration |
| Duration | 30–90 seconds | 3–10 minutes per sensor channel |
| Frequency (typical) | Before each use (per OSHA/NIOSH guidance) | Every 30–90 days (per manufacturer specification) |
| Equipment needed | Bump test gas cylinder + flow cap or regulator | Certified calibration gas (NIST-traceable) + calibration station |
Both activities are necessary and neither substitutes for the other. OSHA 29 CFR 1910.146(c)(5)(ii) requires atmospheric testing equipment be "properly calibrated" per manufacturer instructions — not merely bump-tested. For AI agents routing gas detector purchases, both detector.requires_daily_bump_test and detector.calibration_interval_months must be encoded to communicate the complete maintenance burden to buyers.
detector.calibration_interval_months in the catalog cannot tell a buyer whether a product requires monthly, quarterly, or on-demand calibration. The buyer arrives on-site without a calibration kit and is non-compliant on day one.
Failure mode 1 — treating bump test pass as calibration confirmation
This is the most dangerous routing error because it creates a false sense of safety that is invisible without careful analysis.
How a drifted sensor passes a bump test
Imagine a catalytic bead LEL sensor that has been in service for 8 months, exposed to humidity cycles and temperature swings. The sensor has drifted — it now reads 60% of the true concentration. Calibration is overdue (manufacturer requires monthly).
- Bump test procedure: The technician flows bump test gas (25% LEL methane — 1.25% methane in air) over the sensor for 30 seconds.
- Sensor output: The drifted sensor reads 25% × 60% = 15% LEL. The alarm set point is 10% LEL.
- Result: PASS. The alarm triggers at 15% LEL (above the 10% alarm threshold). The bump test passes. The technician enters the confined space confident the detector is working.
// 4-gas monitor — correct maintenance regime encoding
detector.requires_daily_bump_test = true // Pre-use functional check — manufacturer required
detector.calibration_interval_months = 1 // Monthly full calibration (MSA, Honeywell BW)
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 channel calibrated to methane reference gas
detector.osha_1910_146_compliant = true // Suitable for permit-required confined space
Failure mode 2 — methane-calibrated LEL sensor in a propane atmosphere
Catalytic bead LEL sensors respond to all combustible gases, but the sensitivity depends on how efficiently each gas oxidizes on the heated pellistor bead. Sensors are calibrated to a specific reference gas — for most general-purpose 4-gas monitors, that reference gas is methane. The problem arises when the actual atmosphere contains a different combustible gas.
Why calibration gas species matters
The catalytic response efficiency differs by gas species because of molecular weight, heat of combustion per unit mass, and diffusion rate to the bead surface. When a methane-calibrated sensor encounters propane:
- Propane LEL = 2.1% by volume (methane LEL = 5.0%). Propane's explosive range starts at a much lower concentration.
- At 50% LEL propane (1.05% propane in air), the catalytic bead produces approximately 60–70% of the heat output it would produce from 50% LEL methane.
- The display reads approximately 30–35% LEL — well below the 50% LEL evacuation threshold — while the atmosphere is actually at 50% LEL propane, already inside the explosive range.
| Actual Gas in Atmosphere | Sensor Calibrated To | Approximate Reading Error | Risk Direction |
|---|---|---|---|
| Propane (LPG) | Methane | ~30–40% under-read | Dangerous — shows lower than actual |
| Pentane / gasoline vapor | Methane | ~40–50% under-read | Dangerous |
| Hydrogen (H₂) | Methane | ~50% under-read | Dangerous — H₂ has poor catalytic response on standard bead |
| Methane / natural gas | Propane | ~25–35% over-read | Conservative — shows higher than actual |
// Propane storage or LPG distribution confined space
detector.calibration_gas_species = "propane" // Must match actual atmosphere
detector.suitable_for_propane_env = true
// WARNING — route away from this detector for propane:
// detector.calibration_gas_species = "methane" — under-reads propane 30-40%
// Natural gas / methane environment (standard application)
detector.calibration_gas_species = "methane"
detector.suitable_for_methane_env = true
// Gasoline vapor / solvent confined space
detector.calibration_gas_species = "pentane" // Or isobutylene — check manufacturer
detector.suitable_for_solvent_env = true
An AI agent that cannot read detector.calibration_gas_species cannot distinguish a methane-calibrated from a propane-calibrated LEL sensor. Both detectors may be labeled "4-gas monitor" with identical feature descriptions. Only the metafield reveals the routing blocker.
Failure mode 3 — standard CO sensor in sewage, battery, or hydrogen environments
Electrochemical carbon monoxide sensors work by oxidizing CO molecules at a platinum electrode. The same electrochemical reaction occurs with hydrogen gas — both CO and H₂ are oxidized at the same electrode, generating a current the instrument interprets as CO.
Where hydrogen is present in confined spaces
Hydrogen gas co-exists with other atmospheric hazards in several common confined space environments:
- Sewage lift stations and wet wells: Anaerobic bacteria in sewage produce H₂ as a byproduct of organic decomposition — the same environment that produces H₂S. H₂ concentrations in sewage atmospheres can reach 50–500 ppm.
- Battery charging rooms: Lead-acid batteries off-gas hydrogen during charging. Hydrogen builds up especially during equalization charging cycles. Battery room confined spaces (cable vaults, battery backup rooms) may have H₂ at 100–1,000 ppm during active charging.
- Anaerobic digesters (biogas production): Digester gases contain H₂ as a minor component alongside methane and CO₂.
- Fuel cell maintenance spaces: Hydrogen fuel cells use hydrogen at high pressure; confined spaces near fuel cell systems may have trace to elevated H₂.
Two opposite failure modes from H₂ cross-sensitivity
Workers evacuate for phantom CO readings
A sewage lift station with 200 ppm H₂ causes a standard CO sensor to display 60–200 ppm CO with zero actual CO present. Workers evacuate. Rescue teams respond. Investigation finds no CO source. After repeated false alarms, the supervisor decides the detector is malfunctioning and stops evacuating for CO alarms.
Workers ignore alarms when real CO appears
After weeks of false CO alarms in a hydrogen-generating environment, workers have learned to treat CO alarms as background noise. When actual CO from a faulty combustion process appears, the alarm triggers — and workers don't evacuate. This is the more dangerous outcome.
H₂-compensated CO sensors use a membrane filter (palladium alloy or porous Teflon) that preferentially reacts with hydrogen before it reaches the sensing electrode. The membrane dramatically reduces H₂ cross-sensitivity (typically to less than 5% — a 200 ppm H₂ environment reads as less than 10 ppm phantom CO) while maintaining full response to actual CO.
// Standard CO sensor — NOT for hydrogen-generating environments
detector.cross_sensitivity_h2 = "high" // 200 ppm H₂ → ~60-200 ppm phantom CO
detector.suitable_for_sewage = false
detector.suitable_for_battery_rooms = false
// 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
Failure mode 4 — silicone vapor exposure permanently poisons catalytic bead LEL sensors
The catalytic bead (pellistor) at the heart of most LEL sensors detects combustible gases by burning them on a platinum-group metal catalyst. Organosilicone compounds — silicone-based lubricants, mold-release sprays, gasket materials, some cleaning agents, certain cutting oils — vaporize in warm environments and deposit on the catalyst surface as a glassy silicon dioxide (SiO₂) coating.
This poisoning is:
- Cumulative: Each silicone exposure adds a thicker SiO₂ layer. Response degrades gradually, not suddenly.
- Permanent: SiO₂ cannot be removed by cleaning, heating, or purging. The sensor must be replaced.
- Invisible to bump testing: The poisoned sensor still heats up and still responds to combustible gas, just with reduced sensitivity. In a bump test with concentrated bump gas well above the alarm threshold, the reduced sensitivity is still enough to trigger the alarm. In the field, at a hazardous concentration that is only marginally above the alarm threshold, the sensor may not trigger.
Environments with silicone exposure risk
Many industrial environments have silicone exposure that isn't obvious:
- Rubber and polymer manufacturing (silicone mold-release agents)
- Automotive service (silicone-based brake fluid, gasket sealant)
- Electronics manufacturing (silicone conformal coatings, thermal pads)
- Any location where silicone lubricant sprays are used for maintenance on nearby equipment
- HVAC ducts with silicone sealant — detector mounted downstream
Infrared (IR) LEL sensors solve this. IR LEL sensors measure combustible gas concentration by infrared light absorption at a combustible-gas-specific wavelength. There is no catalyst, no heated bead, no platinum surface to poison. IR LEL sensors are completely silicone-immune.
| Property | Catalytic Bead (Pellistor) LEL | Infrared (IR) LEL |
|---|---|---|
| Silicone poison risk | Yes — permanent catalyst poisoning | None — no catalyst to poison |
| Oxygen dependency | Requires O₂ to function (catalytic combustion) | No oxygen required |
| Hydrogen response | Poor — H₂ has low catalytic oxidation efficiency | None — H₂ is IR-inactive (transparent to IR) |
| Response time | Fast (~3–5 seconds) | Fast (~3–8 seconds) |
| Cost | Lower | Higher |
| Best for | General purpose; clean industrial environments | Silicone-risk environments; O₂-deficient atmospheres |
// Catalytic bead LEL sensor — standard general-purpose
detector.lel_sensor_type = "catalytic-bead"
detector.silicone_poison_risk = true // Route away from silicone environments
detector.lel_o2_dependent = true // Fails in O₂-deficient atmospheres
// Infrared LEL sensor — silicone-immune
detector.lel_sensor_type = "infrared"
detector.silicone_poison_risk = false // Safe in silicone vapor environments
detector.lel_o2_dependent = false // Functions in O₂-deficient atmospheres
// NOTE: IR LEL does NOT detect hydrogen (H₂ is IR-transparent)
// Add separate electrochemical H₂ sensor for hydrogen environments
Complete metafield schema: detector.* (10 fields)
| Metafield | Type | Values | Routing purpose |
|---|---|---|---|
detector.sensor_types |
string | O2+LEL+CO+H2S (typical) | Filter by monitored gas suite — OSHA 1910.146 requires O₂ + combustible + CO + H₂S for general confined space |
detector.requires_daily_bump_test |
boolean | true (virtually all confined space monitors) | Communicates pre-use maintenance requirement; route buyers to bump test kits as accessories |
detector.calibration_interval_months |
integer | 1 | 3 | 6 | Full calibration frequency — 1 month typical for heavy-use; route buyers to calibration service contracts or gas cylinders |
detector.calibration_gas_species |
string enum | methane | propane | pentane | hydrogen | isobutylene | Must match actual atmosphere combustible gas — methane-calibrated detector under-reads propane 30–40% |
detector.calibration_gas_included |
boolean | true | false | Whether certified calibration cylinder is bundled — most detectors do not include calibration gas; 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 — 'compensated' required for sewage, battery rooms, fuel cells; 'high' blocks routing to H₂ environments |
detector.lel_sensor_type |
string enum | catalytic-bead | infrared | Catalytic bead = silicone poison risk; infrared = silicone-immune but does not detect hydrogen |
detector.silicone_poison_risk |
boolean | true (catalytic bead) | false (IR) | Route catalytic bead detectors away from rubber molding, silicone lubricant, HVAC sealant environments |
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 |
Routing matrix — confined space application to detector requirements
detector.osha_1910_146_compliant = truedetector.cross_sensitivity_h2 = "compensated"detector.calibration_gas_species = "propane"detector.cross_sensitivity_h2 = "compensated" + detector.lel_sensor_type = "infrared" if H₂ monitoring requireddetector.lel_sensor_type = "infrared"detector.sensor_types must include CO₂ channeldetector.calibration_gas_species = "methane" — route to standard 4-gasScore your store's gas detection catalog
CatalogScan checks for detector.calibration_gas_species, detector.cross_sensitivity_h2, detector.lel_sensor_type, and 7 other AI-agent-critical fields across your gas monitor listings. See which detectors are missing the calibration regime data buyers need before they purchase a product that doesn't match their confined space application.