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 : 0

Bars Along Width

bars_short = spacing > 0 ? floor(net_length / spacing) + 1 : 0

Total Bars (both directions)

total_bars = spacing > 0 ? (floor(net_width / spacing) + 1) + (floor(net_length / spacing) + 1) : 0

Variables

VariableDescriptionDefault
total_lengthSlab/Wall Length(ft)20
total_widthSlab/Wall Width(ft)12
spacingRebar Spacing(in)12
edge_offsetEdge Offset(in)3
net_lengthDerived value= total_length * 12 - 2 * edge_offsetcalculated
net_widthDerived value= total_width * 12 - 2 * edge_offsetcalculated

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
  1. 01Net length = 240 - 6 = 234 in
  2. 02Net width = 144 - 6 = 138 in
  3. 03Bars along length = floor(138/12) + 1 = 12
  4. 04Bars along width = floor(234/12) + 1 = 20
  5. 05Total = 12 + 20 = 32 bars

Ready to run the numbers?

Open Rebar Layout Spacing Calculator