Calculate consumption speed and estimated depletion time.
The amount of inventory, data, or material used historically.
Days
Weeks
Months
The duration over which the consumption occurred.
Enter current balance to calculate days until depletion.
Please enter valid positive numbers for consumption and time.
Usage Rate (Per Selected Unit)
–
Daily Usage Rate–
Weekly Usage Rate–
Monthly Usage Rate–
Time Until Depletion–
function calculateUsageRate() {
// Get Inputs
var consumption = document.getElementById('totalConsumption').value;
var period = document.getElementById('timePeriod').value;
var unit = document.getElementById('timeUnit').value;
var stock = document.getElementById('currentStock').value;
var errorMsg = document.getElementById('error-message');
var resultsArea = document.getElementById('results-area');
// Validation
if (consumption === "" || period === "" || parseFloat(period) 0 && dailyRate > 0) {
depletionDiv.style.display = 'block';
var daysLeft = stockVal / dailyRate;
var timeString = "";
if (daysLeft < 30) {
timeString = fmt(daysLeft) + " Days";
} else if (daysLeft < 365) {
timeString = fmt(daysLeft / 30.416) + " Months";
} else {
timeString = fmt(daysLeft / 365) + " Years";
}
resDepletion.innerHTML = timeString;
} else {
depletionDiv.style.display = 'none';
}
}
What is Usage Rate?
Usage Rate (also known as consumption rate or burn rate) is a fundamental metric used in inventory management, SaaS business models, and manufacturing. It quantifies the speed at which a resource, stock, or service is consumed over a specific period of time.
Understanding your usage rate is critical for forecasting, preventing stockouts, and managing cash flow. Whether you are tracking raw materials in a warehouse, data usage on a network plan, or toilet paper inventory for a facility, calculating the usage rate helps you answer the question: "How long will my current supply last?"
The Usage Rate Formula
To calculate the usage rate, you simply divide the total quantity consumed by the time period during which the consumption occurred.
Formula: Usage Rate = Total Quantity Consumed ÷ Time Period
Once you have the daily usage rate, you can forecast when you will run out of stock using the depletion formula:
Depletion Formula: Days Until Empty = Current Stock Level ÷ Daily Usage Rate
Real-World Examples
1. Inventory Management
A coffee shop goes through 500 lbs of coffee beans in 30 days. To find the daily usage rate:
Total Used: 500 lbs
Time: 30 Days
Calculation: 500 / 30 = 16.67 lbs per day.
If they currently have 200 lbs in stock, they have approximately 12 days of supply left (200 / 16.67).
2. Manufacturing Consumables
A factory uses 50 gallons of lubricant over a 2-week production cycle.
Total Used: 50 gallons
Time: 14 days (2 weeks)
Calculation: 50 / 14 = 3.57 gallons per day.
Why is accurate calculation important?
Reorder Points: Set accurate triggers for reordering stock based on actual consumption speed rather than guessing.
Budgeting: Understanding volume usage helps in negotiating bulk contracts with suppliers.
Anomaly Detection: A sudden spike in usage rate can indicate theft, leaks, or process inefficiencies.
Frequently Asked Questions
Does this calculator work for liquids?
Yes. The unit of measurement (lbs, gallons, units, liters) does not affect the math. Just ensure you use the same unit for "Total Quantity Consumed" and "Current Stock".
How do I handle irregular usage?
If your usage varies wildly (e.g., seasonal businesses), it is best to calculate the usage rate over a longer period (e.g., 3 to 6 months) to find a reliable average.