Burn Rate Calculation Pmp

Project Burn Rate Calculator (PMP)

This calculator helps project managers estimate the burn rate of a project, which is the rate at which a project's budget is spent over time. Understanding your burn rate is crucial for effective project cost management and forecasting.

(Enter the total allocated budget for the project)
(Enter the total planned duration of the project in months)
function calculateBurnRate() { var totalBudget = parseFloat(document.getElementById("totalBudget").value); var projectDuration = parseFloat(document.getElementById("projectDuration").value); var resultDiv = document.getElementById("result"); resultDiv.innerHTML = ""; // Clear previous results if (isNaN(totalBudget) || isNaN(projectDuration) || totalBudget <= 0 || projectDuration <= 0) { resultDiv.innerHTML = "Please enter valid positive numbers for Total Budget and Project Duration."; return; } var burnRate = totalBudget / projectDuration; resultDiv.innerHTML = "Your project's estimated burn rate is: " + burnRate.toFixed(2) + " per month."; } .calculator-container { font-family: Arial, sans-serif; border: 1px solid #ddd; padding: 20px; border-radius: 8px; max-width: 500px; margin: 20px auto; background-color: #f9f9f9; } .calculator-container h2 { text-align: center; color: #333; margin-bottom: 20px; } .input-section { margin-bottom: 15px; display: flex; flex-direction: column; } .input-section label { margin-bottom: 5px; font-weight: bold; color: #555; } .input-section input[type="number"] { padding: 10px; border: 1px solid #ccc; border-radius: 4px; font-size: 1rem; } .input-section span { font-size: 0.85rem; color: #777; margin-top: 5px; } .calculator-container button { background-color: #4CAF50; color: white; padding: 12px 20px; border: none; border-radius: 4px; cursor: pointer; font-size: 1rem; width: 100%; margin-top: 10px; } .calculator-container button:hover { background-color: #45a049; } .result-section { margin-top: 20px; padding: 15px; background-color: #eef; border: 1px solid #dde; border-radius: 4px; text-align: center; color: #333; } .result-section p { margin: 0; font-size: 1.1rem; } .result-section strong { color: #007bff; }

Leave a Comment