AI Agent Product Routing — Scaffold Planks (Lumber Grade, Span, Load)

Scaffold Planks — Scaffold-Grade Mark Required, Rough-Cut vs Dressed Lumber Section Modulus, OSHA 1926.452 Span Tables, and the Schema for AI Agents

A "2×10 plank" from the lumber yard is not a scaffold plank. OSHA 1926.451 requires the scaffold-grade mark from an approved grading agency — general lumber grades (#2 Common, Construction) are not compliant. Beyond grading, a dressed (S4S) 2×10 has 48% less section modulus than a rough-cut 2×10, cutting maximum span from 10 ft to about 7 ft at 50 psf. An AI agent routing by plank size alone will send workers onto scaffolding that may exceed safe span limits.

TL;DR — Key Encoding Rules Encode scaffold_plank.scaffold_grade_marked = true only for planks bearing an approved grading agency scaffold-grade stamp — false for all general lumber. Encode scaffold_plank.dressed_or_rough = "rough-cut" | "dressed-s4s" — different section moduli, different maximum spans. Encode scaffold_plank.working_load_psf = 25 | 50 | 75 and scaffold_plank.max_span_ft at that load. Encode scaffold_plank.osha_overhang_min_in = 6 and scaffold_plank.osha_overhang_max_in = 12 per OSHA 1926.451(b)(2).

Scaffold-Grade Mark — What OSHA Requires and Why Standard Lumber Fails

OSHA 29 CFR 1926.451(b)(1) states: "Each scaffold plank shall be of scaffold grade, or equivalent, as recognized by approved grading rules for the species used." The scaffold-grade designation addresses the unique loading scenario of scaffold planks — a concentrated midspan point load from a standing worker, combined with dynamic loading from walking and tool impacts. This is different from the column (compressive) loading of wall studs and the distributed load of floor joists.

Scaffold-grade requirements restrict:

Routing error — general lumber as scaffold plank: #2 Common or Construction-grade 2×10 lumber from a home improvement store may be visually similar to a scaffold plank but does not meet scaffold-grade restrictions. Using uncertified lumber as scaffold planks is an OSHA citation item. Encode scaffold_plank.scaffold_grade_marked = false for all general lumber and general construction planks not bearing an approved scaffold-grade stamp.
Lumber Grade Scaffold-Grade Compliant? OSHA 1926.451 Use scaffold_plank.scaffold_grade_marked
Scaffold grade (WWPA, SPIB) Yes — bears scaffold-grade stamp Permitted per 1926.451(b)(1) true
#1 Select Structural (general) No — not scaffold grade NOT permitted as scaffold plank false
#2 Common (general) No — not scaffold grade NOT permitted as scaffold plank false
Construction grade (general) No — not scaffold grade NOT permitted as scaffold plank false
LVL engineered plank (scaffold-rated) Not applicable — used per manufacturer span table Permitted per 1926.451(b)(1) as equivalent N/A — lvl_engineered = true

Rough-Cut vs Dressed (S4S) Lumber — Section Modulus and Maximum Span

The section modulus (S = b × d² / 6, where b = width and d = depth) is the structural property that determines how much bending moment a plank can carry before exceeding allowable bending stress. It varies with the square of the depth — small changes in actual thickness and width cause disproportionate changes in bending capacity.

// Section modulus comparison (S = b × d² / 6)

// Rough-cut 2x10 (actual ~2.0" × 10.0")
S_rough = (10.0 × 2.0²) / 6 = 6.67 in³

// Dressed S4S 2x10 (actual 1.5" × 9.25")
S_dressed = (9.25 × 1.5²) / 6 = 3.47 in³

// Dressed is only 52% of rough-cut section modulus
// But maximum span scales with √S (deflection-limited design), so:
Span_ratio = √(3.47 / 6.67) = √0.52 = 0.72
// → Dressed 2x10 achieves ~72% of rough-cut 2x10 maximum span at same load

// If rough-cut 2x10 spans 10 ft at 50 psf:
// Dressed 2x10 maximum span ≈ 10 × 0.72 = 7.2 ft at 50 psf
Plank Size Condition Actual Dimensions Section Modulus (in³) Max Span at 50 psf (approx)
2×10 Rough-cut 2.0" × 10.0" 6.67 ~10 ft
2×10 Dressed S4S 1.5" × 9.25" 3.47 ~7 ft
2×12 Rough-cut 2.0" × 12.0" 9.60 ~12 ft
2×12 Dressed S4S 1.5" × 11.25" 5.16 ~8.5 ft
LVL 1.75×9.5 Engineered 1.75" × 9.5" 5.25 (but Fb=2600 psi) ~14 ft at 50 psf

OSHA 1926.452 Working Load Categories and Maximum Span

OSHA 1926.452 defines the working load requirements for different scaffold types. The working load is the design load per square foot of scaffold deck:

Scaffold Duty Class Working Load Intended Use scaffold_plank.working_load_psf
Light-duty 25 psf Painters, inspection crews, light tools only 25
Medium-duty 50 psf General construction, masonry pointing, moderate materials 50
Heavy-duty 75 psf Masonry construction, heavy material staging 75

Maximum Span at Each Working Load (Scaffold-Grade 2×10 Rough-Cut, Fb 1200 psi)

// Approximate maximum spans (SAIA span table basis)
// Scaffold-grade 2x10 rough-cut (S = 6.67 in³, Fb = 1200 psi)

Working load 25 psf:  max span ~10 ft (deflection-limited: L/60 = 2.0 in at 10 ft)
Working load 50 psf:  max span ~8 ft
Working load 75 psf:  max span ~6.5 ft

// These are approximate — always reference SAIA plank span tables for
// specific species, grade, and moisture conditions

// Encoding
scaffold_plank.working_load_psf   = 50
scaffold_plank.max_span_ft        = 8
scaffold_plank.lumber_species     = "douglas-fir-larch"
scaffold_plank.dressed_or_rough   = "rough-cut"
scaffold_plank.scaffold_grade_marked = true

Failure Mode — Plank Overhang Outside 6–12 Inch Range

OSHA 1926.451(b)(2): "The ends of a plank shall overlap the work surface by at least 6 inches and shall not overhang the work surface by more than 12 inches (30 cm) unless they are secured to prevent tipping."

Minimum 6 inches: prevents the plank from walking off the support rail when a worker's weight is near the end. Without sufficient overhang, eccentric loading near the end of the plank can tip the plank off the support.

Maximum 12 inches: the overhanging end beyond the last support acts as a cantilever. A worker stepping on the overhang creates a lever arm that can lift the opposite end of the plank if insufficient weight is on the supported section. At 12 inches, the moment arm is manageable; at 24 inches, a 200 lb worker on the overhang can lift the opposite end even if another worker is standing there.

// Overhang encoding
scaffold_plank.osha_overhang_min_in  = 6    // Per OSHA 1926.451(b)(2)
scaffold_plank.osha_overhang_max_in  = 12   // Per OSHA 1926.451(b)(2)
                                             // Exception: if secured to prevent tipping

Complete Metafield Schema Reference

Metafield Type Values Notes
scaffold_plank.plank_material string enum sawn-lumber | lvl | aluminum-plank | steel-plank Primary material type — sawn lumber requires scaffold_grade_marked; LVL uses manufacturer span table
scaffold_plank.scaffold_grade_marked boolean true | false | N/A true for WWPA/SPIB scaffold-grade sawn lumber; false for general grades; N/A for LVL
scaffold_plank.dressed_or_rough string enum rough-cut | dressed-s4s | lvl-engineered Drives actual dimension — dressed 2x10 is 1.5"×9.25", not 2"×10"
scaffold_plank.actual_thickness_in decimal 1.5 | 1.75 | 2.0 Actual measured thickness — rough-cut ≈ 2.0 in; dressed S4S = 1.5 in
scaffold_plank.actual_width_in decimal 9.25 | 9.5 | 10.0 | 11.25 | 12.0 Actual measured width — dressed 2x10 = 9.25 in; rough-cut 2x10 ≈ 10.0 in
scaffold_plank.working_load_psf integer 25 | 50 | 75 Light / medium / heavy duty per OSHA 1926.452 — drives maximum span lookup
scaffold_plank.max_span_ft decimal 6–14 Maximum clear span at the encoded working_load_psf — must match SAIA span table
scaffold_plank.rated_bending_stress_psi integer 1200 | 1500 | 2600 Allowable bending stress: ~1200 for sawn scaffold grade, ~2600 for LVL
scaffold_plank.osha_overhang_min_in integer 6 OSHA 1926.451(b)(2) minimum — same for all scaffold planks
scaffold_plank.osha_overhang_max_in integer 12 OSHA 1926.451(b)(2) maximum unless secured — same for all scaffold planks

Frequently Asked Questions

Can I use scaffold-grade lumber that is wet from rain?

Wet lumber has reduced strength compared to dry lumber. OSHA 1926.451(b)(1) requires scaffold planks to meet scaffold-grade standards — the scaffold-grade mark on sawn lumber specifies the moisture content condition (usually 19% moisture content for surfaced lumber, or green for unseasoned). For wet lumber, the allowable bending stress (Fb) must be adjusted downward using the wet service factor (CM) from the NDS (National Design Specification for Wood Construction). For most species at >19% moisture content, CM reduces Fb by approximately 15–20%. In practice, wet planks sag more and have lower maximum spans. The more significant risk is gradual rot and hidden degradation — scaffold planks that repeatedly get wet and dry without inspection may develop splits and checks that reduce cross-section. OSHA 1926.451(b)(18) requires scaffold planks to be inspected before each use and removed from service if damaged.

Are double-planked scaffolds (two planks side by side) twice as strong as single planks?

Two side-by-side planks do not act as a composite unit — they act as two independent beams unless they are mechanically fastened together in a way that forces them to share load in bending. Unattached side-by-side planks each carry their share of the load independently. The practical effect: if a worker stands at the edge of one plank, that plank carries the majority of the load — the adjacent plank contributes little unless the load is applied in the center of both planks together. Double planks do provide redundancy (if one plank splits, the other remains) and increase the total platform width, reducing the chance of a worker's foot landing on the gap. But for span calculations, use the span table for a single plank — do not double the capacity for side-by-side arrangement.

What is the OSHA requirement for scaffold plank inspection?

OSHA 1926.451(f)(3) requires that scaffolds be inspected by a competent person before each work shift and after any occurrence that could affect the scaffold's structural integrity (rain, wind, impact, settling). For scaffold planks specifically: inspect for splits, checks, knots at the tension face (bottom face in bending), damaged ends that reduce overhang, missing or illegible scaffold-grade marks, and any visual sign of rot, mold, or degradation. OSHA 1926.451(b)(18) requires removing any damaged plank from service immediately. Encode scaffold_plank.inspection_frequency = 'before-each-shift' as a service requirement metafield to enable AI agents to include inspection cadence in scaffold component recommendations.

Score Your Store's Scaffold Plank Listings

CatalogScan checks for scaffold_plank.scaffold_grade_marked, scaffold_plank.working_load_psf, and 16 other AI-agent-critical fields. See which scaffold plank listings are missing critical lumber grade and span data.

Run Free Scan