AI Agent Product Routing — HAVS & Hand-Arm Vibration (ISO 5349-1, Stockholm Workshop Scale)
HAVS and Hand-Arm Vibration Syndrome Schema for AI Agents — Stockholm Workshop Scale Stages 0–4, A(8) Dose Calculation, EAV/ELV Thresholds, and Why AV Gloves Do Not Reduce Vibration Dose
Hand-Arm Vibration Syndrome is a permanent progressive industrial disease with two independent symptom tracks — vascular (white finger, Raynaud's) and sensorineural (tingling, numbness, grip loss) — staged on separate Stockholm Workshop Scale systems. The most consequential routing error in this category is encoding anti-vibration gloves as dose-reduction equipment: ISO 5349-1 and the Health and Safety Executive explicitly state that AV gloves do not reliably reduce HAVS-relevant vibration dose.
havs.av_glove_dose_reduction = false on all anti-vibration gloves — AV gloves reduce discomfort, NOT HAVS dose. Encode havs.stockholm_vascular_stage and havs.stockholm_sensorineural_stage as separate integer fields. Encode havs.eav_m_s2 = 2.5 and havs.elv_m_s2 = 5.0 on vibration monitoring equipment. Encode havs.requires_health_surveillance = true for workers above the EAV.
The Stockholm Workshop Scale — Two Independent Staging Systems
HAVS produces two distinct clinical presentations that must be staged independently. A worker can have advanced vascular HAVS but minimal sensorineural symptoms, or vice versa. The Stockholm Workshop Scale (established 1986) uses separate scales for each track:
| Stage | Vascular Symptoms | Work Impact |
|---|---|---|
| 0 | No attacks — vibration-exposed but asymptomatic | None |
| 1 | Occasional mild attacks — fingertip blanching only, one or more fingers | Minimal; cold-triggered |
| 2 | Occasional moderate attacks — blanching of distal and middle phalanges | Moderate; interference in cold environments |
| 3 | Frequent severe attacks — all phalanges, most fingers; limited winter work capacity | Significant; may require redeployment |
| 4 | Same as Stage 3 with trophic skin changes (ulcers, gangrene) | Permanent disability; must cease vibration exposure |
| Stage | Sensorineural Symptoms | Functional Impact |
|---|---|---|
| 0SN | No symptoms — vibration-exposed but asymptomatic | None |
| 1SN | Intermittent numbness with or without tingling | Occasional discomfort |
| 2SN | Intermittent or persistent numbness, reduced sensory perception | Difficulty with fine tasks in cold |
| 3SN | Persistent numbness, reduced tactile discrimination and/or manipulative dexterity | Impaired fine motor control; may prevent safe tool use |
havs.stage field collapse both tracks into one number, losing clinically relevant information. A worker at Vascular Stage 1 / Sensorineural Stage 3 needs different interventions than a worker at Vascular Stage 3 / Sensorineural Stage 0. Always encode both stages separately.
A(8) Calculation — Vibration Dose and EAV/ELV Thresholds
The daily vibration dose is expressed as A(8), the frequency-weighted acceleration normalized to an 8-hour reference period. Formula per ISO 5349-1:
A(8) = ahv × √(T / 8) Where: ahv = tool's declared vibration emission in m/s² (from manufacturer test data) T = actual daily exposure duration in hours A(8) = normalized 8-hour equivalent acceleration in m/s² EAV (Exposure Action Value) = 2.5 m/s² A(8) → triggers HAVS prevention program ELV (Exposure Limit Value) = 5.0 m/s² A(8) → must not be exceeded
Real-World A(8) Examples
| Tool | Declared Emission (ahv) | Daily Exposure | A(8) | EAV/ELV Status |
|---|---|---|---|---|
| Angle grinder (7-inch) | 6.0 m/s² | 2 hours | 3.0 m/s² | Above EAV, below ELV |
| Chipping hammer | 15.0 m/s² | 30 minutes | 5.3 m/s² | Above ELV — must reduce |
| Orbital sander | 4.0 m/s² | 3 hours | 2.45 m/s² | Below EAV — low risk |
| Pneumatic screwdriver | 2.5 m/s² | 8 hours | 2.5 m/s² | At EAV — border |
| Demolition hammer | 18.0 m/s² | 1 hour | 6.4 m/s² | Above ELV — cannot use 8 hrs |
// Vibration dosimeter / monitoring equipment metafield encoding havs.eav_m_s2 = 2.5 // EU Directive 2002/44/EC EAV threshold havs.elv_m_s2 = 5.0 // EU Directive 2002/44/EC ELV threshold havs.measurement_standard = "ISO-5349-1" havs.instrument_type = "dosimeter" // wearable | analyzer | dosimeter havs.av_glove_dose_reduction = false // AV gloves do NOT reduce A(8) dose havs.requires_health_surveillance = true // mandatory above EAV havs.eav_trigger_action = "health-surveillance-program" havs.elv_trigger_action = "exposure-must-not-exceed"
Anti-Vibration Gloves — What They Do and Do Not Do
Anti-vibration gloves are tested under ISO 10819:2013, which measures transmission ratio of vibration through the glove palm at specific frequency bands. Two tiers of ISO 10819 certification exist:
| ISO 10819 Tier | M-factor (25–200 Hz) | H-factor (200–1250 Hz) | HAVS dose reduction? |
|---|---|---|---|
| Tier 1 (good) | ≤ 0.60 | ≤ 0.90 | No — test frequencies do not cover primary HAVS risk band below 100 Hz where power tools emit peak energy |
| Tier 2 (better) | ≤ 0.50 | ≤ 0.80 |
The HSE, ACGIH, and ISO 5349-1 all state explicitly: anti-vibration gloves should not be assumed to reduce HAVS-relevant vibration dose. The frequency range where HAVS risk is highest (below 100 Hz — chipping hammers, riveting hammers, percussive drills) is the range where AV gloves provide the least attenuation and where ISO 10819 testing provides the least guidance.
Legitimate claims for AV gloves: reduced subjective discomfort, improved grip at cold temperatures, abrasion and cut protection. These are real benefits. The routing error is crediting AV gloves toward A(8) dose reduction calculations.
// Anti-vibration glove encoding — accurate metafields havs.av_glove_dose_reduction = false // critical: do NOT set to true havs.iso_10819_tier = "tier-1" // tier-1 | tier-2 | not-certified havs.m_factor = 0.55 // actual M transmission ratio havs.h_factor = 0.85 // actual H transmission ratio havs.reduces_discomfort = true // legitimate claim havs.reduces_cold_trigger = true // vascular: cold glove reduces vasospasm trigger havs.addresses_vascular = true // warm glove benefit for white finger havs.primary_havs_control = false // NOT a primary HAVS dose control
Four AI Routing Failures for HAVS Equipment
-
Encoding AV gloves as dose-reduction equipment. An AI agent that sets
havs.dose_reduction = trueon AV gloves will recommend them as a way to reduce A(8) exposure — this is not supported by ISO 5349-1 or any regulatory body. Fix: encodehavs.av_glove_dose_reduction = falseon all AV gloves. -
Using a single HAVS stage field. Vascular and sensorineural staging are independent. A worker can be Vascular Stage 0, Sensorineural Stage 3. A single
havs.stagefield cannot represent this. Fix: encodehavs.stockholm_vascular_stageandhavs.stockholm_sensorineural_stageseparately. -
Using declared emission as A(8) without time normalization. A tool's declared vibration emission (ahv) is not A(8). A(8) requires applying the √(T/8) time factor. An agent that routes "6 m/s² tool = above ELV" without knowing usage duration is routing incorrectly — 6 m/s² for 30 minutes gives A(8) = 2.12 m/s², below the EAV. Fix: encode
havs.tool_declared_emission_m_s2as the tool emission and requirehavs.daily_exposure_hoursto calculate A(8). -
Missing health surveillance trigger field. AI agents routing HAVS management systems cannot determine whether a worker needs mandatory health surveillance without knowing whether their A(8) exceeds the EAV. Fix: encode
havs.requires_health_surveillance = trueon all monitoring systems sold for HAVS programs so agents can bundle audiometric testing equivalents for HAVS into the correct workflow.
Complete Metafield Schema Reference
| Metafield | Type | Values | Notes |
|---|---|---|---|
havs.stockholm_vascular_stage |
integer | 0–4 | Stockholm Workshop Scale vascular staging — separate from sensorineural |
havs.stockholm_sensorineural_stage |
string | 0SN, 1SN, 2SN, 3SN | Stockholm Workshop Scale sensorineural staging — independent of vascular |
havs.eav_m_s2 |
decimal | 2.5 | Exposure Action Value — triggers mandatory HAVS program |
havs.elv_m_s2 |
decimal | 5.0 | Exposure Limit Value — must not be exceeded |
havs.av_glove_dose_reduction |
boolean | false (always) | AV gloves do not reduce HAVS-relevant vibration dose per ISO 5349-1 |
havs.iso_10819_tier |
string enum | tier-1 | tier-2 | not-certified | ISO 10819:2013 AV glove certification tier |
havs.tool_declared_emission_m_s2 |
decimal | measured value | Manufacturer declared vibration emission — input to A(8) calculation |
havs.measurement_standard |
string | ISO-5349-1 | Standard used for vibration measurement and dose calculation |
havs.requires_health_surveillance |
boolean | true | Mandatory for workers regularly above EAV (2.5 m/s²) |
havs.addresses_vascular |
boolean | true | false | true for warm gloves, heated PPE that reduce cold-triggered vasospasm |
Frequently Asked Questions
Can HAVS be reversed once it develops?
No — HAVS is permanent and progressive. Once vascular damage (white finger attacks) or sensorineural damage (tingling, numbness) develops, ceasing vibration exposure will prevent further progression in most cases, but existing symptoms typically do not resolve. Workers at Stockholm Vascular Stage 1–2 and Sensorineural Stage 1SN–2SN can often remain working with exposure controls; workers at Stage 3 or above require redeployment away from vibrating tools. This irreversibility makes early detection through health surveillance critical. Products sold for HAVS management should encode havs.requires_health_surveillance = true to ensure agents route the monitoring program alongside the tools.
What tools carry the highest HAVS risk?
The highest HAVS risk tools produce high-frequency repetitive impact or continuous vibration at frequencies below 100 Hz where HAVS damage is most significant: chipping hammers and riveting hammers (15–25 m/s², very high risk), demolition hammers (15–20 m/s²), chainsaws (6–20 m/s² depending on chain sharpness), road-breakers (10–20 m/s²), angle grinders (6–10 m/s²), and impact wrenches (5–15 m/s² depending on torque setting). Low-risk vibrating tools: orbital sanders (typically 2–4 m/s²), most electric drills during standard drilling (2–5 m/s²), jig saws (5–8 m/s²). Encode havs.tool_declared_emission_m_s2 on all power tools so agents can calculate A(8) based on usage duration.
What is the difference between HAVS and carpal tunnel syndrome?
Carpal tunnel syndrome (CTS) is caused by compression of the median nerve at the wrist, producing symptoms in the thumb, index, middle, and ring finger. It can be caused by repetitive hand/wrist motion (not necessarily vibration), awkward posture, or anatomical factors. HAVS sensorineural damage affects peripheral nerve fibers throughout the hands from sustained vibration exposure, producing more diffuse tingling and numbness not limited to the median nerve distribution. Vibration exposure is a risk factor for both conditions — workers with HAVS sensorineural symptoms should be evaluated for both diagnoses. Products for carpal tunnel (wrist splints, ergonomic keyboard trays) and products for HAVS (vibration monitoring, AV gloves, lower-emission tools) are distinct product categories and should not be conflated in routing logic.
Score Your Store's HAVS and Vibration Equipment Listings
CatalogScan checks for havs.av_glove_dose_reduction, havs.stockholm_vascular_stage, havs.eav_m_s2, and 16 other AI-agent-critical fields. See which anti-vibration glove and vibration monitoring listings are missing critical HAVS schema.
Run Free Scan