Jake Morrison, Licensed General Contractor · Last reviewed May 21, 2026

Sonotube Calculator

Plan the full pour — concrete volume (cu ft + cu yd), tube count by diameter, 60 and 80 lb bag count, #4 vertical rebar, #3 ties, and total delivery weight. Climate-region frost-line gate is built in so you catch the depth problem before the inspector does.

Sonotube calculator: enter pier diameter, depth, and count to plan a concrete pour

Maryland, Delaware, southern Pennsylvania, southern Ohio, Kentucky, Missouri, Kansas.

%

Industry-standard 10% covers spillage + slumping

Pier group 1

The most common DIY deck footing. Standard deck-pier size for most ledger-attached residential decks.

ft
piers

Pick your climate region, then enter pier diameter, depth, and count to see concrete volume, tube count, bag count, rebar, and total delivery weight.

Estimates only. Concrete footings supporting structures (decks, pergolas, pole barns) typically require permits + inspection in most US jurisdictions — talk to your local building department before you pour. Frost depth, soil bearing capacity, structure load, and seismic zone all affect the engineering. This calculator gives you a strong budgetary starting point for the BOM and delivery, not a permit-ready spec.

How to use this calculator

  1. Pick your climate region. The calculator uses the regional frost-depth midpoint from the NOAA / NWS frost map and IRC Appendix Tables. Florida is 0″ (bearing only); Gulf Coast / Southern is 6–12″; Mid-Atlantic / Lower Midwest is 18–24″; Upper Midwest / New England is 36–48″; the Mountain North hits 60″+. Your local building department has the authoritative number — but the regional default is the right starting point.
  2. Pick your tube diameter. Standard Sonotube SKUs are 6, 8, 10, 12, 14, 16, 18, 20, and 24 inches. Most residential decks use 10–12″ piers; pole barns and post-frame use 14–18″; mailbox and fence posts use 6–8″. Each preset shows what it's typically for.
  3. Enter tube depth. Depth has to clear your local frost line. The calculator surfaces an orange banner if your depth is shallower than the region minimum — that's the most common deck-footing inspection-failure mode in the US, and not one calculator on the SERP top 10 warns about it.
  4. Enter the number of piers. A standard 12×16 deck typically has 6 piers. A 24×40 pole barn has 12 columns (six per long side). A pergola has 4. The calculator multiplies through.
  5. Add another pier group if your project mixes sizes. Real projects often have larger corner piers + smaller interior piers. Add up to 5 groups — the calculator sums concrete, tubes, bags, and rebar across all of them.
  6. Watch for the ready-mix banner. Past 1 cu yd total volume, short-load ready-mix delivery becomes faster, more consistent, and usually cheaper than mixing bags by hand. Most suppliers will deliver as little as ¾ cu yd with a small short-load surcharge — call ahead to confirm.
  7. Read the BOM and print. Six line items: tubes (by diameter), concrete (cu ft + cu yd), 60 lb bag count, 80 lb bag count, vertical #4 rebar (count + total feet), and #3 tie rings (count + total feet). Plus total delivery weight. The printable PDF is branded, dated, and stamps "FROST-LINE INSPECTION GATE" when applicable.

Why this Sonotube calculator is different

After running the top-10 SERP through the same project (6-pier deck, 12″ × 48″ Sonotubes, Mid-Atlantic), here's what's typical online versus what this calculator adds:

  • Most calculators stop at cubic yards. Sonotube.com, Concrete Network, Calculator.net, Inchcalc, and Omnicalc all give you a cubic-yard number and stop. The actual order needs the cubic yards + 60 lb bag count + 80 lb bag count + tube count (which sizes? how many of each?) + vertical rebar BOM + #3 tie rings + delivery weight. Every online result ships 20–30% of what you actually need to buy.
  • None of them surfaces the frost-line gate. IRC R403.1.4.1 requires footings extend below the local frost line — typical depths range from 0″ in Florida to 60″ in the Mountain North. Three of the five People Also Ask questions on this SERP are about depth ("How deep should a sonotube be for a deck?"). Not a single top-10 result enforces this in the UI. This calculator picks frost depth by climate region and flashes an orange banner the moment your entered depth is too shallow — that's the single biggest deck-footing inspection-failure mode in the US.
  • None handles multi-pier projects. Real footing projects are clusters — 6 deck piers, 12 pole-barn columns, 4 corners + 6 interior, etc. Top 10 are all single-tube calculators. This calculator sums up to five pier groups.
  • None outputs rebar. Sonotube's own install guide and NRMCA TB-101 spec rebar for piers ≥10″ diameter (4 #4 vertical bars + #3 ties every 12″). The top 10 calculators don't mention rebar at all — and homeowners who skip it fail inspection or end up with cracking piers.
  • None shows the ready-mix vs bag breakpoint. Past ~1 cu yd, bag mixing becomes uneconomical (and inconsistent). Short-load ready-mix delivery is faster, more reliable, and usually cheaper. The SERP top 10 doesn't say this. We do, with a green banner.
  • None returns total delivery weight. A 6-pier 12″ × 48″ project is ~18 cu ft or about 2,830 lb. Pole-barn projects are easily 10,000+ lb. That's the difference between a wheelbarrow + mix-on-site afternoon and a ready-mix truck appointment. None of the SERP top 10 surfaces this. We do, in lbs and tons.
  • Nobody offers an embed. If you write about decks, pole barns, or DIY footings (/r/Decks, /r/DIY, /r/HomeImprovement, deck-builder blog, pole-barn-kit dealer, concrete supplier), the iframe at the bottom of this page lets you host the same calculator with attribution. Free.

