Understanding your water flow rate is essential for sizing irrigation systems, choosing shower heads, or diagnosing plumbing issues. The flow rate measures the volume of water that passes through a fixture in a specific amount of time.
Flow Rate (LPM) = (Volume in Litres / Time in Seconds) × 60
The "Bucket Test" Method
The most accurate way to measure water flow at home is the bucket test. Follow these steps:
Get a container of a known size (e.g., a 10-litre bucket).
Turn your tap or shower on fully.
Use a stopwatch to time how many seconds it takes to fill the bucket to the brim.
Input the volume and the time into the calculator above to find your LPM.
Practical Example
If you fill a 5-litre container in 15 seconds, the calculation would be:
5 Litres / 15 Seconds = 0.333 Litres per second.
0.333 × 60 = 20 Litres per minute.
Typical Flow Rates
For household fixtures, common flow rates usually fall into these ranges:
Standard Shower: 9 – 15 LPM
Water-saving Shower: 6 – 9 LPM
Kitchen Tap: 6 – 12 LPM
Outdoor Hose: 20 – 40+ LPM
function calculateFlowRate() {
var volume = document.getElementById('waterVolume').value;
var seconds = document.getElementById('timeSeconds').value;
var resultDiv = document.getElementById('flow-result');
var output = document.getElementById('lpmOutput');
if (volume > 0 && seconds > 0) {
var v = parseFloat(volume);
var s = parseFloat(seconds);
// Calculation: (Volume / Seconds) * 60 = Litres Per Minute
var lpm = (v / s) * 60;
output.innerText = lpm.toFixed(2);
resultDiv.style.display = 'block';
// Smooth scroll to result
resultDiv.scrollIntoView({ behavior: 'smooth', block: 'nearest' });
} else {
alert("Please enter valid positive numbers for both volume and time.");
resultDiv.style.display = 'none';
}
}