Roof Rain Load and Secondary-Drainage Flow (ASCE 7 Ch. 8)

The load that collapses flat roofs: standing water at the blocked-primary case.

Run the calculator

Example

You enter

You get

Details, formula, and sources

ASCE 7 Ch. 8 puts the rain load at 5.2 psf per inch of head - R = 5.2 x (static head to the secondary inlet + hydraulic head above it at design flow) - and the optional IPC design flow Q = 0.0104 x area x rainfall sizes the secondary drainage. Doubling the head to the overflow doubles the load, which makes the secondary inlet height a structural decision, not just a plumbing one. A flat roof must also pass the §8.4 ponding-instability check. A load and flow aid, not a stamped roof-drainage design.

rain_load_psf = 5.2 x (static_head_in + hydraulic_head_in); design_flow_gpm = (roof_area > 0 && rainfall > 0) ? 0.0104 x roof_area_ft2 x rainfall_in_hr : null.

ASCE 7 Ch. 8 rain load (R = 5.2 x (ds + dh)) and the IPC roof-drainage design flow (Q = 0.0104 x A x i), by name; the 5.2 psf/in (62.4 pcf / 12) and 0.0104 gpm/(ft^2 in/hr) are named constants.

The rain-load relation is in the published ASCE 7 Ch. 8; the roof-drainage design flow is the IPC relation; the constants are public. The arithmetic is public.

Estimate. AHJ and licensed professional govern.

Field names used by the API: static_head_in, hydraulic_head_in, roof_area_ft2, rainfall_in_hr, rain_load_psf, design_flow_gpm

Related tools