How it works (the math behind the numbers)

The core calc is straightforward — cylinder volume, bag yield, and rebar spec — but the SERP top 10 only does the first one.

For each pier-group:
  radius_ft       = (diameter_in / 12) / 2
  volume_per_pier = π × radius_ft² × depth_ft   (cu ft)
  group_volume   = volume_per_pier × pier_count

Aggregate (across all groups):
  total_volume_cuft = sum(group_volume)
  total_volume_cuyd = total_volume_cuft / 27
  bags_60lb         = ceil(total_volume_cuft / 0.45 × (1 + waste_pct))
  bags_80lb         = ceil(total_volume_cuft / 0.60 × (1 + waste_pct))
  ready_mix         = total_volume_cuyd ≥ 1.0

Rebar per pier (NRMCA TB-101):
  vertical_bars    = (diameter_in ≥ 10) ? 4 : 2
  vertical_lf      = vertical_bars × (depth_ft + 0.5)   (6" stick-up for beam tie-in)
  tie_count        = (depth_ft > 1) ? ceil(depth_ft) : 1   (one #3 tie ring per ft)
  tie_diameter_in  = diameter_in - 6                    (3" cover each side)
  tie_lf           = tie_count × π × tie_diameter_in / 12

Total delivery weight:
  concrete_weight_lb = total_volume_cuft × 150         (PCA-standard 4,000 psi normal-weight)
  total_lb           = round(concrete_weight_lb)
  total_tons         = total_lb / 2000

Frost-line gate (IRC R403.1.4.1):
  if min(depth_ft × 12 across all groups) < region.frost_line_in → set below_frost = true
  if max(depth_ft) > 6 → set engineer_recommended = true

60 and 80 lb bag yields come from the Quikrete and Sakrete published bag-yield tables — Quikrete 5000, Concrete Mix, and Sakrete Maximizer all share the same yields (0.45 cu ft for a 60 lb bag, 0.60 cu ft for an 80 lb bag). The same numbers are on the back of every bag at the supplier.

Rebar spec follows NRMCA Technical Bulletin TB-101 for residential piers and footings: 4 #4 vertical bars for piers ≥10″ diameter, 2 #4 bars for smaller piers, and one #3 tie ring every 12″ of depth. The tie ring diameter is the pier diameter minus 6″ (3″ concrete cover each side).

Frost-line gate is the unique safety lever. IRC R403.1.4.1 requires footings extend below the locally-determined frost line. The calculator uses regional midpoints from the NOAA / NWS frost map — your local building department has the legal number for your address. The orange banner flashes when your entered depth is shallower than the regional minimum.

Concrete density of 150 lb/cu ft is the PCA-standard normal-weight value for residential 4,000 psi mix. That's what governs the delivery weight; gross weight on a flatbed (with truck + tubes + rebar) is typically 15–25% higher.

Every fixture in sites/diy/src/data/tools/sonotube-calculator/fixtures.json runs in CI before each deploy. If the math drifts, the build fails.

Three real-world examples

Standard 12 × 16 deck — 6 × 12″ × 48″ piers in the Mid-Atlantic

A typical mid-size single-story deck. 6 piers, 12″ Sonotube, 48″ deep (clears the 18″ Mid-Atlantic frost minimum by a comfortable margin). The calculator returns: 18.85 cu ft / 0.70 cu yd of concrete, 47 × 60 lb bags or 35 × 80 lb bags, 6 × 12″ tubes, 24 vertical #4 bars (108 ft total), 24 #3 tie rings (38 ft total), total weight 2,827 lb (1.4 t). Below the ready-mix breakpoint, so bag mixing on-site is reasonable — but it's a long afternoon with a drill + paddle and an extra set of hands. Right at the edge where renting a tow-behind mixer starts to make sense.

40 × 60 pole barn — 12 × 14″ × 60″ columns in Upper Midwest

A workhorse 2,400-sqft pole barn. 12 columns (6 per long side), 14″ Sonotube, 60″ deep (matches the 36″ Upper Midwest frost minimum with 24″ to spare). The calculator returns: 64.14 cu ft / 2.38 cu yd of concrete, ready-mix recommended, 12 × 14″ tubes, 48 vertical #4 bars (264 ft total), 60 #3 tie rings (126 ft total), total weight 9,621 lb (4.81 t). The green banner fires — past the bag breakpoint. Order short-load ready-mix from a local supplier (most will deliver 3 yd with a $50–$150 short-load fee, which beats mixing 118 × 80 lb bags by a wide margin). Schedule the pour for a single half-day with a pump if the truck can't reach.

Deep pole-barn footings (engineer-required) — 8 × 16″ × 84″ in Upper Midwest

A heavy-load post-frame structure on poor soil. 8 footings, 16″ Sonotube, 84″ deep (well clear of the 36″ Upper Midwest frost minimum — but past the engineer-recommended threshold). The blue engineer banner fires. The math still runs: 97.74 cu ft / 3.62 cu yd, ready-mix recommended, 8 × 16″ tubes, 32 vertical #4 bars (240 ft total), 56 #3 ties (147 ft total), total weight 14,661 lb (7.33 t). Take the printable PDF to your local engineer for the soil-specific bearing capacity check, surcharge analysis, and seismic / wind-uplift detail. Expect $400–$1,500 for the stamp depending on geography. Permit territory in every US jurisdiction at this depth.

What affects how much you actually need

The calculator gives you a strong starting point, but a real pour has variables it can't see:

  • Local frost depth. The regional defaults are NOAA / NWS midpoints — your address might be deeper. Local building departments have the legal number, and it's worth a phone call before you order tubes. Northern Wisconsin, Maine, and inland Minnesota all have pockets that go to 60″+.
  • Soil bearing capacity. The calculator assumes typical residential native soil (~1,500 psf bearing). Soft clay, peat, expansive clay, and saturated soil all need engineer review and probably wider footings (bell-bottom or pad) at the base. If your test hole fills with water, you have a drainage problem before you have a footing problem.
  • Surcharges and structure loads. A two-story deck with a hot tub puts a different load on each pier than a single-story 8 × 10 platform. Heavy snow loads (above 50 psf ground snow) shift things further. The IRC tables work for typical 40 psf live + 10 psf dead deck loads — anything outside that is engineer territory.
  • Concrete strength. The calculator assumes 4,000 psi normal-weight residential mix (the default for Quikrete 5000 + most short-load ready-mix). Heavy structural piers may spec 5,000 or 6,000 psi — same volume, different mix design at the supplier.
  • Tube bracing and plumb. A tube that's out of plumb at the top is a column that's eccentric at the base — every load gets multiplied. Brace every tube top and middle with 2 × 4s tied off to grade stakes before you pour. The calculator can't see your bracing.
  • Pour temperature. Below 40°F or above 90°F, concrete behaves differently — needs hot-water mix in cold weather, retarder + ice in hot weather. Plan around the forecast or wait. Cured strength is set in the first 24 hours.
  • Permit and inspection schedule. Most US jurisdictions require an inspection of the open hole + rebar cage before the pour, not after. Schedule that inspection at least 3 days in advance and have your permit on-site when the inspector arrives.

For the tools that actually do the work — bag mixing, formwork bracing, plumb checks — see Jake's writeups on cordless drills (the paddle attachment is what mixes the bags; a brushless 18V drill handles a 60 lb bag in 90 seconds). Driving formwork bracing lag screws is impact-driver territory — a drill works but you'll be wrist-sore by pier four. Most footing jobs are nowhere near an outlet — a portable generator powers the mixer, charger, lights, and the wet saw if you need to trim a tube. Dust from bag mixing wrecks household vacuums; a shop vac handles the cleanup. Multi-day pour jobs need lockable site storage from a tool chest. The full kit lives in essential tools for new homeowners.

Frequently asked questions

How many bags of concrete do I need for a 12-inch sonotube?

For a 12″ diameter Sonotube at 48″ deep, you need ~3.14 cu ft of concrete per pier. That's about 8 × 60 lb bags or 6 × 80 lb bags per pier with 10% waste included. For a 6-pier deck, that's ~47 × 60 lb bags or 35 × 80 lb bags. At 4 ft depth you stay below the ready-mix breakpoint; the bag route is feasible. At deeper / wider tubes or larger pier counts, ready-mix delivery is faster and cheaper — use the calculator above to see where the breakpoint falls for your project.

How deep should a sonotube be for a deck?

Deep enough to clear your local frost line — full stop. IRC R403.1.4.1 requires footings extend below the locally-determined frost depth, with a hard minimum of 12″ (bearing) regardless of frost. Typical depths: Florida 12″ (bearing only); Gulf Coast / Southern 12–18″; Mid-Atlantic 24–36″; Upper Midwest 36–48″; New England 48″; Mountain North 60″+. Your local building department has the legal number for your address. The calculator above picks the regional default and warns if your entered depth is too shallow — but for an actual permit, call your jurisdiction.

Do I need rebar in a sonotube footing?

For piers 10″ diameter and larger, yes — NRMCA Technical Bulletin TB-101 specs 4 #4 vertical bars per pier, with #3 tie rings every 12″ of depth. Smaller piers (6″, 8″) typically take 2 #4 vertical bars. The vertical bars stick up 6″ above grade for tying into the deck beam (or post bracket); the tie rings are at the pier diameter minus 6″ to maintain 3″ concrete cover on each side. Skipping rebar is the second-most-common inspection-failure mode after frost-line depth — and even when it passes inspection, unreinforced piers crack at the freeze line. The calculator above gives you the full bar count and total linear feet to order from the supplier.

What's the difference between Quikrete and ready-mix for sonotubes?

Quikrete (and Sakrete and store-brand 4,000 psi bag mix) is dry-bag concrete you mix on-site with a paddle attachment in a drill or a tow-behind mixer. Ready-mix is delivered pre-mixed in the rotating drum truck. The breakpoint is roughly 1 cu yd total volume. Below that, bag mixing is reasonable — call it 1.5–2 hours per cu yd with two helpers + a tow-behind. Above 1 cu yd, ready-mix is faster, more consistent, and usually cheaper (short-load delivery fees of $50–$150 are way less than the time and waste of mixing 80+ bags by hand). The green banner on the calculator above tells you when you've crossed the line.

Can I embed this Sonotube calculator on my site?

Yes — copy the iframe snippet at the bottom of this page. The embedded version is a stripped-down variant designed for /r/Decks, /r/DIY, /r/HomeImprovement, deck-builder blogs, pole-barn-kit dealer sites, concrete supplier sites, and hardscape contractor sites. Required attribution is built in. Free, no signup, no analytics attached to the embed.

  • Retaining Wall Calculator — multi-segment block, cap, base aggregate, drainage stone, and adhesive BOM for the segmental wall going next to your new deck or pole barn
  • Lumber Calculator — studs, plates, joists, headers, and sheathing for the deck or barn going on top of your Sonotube piers
  • Brick Calculator — multi-wall brick + mortar BOM for masonry skirting or veneer on a pier-and-beam structure
  • Fence Calculator — posts, rails, pickets, and concrete bag count for the fence around your project
  • Browse all free tools by Jake →

Sonotube footing work has a specific tool list that overlaps with general concrete work but isn't identical. Beyond the auger or post-hole digger, here's what's on every Morrison-Construction footing job:

  • Best Cordless Drills — paddle-mix bag concrete (60 lb in ~90 seconds with a brushless 18V), drill formwork bracing pilot holes, drive grade-stake screws. The single most-used tool on any pier pour.
  • Best Impact Drivers — driving formwork lag screws and plumbing-brace screws faster than a drill. Keep your tubes vertical before the pour without wrist fatigue.
  • Best Portable Generators — most footing jobs aren't near an outlet. Mixer, drill chargers, lights, and wet saw (if you need to trim a tube) all need power.
  • Best Shop Vacs — bag-mix dust and hole-bottom cleanup before you drop the rebar cage. Household vacuums die fast on concrete dust.
  • Best Tool Chests — multi-day pour jobs need lockable on-site storage. Levels, plumb lines, rebar tying wire, and the impact driver live there between work sessions.
  • Best LED Shop Lights — pre-dawn pours and dusk cleanup. Concrete cures on the truck's schedule, not yours; good light extends the work window.
  • Essential Tools for New Homeowners — the 12-tool starter kit Jake recommends before any DIY concrete or hardscape project.

Sources & methodology

This calculator is reviewed annually for source currency. About Jake · Last reviewed May 21, 2026.

Embed this tool on your site

Free for /r/Decks, /r/DIY, /r/HomeImprovement, deck-builder blogs, pole-barn-kit dealers, concrete supplier sites, and hardscape contractor sites. Required attribution is included in the snippet. No fee, no account, no analytics attached to the embed.

<iframe
  src="https://diyrated.com/sonotube-calculator/embed/"
  width="100%"
  height="820"
  loading="lazy"
  style="border:1px solid #e5dcd0; border-radius:16px; max-width:720px;"
  title="Sonotube Calculator (DIYRated)">
</iframe>
<p style="font-size:12px;color:#666;margin-top:8px">
  Sonotube calculator by
  <a href="https://diyrated.com/sonotube-calculator/">DIYRated</a>
  &middot; Reviewed by Jake Morrison, Licensed GC
</p>