Rebar Layout Spacing Calculator Formula
Understand the math behind the rebar layout spacing calculator. Each variable explained with a worked example.
Formulas Used
Bars Along Length
bars_long = spacing > 0 ? floor(net_width / spacing) + 1 : 0Bars Along Width
bars_short = spacing > 0 ? floor(net_length / spacing) + 1 : 0Total Bars (both directions)
total_bars = spacing > 0 ? (floor(net_width / spacing) + 1) + (floor(net_length / spacing) + 1) : 0Variables
| Variable | Description | Default |
|---|---|---|
total_length | Slab/Wall Length(ft) | 20 |
total_width | Slab/Wall Width(ft) | 12 |
spacing | Rebar Spacing(in) | 12 |
edge_offset | Edge Offset(in) | 3 |
net_length | Derived value= total_length * 12 - 2 * edge_offset | calculated |
net_width | Derived value= total_width * 12 - 2 * edge_offset | calculated |
How It Works
Rebar Layout
Bars in One Direction = floor((Dimension - 2 x Offset) / Spacing) + 1
Rebar is placed in a grid pattern with bars running in both directions. The edge offset (typically 2 to 3 inches) keeps rebar away from the form edges for adequate concrete cover.
Worked Example
20 x 12 ft slab, 12-inch spacing, 3-inch edge offset.
total_length = 20total_width = 12spacing = 12edge_offset = 3
- 01Net length = 240 - 6 = 234 in
- 02Net width = 144 - 6 = 138 in
- 03Bars along length = floor(138/12) + 1 = 12
- 04Bars along width = floor(234/12) + 1 = 20
- 05Total = 12 + 20 = 32 bars
Ready to run the numbers?
Open Rebar Layout Spacing Calculator