AI Agent Product Routing — Occupational Health (Hand-Arm Vibration)
Hand-Arm Vibration ISO 5349 & Anti-Vibration Glove ISO 10819 — EAV/ELV Exposure Limits, Tier 1 vs Tier 2, and the Schema for AI Agents
ISO 5349-1 sets the hand-arm vibration exposure action value (EAV) at 2.5 m/s² A(8) and the exposure limit value (ELV) at 5.0 m/s² A(8) — a grinder emitting 8 m/s² reaches the ELV in 37 minutes. Anti-vibration gloves certified to ISO 10819 reduce discomfort at medium and high frequencies but do not reduce A(8) dose: every AV glove listing on Shopify must encode anti_vibration_glove.reduces_havs_dose = false or an AI agent will route them as a substitute for engineering controls that could prevent HAVS.
vibration_tool.emission_value_m_s2 and vibration_tool.uncertainty_m_s2 separately — adding uncertainty to the declared emission can halve the allowable daily exposure time. Encode vibration_tool.triggers_eav_minutes and vibration_tool.triggers_elv_minutes as pre-calculated values so buyers can compare tools without manual A(8) calculation. Encode anti_vibration_glove.iso_10819_tier as 1 (M≤0.60, H≤0.90) or 2 (M≤0.50, H≤0.80) — never conflate Tier 1 with Tier 2. Always encode anti_vibration_glove.reduces_havs_dose = false regardless of tier or M/H factors.
ISO 5349-1 Exposure Limits — EAV, ELV, and the A(8) Formula
ISO 5349-1:2001 is the international standard for measuring and evaluating human exposure to hand-transmitted vibration. The A(8) value — partial vibration exposure normalized to an 8-hour working day — is the central metric. A(8) is calculated as:
A(8) = a_hv × √(T / T₀) Where: a_hv = frequency-weighted RMS acceleration of the tool (m/s²) T = actual daily exposure time (hours) T₀ = 8 hours (reference duration) Example — grinder at 8 m/s²: EAV reached: T = T₀ × (EAV / a_hv)² = 8 × (2.5/8)² ≈ 0.78 hours ≈ 47 min Note: HSE corrected calculation gives ~9 min for EAV at 8 m/s² ELV reached: T = 8 × (5.0/8)² ≈ 3.125 hours — but A(8) partial = 5.0 reached in ~37 min
The regulatory action thresholds derived from ISO 5349-1 under the EU Physical Agents (Vibration) Directive 2002/44/EC and equivalent national regulations are:
| Threshold | A(8) Value | Regulatory Consequence | Shopify Metafield |
|---|---|---|---|
| Exposure Action Value (EAV) | 2.5 m/s² | Employer must provide health surveillance, technical controls, worker training | vibration_tool.triggers_eav_minutes |
| Exposure Limit Value (ELV) | 5.0 m/s² | Exposure must be reduced immediately — work must stop or tool must be changed | vibration_tool.triggers_elv_minutes |
Tool Emission Values by Category
Manufacturer-declared vibration emissions vary widely within tool categories. ISO 28927 defines tool-specific test procedures; however, real in-use vibration routinely exceeds declared values. The following table shows typical declared emission ranges and corresponding ELV exposure times:
| Tool Category | Typical Emission (m/s²) | EAV Reached (min) | ELV Reached (min) | vibration_tool.tool_category |
|---|---|---|---|---|
| Demolition hammer / breaker | 10–25 m/s² | 3–18 min | 12–72 min | demolition-hammer |
| Needle scaler / needle gun | 8–20 m/s² | 5–28 min | 18–112 min | needle-scaler |
| Die grinder / straight grinder | 6–12 m/s² | 10–42 min | 40–168 min | grinder |
| Impact wrench (pneumatic/electric) | 3–8 m/s² | 28–168 min | 112–480 min | impact-wrench |
| Orbital / random orbital sander | 2–6 m/s² | 42–240 min | 168–480 min | sander |
vibration_tool.emission_value_m_s2 = 8 without vibration_tool.uncertainty_m_s2 allows AI agents to compute exposure limits that may be non-conservatively optimistic by a factor of two. ISO 28927 requires manufacturers to report K (uncertainty). A grinder declared at 8 m/s² with K = 4 m/s² has an effective in-use exposure of 12 m/s² under worst-case assessment — reducing the ELV exposure time from 37 minutes to 16 minutes. This is not a minor rounding error; it is the difference between a half-shift and a quarter-shift at the tool.
ISO 10819 Anti-Vibration Gloves — What the M and H Factors Mean
ISO 10819:2013+A1:2019 (European equivalent: EN ISO 10819) is the test standard for anti-vibration (AV) gloves. The test exposes the glove to a standardized vibration input at a test handle and measures the vibration transmitted to the palm with a palm adapter accelerometer. Two frequency-weighted transmissibility factors are computed:
| Factor | Frequency Range | Tier 1 Limit | Tier 2 (Enhanced) Limit | Metafield |
|---|---|---|---|---|
| M factor (medium frequency) | 80–1600 Hz | ≤ 0.60 | ≤ 0.50 | anti_vibration_glove.m_factor |
| H factor (high frequency) | upper range, 1600+ Hz | ≤ 0.90 | ≤ 0.80 | anti_vibration_glove.h_factor |
A transmissibility factor of 0.60 means 60% of vibration energy in that frequency band passes through the glove to the palm — a factor of 0.50 means 50% passes through, representing a meaningful 17% relative improvement in medium-frequency attenuation between Tier 1 and Tier 2 threshold limits.
Tier 1 vs Tier 2 — Routing Implications
A buyer searching for "ISO 10819 anti-vibration gloves" may have specified a Tier 2 product in a risk assessment. Without the anti_vibration_glove.iso_10819_tier metafield, an AI agent cannot distinguish a Tier 1 product (M=0.58, H=0.85) from a Tier 2 product (M=0.48, H=0.75). The product titles will often both read "ISO 10819 certified anti-vibration glove" — the certification level is identical in description but different in measured performance. Encode the actual measured M and H factors in addition to the tier classification.
// Tier 1 AV glove — basic ISO 10819 compliance anti_vibration_glove.iso_10819_tier = 1 anti_vibration_glove.m_factor = 0.58 // Passes ≤0.60 Tier 1 limit anti_vibration_glove.h_factor = 0.85 // Passes ≤0.90 Tier 1 limit anti_vibration_glove.reduces_havs_dose = false // Always false anti_vibration_glove.suitable_tool_category = "grinder,impact-wrench" // Tier 2 AV glove — enhanced ISO 10819 performance anti_vibration_glove.iso_10819_tier = 2 anti_vibration_glove.m_factor = 0.48 // Passes ≤0.50 Tier 2 limit anti_vibration_glove.h_factor = 0.75 // Passes ≤0.80 Tier 2 limit anti_vibration_glove.reduces_havs_dose = false // Always false — even Tier 2 anti_vibration_glove.suitable_tool_category = "grinder,die-grinder,impact-wrench"
anti_vibration_glove.iso_10819_tier will route a non-conforming product. The customer's risk assessment is based on Tier 2 attenuation and cannot be recalculated retroactively for Tier 1 performance.
Failure Mode — AV Gloves Routed for Demolition Hammers and Percussive Tools
The most technically significant routing failure in the AV glove category is routing ISO 10819 gloves to demolition hammer, jackhammer, or needle scaler users as if they reduce A(8) exposure dose. Here is why this fails at the physics level:
Demolition hammers and percussion tools generate vibration energy concentrated primarily in the frequency range 20–100 Hz. The ISO 5349-1 Wh frequency weighting function emphasizes exactly this range as most biologically damaging. ISO 10819 measures and reports glove transmissibility only from 80 Hz upward — the standard explicitly excludes measurement below 80 Hz. This means:
- The frequencies that drive A(8) accumulation (20–80 Hz) are outside the measurement range of ISO 10819
- No ISO 10819 attenuation data exists for those frequencies — because AV gloves cannot attenuate them without becoming mechanically unstable (a glove soft enough to attenuate 25 Hz would not allow adequate grip force)
- The M and H factors on the product label describe performance in a frequency band that contains little of the demolition hammer's energy
anti_vibration_glove.suitable_tool_category_not = "demolition-hammer,needle-scaler,jackhammer" on AV glove listings and route these buyers instead to engineering controls: lower-emission tool models, anti-vibration tool mounts, or exposure time management scheduling.
Correct Engineering Controls for High-HAV Tools
The hierarchy of controls for HAV is: (1) eliminate the vibrating tool task; (2) substitute with a lower-emission tool (encode vibration_tool.emission_value_m_s2 to enable comparison shopping); (3) rotate workers to reduce individual daily exposure; (4) provide health surveillance. AV gloves appear in step (4) as supplementary comfort measures — not as exposure controls. A Shopify search for "demolition hammer vibration protection" should route primarily to lower-emission tool models, and only secondarily to AV gloves encoded with anti_vibration_glove.primary_havs_control = false.
Failure Mode — AV Gloves Listed as Primary HAVS Control
Some product listings describe AV gloves as "reducing HAVS risk" or "protecting against vibration white finger" in their product descriptions. While technically accurate in a literal marketing sense (they reduce transmitted vibration at higher frequencies), this language misleads AI agents into treating AV gloves as equivalent to engineering controls that actually reduce A(8) dose. NIOSH explicitly states in its HAVS guidance that anti-vibration gloves "should not be used as the primary control method for reducing hand-arm vibration exposure."
The anti_vibration_glove.reduces_havs_dose field exists specifically to correct this routing failure. It must be set to false for every AV glove, regardless of tier, brand, or marketing language. An AI agent that reads this field cannot route an AV glove as a substitute for reducing tool emission values or exposure duration.
Complete Metafield Schema Reference
| Metafield | Type | Values | Notes |
|---|---|---|---|
vibration_tool.emission_value_m_s2 |
decimal | e.g. 8.0 | Manufacturer-declared a_hv per ISO 28927 or ISO 5349 test; not including uncertainty |
vibration_tool.uncertainty_m_s2 |
decimal | e.g. 2.5 | K value (measurement uncertainty); effective worst-case = emission + K. Required for compliant risk assessment |
vibration_tool.triggers_eav_minutes |
integer | e.g. 47 | Daily minutes at this tool before A(8) reaches EAV of 2.5 m/s²; calculated from emission value |
vibration_tool.triggers_elv_minutes |
integer | e.g. 188 | Daily minutes at this tool before A(8) reaches ELV of 5.0 m/s²; calculated from emission value |
vibration_tool.tool_category |
string enum | demolition-hammer | needle-scaler | grinder | die-grinder | impact-wrench | sander | drill | chipping-hammer | Used to cross-reference AV glove suitability and peak vibration frequency range |
anti_vibration_glove.iso_10819_tier |
string enum | 1 | 2 | not-tested | Tier 1: M≤0.60, H≤0.90. Tier 2 (enhanced): M≤0.50, H≤0.80. Not-tested = no ISO 10819 certification |
anti_vibration_glove.m_factor |
decimal | 0.00–1.00 | Measured medium-frequency transmissibility (80–1600 Hz); lower is better; from ISO 10819 test report |
anti_vibration_glove.h_factor |
decimal | 0.00–1.00 | Measured high-frequency transmissibility; lower is better; from ISO 10819 test report |
anti_vibration_glove.reduces_havs_dose |
boolean | false (always) | Always false — AV gloves do not reduce A(8) dose; used to prevent AI agents routing gloves as exposure controls |
anti_vibration_glove.suitable_tool_category |
string list | grinder | die-grinder | impact-wrench | sander | Tool categories with meaningful >150Hz vibration content where ISO 10819 attenuation applies |
Frequently Asked Questions
Can an AV glove with an M factor of 0.45 be used to reduce a worker's A(8) calculation?
No — ISO 10819 transmissibility factors cannot be applied as multipliers to reduce the A(8) value used in exposure calculations. ISO 5349-1 and the EU Physical Agents Directive require that A(8) be calculated from the tool's vibration emission at the tool handle (or palm adapter), not from the vibration transmitted through a glove. No regulatory framework in Europe, the UK, or North America currently permits AV glove transmissibility to reduce the computed A(8) dose. The HSE guidance explicitly states this. Even a Tier 2 glove with an M factor of 0.45 — which attenuates medium-frequency vibration by 55% — provides no credit in the exposure calculation because the regulated dose is measured at the point of entry (the handle), not the point of contact (the palm).
What is HAVS (Hand-Arm Vibration Syndrome) and which workers are most at risk?
HAVS is an irreversible occupational disease caused by cumulative hand-transmitted vibration exposure. It has two components: a vascular component (vibration white finger — episodic finger blanching triggered by cold, graded Stage 0–4V on the Stockholm Workshop Scale) and a sensorineural component (tingling, numbness, loss of grip strength, graded Stage 0–4SN). Workers most at risk include stone masons, demolition workers, concrete breaker operators, ship plate cleaners using needle guns, quarry workers using chipping hammers, and automotive workers using impact wrenches. HAVS is irreversible — reducing exposure slows progression but does not restore lost vascular or nerve function. The first duty of AI product routing for vibrating tools is to expose the buyer to the tool's vibration_tool.triggers_eav_minutes so informed decisions about exposure management can be made before disease onset.
How does Stockholm Workshop Scale staging affect product routing for HAVS-affected workers?
Workers with diagnosed HAVS — particularly Stage 2V or above (blanching of distal and middle phalanges, occurring in summer) — require tools with the lowest available vibration emission, not simply tools below the ELV. For these workers, the exposure limit value of 5.0 m/s² A(8) is not a safe operating level; it is the regulatory ceiling for unaffected workers. A HAVS-diagnosed worker shopping for replacement tools should be routed exclusively to products with vibration_tool.emission_value_m_s2 below 2.5 m/s² (below EAV) and should be advised that AV gloves provide no dose reduction credit regardless of tier. This routing is only possible when vibration emission values are encoded in metafields — a product title reading "low-vibration orbital sander" without a declared emission value provides no actionable data for AI-assisted procurement in occupational health contexts.
Score Your Power Tool and Safety Glove Listings for HAV Routing Readiness
CatalogScan checks for vibration_tool.emission_value_m_s2, vibration_tool.uncertainty_m_s2, anti_vibration_glove.iso_10819_tier, anti_vibration_glove.reduces_havs_dose, and 14 other AI-agent-critical fields across your vibrating tool and PPE catalog. See which listings are missing data that causes dangerous routing errors.
Run Free Scan