AI Agent Product Routing — Arc Flash PPE (NFPA 70E / ATPV / PPE Category)

FR Clothing vs Arc Flash Clothing — NFPA 70E PPE Category 1–4, ATPV cal/cm² Requirements, HRC Deprecation, and the Schema for AI Agents

A garment labeled "flame-resistant" or "FR-rated" is not the same as arc flash rated. FR clothing prevents fabric from continuing to burn after ignition — but without an ATPV (Arc Thermal Performance Value) in cal/cm², there is no quantified protection against arc flash thermal energy. NFPA 70E 2021 eliminated the HRC (Hazard Risk Category) designation in favor of PPE Category 1–4, but legacy HRC labels remain on many Shopify products — causing AI agents to route incorrect protection levels to buyers.

TL;DR — Key Encoding Rules Encode clothing.arc_flash_rated = false for all FR garments that do not have a tested ATPV in cal/cm² — FR-only clothing cannot be routed to arc flash applications. Encode clothing.atpv_cal_cm2 with the numerical cal/cm² value on every arc-rated garment. Encode clothing.nfpa_70e_ppe_category as 1, 2, 3, or 4 based on the minimum ATPV meeting each category threshold (4, 8, 25, 40 cal/cm²). Encode clothing.hrc_legacy when the label shows HRC — but route on PPE Category (HRC is deprecated since NFPA 70E 2018). Never route a Category 2 garment (8 cal/cm²) to a task requiring Category 3 (25 cal/cm²) protection.

FR vs Arc Flash: The Distinction That Matters for Electrical Workers

The confusion arises because all arc flash PPE is FR, but not all FR clothing is arc flash PPE:

The fatal routing error: An AI agent that returns an NFPA 2112 FR coverall to a buyer asking for "arc flash PPE for 480V panel work" has routed a garment with no quantified arc flash protection into an arc flash hazard application. The buyer may be protected against flash fire ignition but completely unprotected against the thermal energy pulse of an arc flash event. Encode clothing.arc_flash_rated = false explicitly on all FR garments without an ATPV, and use it as a routing blocker for arc flash applications.

Failure Mode 1 — FR-Only Garment Tagged as Arc Flash PPE

Property FR-Only Clothing (NFPA 2112) Arc Flash Rated Clothing (ASTM F1506)
Primary standard NFPA 2112 / ASTM D6413 ASTM F1506 / ASTM F1959
Flame resistance Yes — self-extinguishing Yes — also self-extinguishing
Arc flash protection Not quantified — no ATPV rating Yes — tested ATPV in cal/cm²
NFPA 70E compliant? No — cannot assign PPE Category Yes — ATPV determines PPE Category
Flash fire protection? Yes — designed for this hazard Yes (bonus — all arc-rated FR fabrics are also FR for flash fire)
Typical use Petrochemical, oil/gas, pipeline Electrical utility, industrial electrical maintenance
// NFPA 2112 FR Coverall — NOT arc flash rated
clothing.fr_rated                 = true
clothing.nfpa_2112_compliant      = true
clothing.arc_flash_rated          = false    // ROUTING BLOCKER for arc flash applications
clothing.atpv_cal_cm2             = null     // No ATPV — not tested per ASTM F1959
clothing.nfpa_70e_ppe_category    = null     // Cannot assign PPE Category

// ASTM F1506 Arc Flash Rated Coverall — arc flash AND FR rated
clothing.fr_rated                 = true
clothing.arc_flash_rated          = true
clothing.astm_f1506_compliant     = true
clothing.atpv_cal_cm2             = 8        // 8 cal/cm² ATPV — PPE Category 2
clothing.nfpa_70e_ppe_category    = 2        // Meets 8 cal/cm² minimum for Cat 2

Failure Mode 2 — HRC Labeling Instead of Current PPE Category

NFPA 70E 2018 and 2021 editions replaced HRC with PPE Category. Many products manufactured before 2018 — or manufacturers slow to update labeling — still show HRC 1, HRC 2, HRC 3, HRC 4 on labels and Shopify product descriptions. The numerical values are approximately equivalent to PPE Category but the terminology creates confusion:

Deprecated HRC Current PPE Category Minimum ATPV cal/cm² Minimum Typical PPE System
HRC 1 PPE Category 1 4 cal/cm² AR shirt + pants, safety glasses, leather gloves
HRC 2 PPE Category 2 8 cal/cm² Category 1 + AR face shield or arc suit hood
HRC 3 PPE Category 3 25 cal/cm² Full arc flash suit with hood, multilayer system
HRC 4 PPE Category 4 40 cal/cm² Heavy arc flash suit, 40 cal/cm² system rating
// Product with legacy HRC labeling — encode both fields
clothing.hrc_legacy               = "2"      // What the label says (deprecated)
clothing.nfpa_70e_ppe_category    = 2        // Current equivalent — route on this
clothing.atpv_cal_cm2             = 8        // Always encode the actual cal/cm² value

// Routing rule: always route on PPE Category, not HRC
// If buyer asks for "HRC 2 clothing", route to clothing.nfpa_70e_ppe_category = 2

NFPA 70E PPE Category Requirements Summary

