Shuttering Board Calculator: Precise Formwork Quantity Estimates for Concrete Slabs

Shuttering Board Calculator: Precise Formwork Quantity Estimates for Concrete Slabs

Professional-grade calculation tools for construction contractors. Instantly determine PAC Shuttering Board quantities, cost breakdowns, and material logistics for slab formwork projects of any dimension.

Stop Guessing Shuttering Board Quantities—Calculate Exactly What You Need

Formwork failure mid-pour costs money. Ordering excess shuttering boards wastes cash. PAC Shuttering Boards eliminate both problems with precision engineering and predictable repetition cycles. This calculator shows you exactly how many boards your next slab needs—and what it costs.

Why contractors use this tool: Eliminates guesswork. Prevents waste. Prevents shortages. Delivers GST-ready cost breakdowns for your accounts team.

Interactive Shuttering Board Calculator

Enter your slab dimensions below. The calculator instantly returns board quantity, weight, and cost estimates based on live PAC Shuttering Board pricing.

Slab Dimensions




function calculateShuttering() {
const length = parseFloat(document.getElementById(‘slab-length’).value);
const width = parseFloat(document.getElementById(‘slab-width’).value);
const boardType = document.getElementById(‘board-type’).value;

if (!length || !width || !boardType) {
alert(‘Please enter slab dimensions and select a board type.’);
return;
}

// Pricing and weight per sheet (8×4 = 32 sq.ft)
const boardData = {
standard: { price: 2560, weight: 40, pricePerSqFt: 80 },
premium: { price: 2880, weight: 45, pricePerSqFt: 90 },
column: { price: 4000, weight: 55, pricePerSqFt: 125 }
};

const board = boardData[boardType];
const sheetArea = 32; // 8ft × 4ft
const totalArea = length * width;
const wasteArea = totalArea * 1.12; // 12% waste factor
const sheetsNeeded = Math.ceil(wasteArea / sheetArea);
const totalWeight = sheetsNeeded * board.weight;
const totalCost = sheetsNeeded * board.price;

document.getElementById(‘result-area’).textContent = totalArea.toFixed(0);
document.getElementById(‘result-boards’).textContent = sheetsNeeded;
document.getElementById(‘result-weight’).textContent = totalWeight.toLocaleString(‘en-IN’);
document.getElementById(‘result-price-per’).textContent = board.price.toLocaleString(‘en-IN’);
document.getElementById(‘result-total’).textContent = totalCost.toLocaleString(‘en-IN’);

document.getElementById(‘calc-results’).style.display = ‘block’;
}

Worked Examples: Common Slab Dimensions

Below are real-world calculations for standard slab sizes. Use these as benchmarks for your own projects.

Example 1: 6×6 Feet Residential Slab (12-inch depth)

Project type: Residential floor pour | Board variant: Standard 12mm PAC Shuttering Board

Calculation Steps

  1. Slab Area: 6 ft × 6 ft = 36 sq. feet
  2. Add 12% waste (edge trimming, cuts): 36 × 1.12 = 40.32 sq. feet
  3. Sheet size: 8 ft × 4 ft = 32 sq. feet per sheet
  4. Sheets required: 40.32 ÷ 32 = 1.26 → Round up to 2 sheets
  5. Weight: 2 sheets × 40 kg = 80 kg
  6. Material cost: 2 sheets × ₹2,560 = ₹5,120 (excl. GST)
ParameterValue
Total Slab Area36 sq. ft
PAC Boards Required2 sheets
Total Weight80 kg
Cost (excl. GST)₹5,120

Practical note: For a 6×6 slab, you’ll also need edge props, centering pins, and bracing lumber (not included in this estimate). PAC boards strip cleanly in 24–36 hours at ambient temperature; no stripping agents needed.

Example 2: 10×10 Feet Commercial Floor Slab (10-inch depth)

Project type: Multi-story commercial building | Board variant: Standard 12mm PAC Shuttering Board

Calculation Steps

  1. Slab Area: 10 ft × 10 ft = 100 sq. feet
  2. Add 12% waste: 100 × 1.12 = 112 sq. feet
  3. Sheets required: 112 ÷ 32 = 3.5 → Round up to 4 sheets
  4. Weight: 4 sheets × 40 kg = 160 kg
  5. Material cost (no discount): 4 sheets × ₹2,560 = ₹10,240 (excl. GST)
  6. With 5% volume discount (10+ sheets across project): ₹10,240 × 0.95 = ₹9,728
ParameterValue
Total Slab Area100 sq. ft
PAC Boards Required4 sheets
Total Weight160 kg
Cost (standard)₹10,240
Cost with 5% volume discount₹9,728

Practical note: Standard PAC 12mm boards deliver 30–40 repetitions. On a 10-story building,

Scroll to Top