Concrete Calculator

concrete calculator
Rectangular Slab / WallCircular Column / Cylinder
Estimated Concrete Required:
Total Volume: Cubic Yards
Cubic Feet: ft³
Number of 80lb Bags:
Number of 60lb Bags:
function toggleInputs(){var shape=document.getElementById('shape_type').value;if(shape==='slab'){document.getElementById('row_length').style.display='table-row';document.getElementById('row_width').style.display='table-row';document.getElementById('row_diameter').style.display='none';document.getElementById('label_thick').innerHTML='Thickness (inches):';}else{document.getElementById('row_length').style.display='none';document.getElementById('row_width').style.display='none';document.getElementById('row_diameter').style.display='table-row';document.getElementById('label_thick').innerHTML='Depth / Height (feet):';}}function calculateConcrete(){var shape=document.getElementById('shape_type').value;var waste=parseFloat(document.getElementById('waste').value)||0;var cubicFeet=0;if(shape==='slab'){var l=parseFloat(document.getElementById('length').value);var w=parseFloat(document.getElementById('width').value);var t=parseFloat(document.getElementById('thickness').value)/12;if(isNaN(l)||isNaN(w)||isNaN(t)){alert('Please enter valid dimensions');return;}cubicFeet=l*w*t;}else{var d=parseFloat(document.getElementById('diameter').value);var h=parseFloat(document.getElementById('thickness').value);if(isNaN(d)||isNaN(h)){alert('Please enter valid dimensions');return;}var radius=d/2;cubicFeet=Math.PI*Math.pow(radius,2)*h;}cubicFeet=cubicFeet*(1+(waste/100));var cubicYards=cubicFeet/27;var bags80=Math.ceil(cubicFeet/0.60);var bags60=Math.ceil(cubicFeet/0.45);document.getElementById('yardage').innerHTML=cubicYards.toFixed(2);document.getElementById('cubicfeet').innerHTML=cubicFeet.toFixed(2);document.getElementById('bags80').innerHTML=bags80;document.getElementById('bags60').innerHTML=bags60;document.getElementById('calculatorAnswer').style.display='block';if(document.getElementById('showBags').checked){document.getElementById('bagResults').style.display='block';}else{document.getElementById('bagResults').style.display='none';}}function resetCalculator(){document.getElementById('calculatorAnswer').style.display='none';}

How to Use the Concrete Calculator

Ordering the correct amount of concrete is essential for any construction project, whether you are pouring a new backyard patio, a driveway, or footings for a fence. This concrete calculator helps you estimate the total volume of concrete needed in cubic yards and cubic feet, while also providing the number of pre-mixed bags required if you are doing the work yourself.

To get started, follow these simple steps:

Select Project Shape
Choose "Rectangular Slab" for squares, rectangles, or walls. Choose "Circular Column" for round post holes or cylindrical pillars.
Enter Dimensions
Input the length, width, and thickness. Note that for slabs, thickness is usually measured in inches, while for columns, depth is measured in feet.
Waste Allowance
Concrete projects often involve some loss due to spills, uneven subgrades, or variations in formwork. A standard waste factor is 5% to 10%.

How It Works: The Formulas

The math behind a concrete calculator depends on the geometry of the pour. Concrete is typically sold by the cubic yard, which is equal to 27 cubic feet.

Rectangular Slab Formula

Volume (ft³) = Length (ft) × Width (ft) × [Thickness (in) / 12]

To convert the result to cubic yards, divide the total cubic feet by 27.

Circular Column Formula

Volume (ft³) = π × Radius² × Depth (ft)

  • π (Pi): Approximately 3.14159
  • Radius: Half of the diameter of the hole
  • Depth: The vertical height of the column

Calculation Example

Example: Imagine you are pouring a concrete patio that is 12 feet long, 10 feet wide, and 4 inches thick. You want to include a 10% waste factor.

Step-by-step solution:

  1. Convert thickness to feet: 4 inches / 12 = 0.333 feet.
  2. Calculate base volume: 12 ft × 10 ft × 0.333 ft = 40 cubic feet.
  3. Add 10% waste: 40 × 1.10 = 44 cubic feet.
  4. Convert to yards: 44 / 27 = 1.63 cubic yards.
  5. Bags (80lb): 44 / 0.60 = 74 bags.

Common Concrete Questions

How many 80lb bags are in a cubic yard?

It takes approximately 45 bags of 80lb pre-mixed concrete to fill one cubic yard. For 60lb bags, you will need approximately 60 bags.

How thick should a concrete driveway be?

For standard passenger vehicles, a thickness of 4 inches is standard. If you expect heavy-duty trucks or equipment to use the driveway regularly, 5 to 6 inches is recommended for increased load-bearing capacity.

What is a standard waste factor?

Most professionals use a 10% waste factor. This accounts for variations in the ground depth (the ground is rarely perfectly flat) and material left inside the mixer or pump.

Leave a Comment