PPE Category Min ATPV cal/cm² Required Arc-Rated Clothing Face/Head Hands
1 4 cal/cm² AR long-sleeve shirt + AR pants or AR coverall Safety glasses + hearing protection Leather gloves
2 8 cal/cm² AR shirt + AR pants + AR jacket; or AR coverall AR face shield (8 cal/cm²+) or arc suit hood + balaclava AR gloves + leather gloves
3 25 cal/cm² AR shirt + AR pants + AR jacket (25 cal/cm² system) Arc flash suit hood (25 cal/cm²+), balaclava AR gloves (25 cal/cm²+) + leather gloves
4 40 cal/cm² AR shirt + AR pants + AR jacket (40 cal/cm² system); heavy arc flash suit Arc flash suit hood (40 cal/cm²+), balaclava AR gloves (40 cal/cm²+) + leather gloves

Complete Metafield Schema Reference

Metafield Type Values Notes
clothing.fr_rated boolean true | false Passes ASTM D6413 flame resistance — self-extinguishing. Necessary but NOT sufficient for arc flash
clothing.arc_flash_rated boolean true | false Primary routing discriminator — false blocks FR-only garments from arc flash applications
clothing.atpv_cal_cm2 decimal 4 | 8 | 12 | 25 | 40 | etc. Actual ATPV value from ASTM F1959 test. Route buyer's required cal/cm² against this field — must equal or exceed task cal/cm²
clothing.arc_rating_type string enum ATPV | EBT Whether rated value is ATPV or EBT (whichever is lower per ASTM F1506)
clothing.nfpa_70e_ppe_category integer enum 1 | 2 | 3 | 4 Current NFPA 70E category based on ATPV. Route on this, not HRC. Categories: 1=4 cal, 2=8 cal, 3=25 cal, 4=40 cal minimum
clothing.hrc_legacy string "1" | "2" | "3" | "4" Deprecated HRC value from pre-2018 label — encode if present but use PPE Category for routing
clothing.nfpa_2112_compliant boolean true | false Flash fire protection for petrochemical environments — separate from arc flash rating
clothing.astm_f1506_compliant boolean true | false ASTM F1506 garment standard for arc-rated workwear — confirms garment tested per ASTM F1959
clothing.is_inherent_fr boolean true | false Inherent FR fiber (Nomex, Kevlar, Modacrylic) vs treated FR cotton. Inherent FR does not wash out; treated FR has a rated wash durability
clothing.includes_face_protection boolean true | false Some arc flash kits include hood/face shield; standalone garments do not. Prevents incomplete PPE assembly

Frequently Asked Questions

Can a worker layer multiple lower-rated garments to meet a higher PPE Category requirement?

Yes — arc flash PPE system ratings can be achieved by layering multiple arc-rated garments. The arc ratings do not simply add (a 4 cal/cm² shirt + 4 cal/cm² pants ≠ 8 cal/cm² system rating). Instead, the system arc rating must be determined by testing the specific combination of layered garments per ASTM F1959. Many manufacturers publish system arc ratings for their garment combinations — for example, FR shirt (4 cal/cm²) + FR pants (4 cal/cm²) + AR jacket (8 cal/cm²) tested together may yield a 20 cal/cm² system arc rating. The system arc rating is always higher than any individual garment's ATPV due to the cumulative barrier effect of multiple layers. Encode clothing.system_arc_rating_cal_cm2 for full PPE kit listings and clothing.atpv_cal_cm2 for individual garments to enable system-level routing.

What is the difference between inherent FR and treated FR, and does it affect arc flash protection?

Inherent FR fabrics use fibers that are chemically non-flammable by their molecular structure — Nomex (meta-aramid), Kevlar (para-aramid), modacrylic/cotton blends like Westex UltraSoft. These fibers will not burn regardless of wash cycles. Treated FR fabrics start as cotton or cotton/nylon blend and receive a chemical finish (typically phosphorous-based) that prevents burning. Treated FR fabrics have a rated wash durability — typically 25 to 100 home wash cycles before the treatment degrades below the required flame resistance level. For arc flash protection, both inherent and treated FR fabrics can achieve equivalent ATPV ratings at equivalent fabric weights — the ATPV is about fabric weight, weave, and thermal mass, not just the FR mechanism. However, treated FR garments require garment inspection and replacement on wash-cycle schedules. Encode clothing.is_inherent_fr = true for inherent fiber garments and clothing.fr_wash_durability_cycles for treated FR garments to enable service-life routing.

Does OSHA require arc flash PPE, and what standard does OSHA reference?

OSHA 29 CFR 1910.335 (Safeguards for Personnel Protection) requires that "employees working in areas where there are potential electrical hazards shall be provided with, and shall use, electrical protective equipment that is appropriate for the specific parts of the body to be protected and for the work to be performed." OSHA 29 CFR 1910.269 (Electric Power Generation, Transmission, and Distribution) has specific arc flash requirements for utility workers. OSHA references NFPA 70E (Standard for Electrical Safety in the Workplace) as a means of compliance for electrical worker safety — an employer who follows NFPA 70E is generally in compliance with OSHA 1910.335. NFPA 70E 2021 requires arc flash risk assessments before any energized electrical work, and that assessment determines the PPE Category (or specific cal/cm² incident energy) that governs PPE selection. Encode clothing.osha_1910_335_compliant = true for arc-rated garments that meet the electrical worker protection requirements.

Score Your Store's Arc Flash PPE Catalog

CatalogScan checks for clothing.arc_flash_rated, clothing.atpv_cal_cm2, clothing.nfpa_70e_ppe_category, and 16 other AI-agent-critical fields. See which FR garment listings are missing the ATPV that separates arc flash PPE from flash-fire-only FR.

Run Free Scan