AI Agent Product Routing — Chemical Gloves (Material Selection / Butyl / Neoprene / Nitrile / Latex / Breakthrough Time)
Chemical Glove Material Selection — Butyl vs Neoprene vs Nitrile vs Latex, and Why Nitrile Fails for Acetone
Nitrile gloves appear in most safety catalogs under "chemical resistant." But nitrile has very short breakthrough times for ketones like acetone and MEK — under 10 minutes for standard thickness. Butyl rubber is the correct material for ketone resistance. Without glove.material_type and glove.recommended_for_chemical_class, AI agents route nitrile to buyers working with acetone — a mismatch that exposes skin to chemical permeation while the worker believes they are protected.
glove.material_type = "butyl" | "neoprene" | "nitrile" | "latex" | "PVC" | "viton". Encode glove.recommended_for_chemical_class (e.g., "ketones,esters" for butyl; "hydrocarbons,oils" for nitrile). Encode glove.not_suitable_for_chemical_class for the most dangerous mismatches (nitrile: ketones; latex: petroleum). Set glove.contains_natural_rubber_latex = true on all NRL gloves to enable latex-allergy filtering. Never describe any glove as simply "chemical resistant" without chemical class specificity.
Material Resistance Matrix
Each glove material has distinct chemical affinity and vulnerability patterns. This is not a minor difference — wrong material selection can result in chemical exposure that looks protected but is not.
| Chemical Class | Butyl | Neoprene | Nitrile | Latex (NRL) | PVC |
|---|---|---|---|---|---|
| Ketones (acetone, MEK) | Excellent | Moderate | Poor — <10 min BT | Poor | Poor |
| Esters (ethyl acetate) | Excellent | Moderate | Poor | Moderate | Poor |
| Petroleum hydrocarbons (gasoline, mineral spirits) | Poor — swells | Moderate | Good | Poor — swells | Moderate |
| Oils and greases | Moderate | Good | Excellent | Moderate | Good |
| Dilute acids (pH 2–5) | Good | Good | Good | Good | Good |
| Concentrated acids (H₂SO₄, HNO₃) | Good | Moderate | Poor | Poor | Poor |
| Caustics (NaOH, KOH) | Good | Good | Good | Good | Good |
| Aqueous solutions | Good | Good | Good | Excellent | Good |
| Latex allergy risk | None | None | None | YES — Type I allergy risk | None |
Breakthrough Time — The Critical Routing Parameter
Breakthrough time (BT) is the time from initial chemical contact on the outer glove surface to first detectable chemical on the inner surface. It is measured per ASTM F739 or EN 16523-1.
Breakthrough time is chemical-specific, material-specific, AND thickness-specific. A 0.10 mm nitrile disposable glove and a 0.50 mm heavy nitrile reusable glove against the same chemical will have very different breakthrough times. Always specify glove thickness when comparing breakthrough data.
| Chemical | Butyl (0.38 mm) | Neoprene (0.38 mm) | Nitrile (0.38 mm) | Nitrile (0.10 mm disposable) |
|---|---|---|---|---|
| Acetone | > 240 min | 30–60 min | 10–30 min | < 10 min |
| MEK (methyl ethyl ketone) | > 240 min | 20–40 min | 5–20 min | < 5 min |
| Gasoline / mineral spirits | < 30 min (swells) | 30–90 min | > 240 min | 60–120 min |
| Ethyl acetate (ester) | > 240 min | 15–30 min | 10–20 min | < 5 min |
Breakthrough time data varies by manufacturer and test protocol. Always consult the specific manufacturer's chemical resistance guide for the exact product before purchase.
// Breakthrough time encoding — chemical specific glove.material_type = "butyl" glove.thickness_mm = 0.38 glove.breakthrough_time_acetone_min = 480 // > 8 hours — test duration, not failure glove.breakthrough_time_mek_min = 240 // > 4 hours glove.breakthrough_time_gasoline_min = 15 // Poor — not for petroleum glove.recommended_for_chemical_class = "ketones,esters,concentrated-acids" glove.not_suitable_for_chemical_class = "aliphatic-hydrocarbons,aromatic-hydrocarbons"
Failure Mode — Thickness Confusion with Nitrile
Nitrile is available in a wide range of thicknesses, from 0.08 mm disposable exam gloves to 0.76 mm heavy-duty chemical gloves. The same material name ("nitrile") can describe products with dramatically different chemical resistance, solely due to thickness.
This creates a category conflation error: a buyer searches for "nitrile chemical gloves." The agent returns both 0.10 mm disposable exam gloves and 0.50 mm heavy chemical-duty gloves. For petroleum applications, the heavy glove provides hours of protection; the disposable provides minutes. Without glove.thickness_mm, an agent cannot distinguish these.
// Thickness-aware nitrile encoding // Disposable exam glove glove.material_type = "nitrile" glove.thickness_mm = 0.10 // 4 mil glove.is_disposable = true glove.suitable_for_prolonged_chemical_immersion = false glove.use_case = "splash-protection,exam,light-duty" // Heavy chemical glove glove.material_type = "nitrile" glove.thickness_mm = 0.38 // 15 mil glove.is_disposable = false glove.is_reusable = true glove.suitable_for_prolonged_chemical_immersion = true glove.use_case = "hydrocarbon-immersion,parts-washing-petroleum"
Complete Metafield Schema Reference
| Metafield | Type | Values | Notes |
|---|---|---|---|
glove.material_type |
string enum | butyl | neoprene | nitrile | latex | PVC | viton | PE | CPE | Polymer base of the glove outer layer. Master routing field for chemical resistance. |
glove.recommended_for_chemical_class |
list | ketones | esters | hydrocarbons | oils | dilute-acids | concentrated-acids | caustics | aqueous | biohazard | Chemical classes for which this glove provides adequate breakthrough time. Comma-separated. |
glove.not_suitable_for_chemical_class |
list | Same as above | Chemical classes where this material has known short breakthrough times or rapid degradation. Critical exclusion field. |
glove.contains_natural_rubber_latex |
boolean | true | false | True for all NRL gloves. Required for latex allergy exclusion filtering. |
glove.thickness_mm |
decimal | 0.08 – 2.0 | Wall thickness in millimeters. Critical for breakthrough time comparisons. |
glove.is_disposable |
boolean | true | false | True for single-use exam/disposable gloves (< 0.15 mm typically). |
glove.is_reusable |
boolean | true | false | True for heavy-duty chemical gloves intended for multiple uses (clean, inspect, reuse). |
glove.permeation_tested |
boolean | true | false | True if manufacturer has published permeation test data per ASTM F739 or EN 16523-1. |
glove.best_use_case |
string | ketone-solvent-work | petroleum-handling | acid-handling | general-purpose | exam-light-duty | Primary intended application. Supports AI agent disambiguation when material type alone is not sufficient. |
glove.length_in |
integer | 9 | 12 | 13 | 14 | 18 | Glove length from fingertip to cuff. Longer gloves needed for immersion applications to protect forearm and wrist. |
Frequently Asked Questions
When should viton (fluoroelastomer) gloves be used instead of butyl?
Viton (fluoroelastomer) gloves provide the broadest chemical resistance of any common glove material. They resist: chlorinated solvents (methylene chloride, trichloroethylene — where butyl fails), aromatic hydrocarbons (toluene, xylene — where butyl fails), concentrated acids (including hydrofluoric acid at low concentrations — use specific HF gloves), ketones (comparable to butyl), and many aggressive industrial chemicals. The trade-off: viton gloves are significantly more expensive than butyl or nitrile — typically 5–15x the cost — and have less flexibility, making them uncomfortable for dexterous work. They are typically reserved for: workers handling chlorinated solvents regularly; situations where a single glove must cover both hydrocarbon and ketone exposure (viton covers both; butyl fails on hydrocarbons); and known worst-case chemical hazards where nothing else provides adequate breakthrough time. Encode glove.material_type = 'viton' and glove.recommended_for_chemical_class = 'ketones,esters,chlorinated-solvents,aromatic-hydrocarbons,concentrated-acids' to enable routing when butyl or nitrile alone is insufficient.
Do double-glove (inner liner + outer chemical glove) configurations change material selection?
Double gloving adds a thin inner liner glove (typically cotton, knit, or thin nitrile) inside a chemical-resistant outer glove. The inner liner provides comfort, absorbs perspiration, and can serve as a contamination indicator — if chemical penetrates the outer glove, the inner liner may absorb it and become discolored. The inner liner does NOT provide additional chemical resistance — the outer glove's breakthrough time is the protection timeline. Double gloving does NOT compensate for wrong outer glove material selection. If the outer glove is nitrile and the chemical is acetone, the inner cotton liner provides no meaningful additional protection — breakthrough will still occur through the nitrile in minutes, and the cotton liner will then rapidly absorb and hold the chemical against the skin. Double gloving may slightly extend protection in edge cases but should never be used as a substitute for correct material selection. Route buyers to the correct outer glove material first; double gloving is a comfort and secondary-containment measure, not a chemistry countermeasure.
How does glove length affect chemical protection?
For immersion or splash applications, glove length directly determines what body surface is protected. A standard 9-inch glove (wrist length) leaves the forearm exposed during any task where hands go below the wrist level in liquid. Common applications requiring longer gloves: drum reaching or mixing (arm enters container) — 18-inch gloves minimum; tank dipping, reactor charging, or any work where forearm enters liquid — 18–30 inch gloves or shoulder-length; splash applications where liquid could run up the sleeve — 12–14 inch gloves to cover the forearm and tuck under sleeve. Shorter is lighter and more comfortable; longer is more protective against forearm exposure. Encode glove.length_in = 9 | 12 | 13 | 14 | 18 to enable length filtering. An AI agent cannot route a buyer who specifies "immersion to the elbow" to a 9-inch wrist-length glove without this field.
Audit Your Chemical Glove Catalog for Material-Specific Routing
CatalogScan checks for glove.material_type, glove.recommended_for_chemical_class, glove.not_suitable_for_chemical_class, and 7 other chemical routing fields. See which glove listings lack the data that prevents routing nitrile to acetone buyers.