Calories Burn Calculator

.cal-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; border: 1px solid #e0e0e0; border-radius: 12px; background-color: #ffffff; box-shadow: 0 4px 6px rgba(0,0,0,0.05); color: #333; } .cal-header { text-align: center; margin-bottom: 30px; } .cal-header h2 { color: #2c3e50; margin-bottom: 10px; } .cal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 25px; } .cal-group { display: flex; flex-direction: column; } .cal-group label { font-weight: 600; margin-bottom: 8px; font-size: 14px; color: #4a5568; } .cal-group input, .cal-group select { padding: 12px; border: 1px solid #cbd5e0; border-radius: 6px; font-size: 16px; transition: border-color 0.2s; } .cal-group input:focus, .cal-group select:focus { border-color: #4a90e2; outline: none; } .cal-btn { grid-column: span 2; background-color: #27ae60; color: white; padding: 15px; border: none; border-radius: 6px; font-size: 18px; font-weight: bold; cursor: pointer; transition: background-color 0.2s; } .cal-btn:hover { background-color: #219150; } .cal-result { margin-top: 30px; padding: 20px; background-color: #f8fafc; border-radius: 8px; text-align: center; display: none; } .cal-result h3 { margin: 0; color: #2c3e50; font-size: 1.2rem; } .cal-value { font-size: 2.5rem; font-weight: 800; color: #27ae60; margin: 10px 0; } .cal-article { margin-top: 40px; line-height: 1.6; color: #4a5568; } .cal-article h2 { color: #2d3748; margin-top: 25px; } .cal-article h3 { color: #4a5568; margin-top: 20px; } .cal-article ul { padding-left: 20px; } .cal-article table { width: 100%; border-collapse: collapse; margin: 20px 0; } .cal-article th, .cal-article td { border: 1px solid #e2e8f0; padding: 12px; text-align: left; } .cal-article th { background-color: #f7fafc; } @media (max-width: 600px) { .cal-grid { grid-template-columns: 1fr; } .cal-btn { grid-column: 1; } }

Calories Burned Calculator

Estimate the number of calories burned during your workout or daily activities.

Kilograms (kg) Pounds (lbs)
Walking (Brisk – 3.5 mph) Running (Moderate – 5 mph) Running (Fast – 7 mph) Cycling (Moderate – 12-14 mph) Cycling (Fast – 16-19 mph) Swimming (Freestyle – Light) Swimming (Freestyle – Vigorous) Weightlifting (General) Yoga / Pilates HIIT / Circuit Training Aerobics (Low Impact) Tennis Basketball Soccer / Football

Estimated Calories Burned

0

How Does This Calories Burned Calculator Work?

Our calculator uses the MET (Metabolic Equivalent of Task) method to estimate energy expenditure. MET is a physiological measure expressing the energy cost of specific physical activities. One MET is defined as the energy you spend sitting at rest—your resting metabolic rate.

The Formula Used

To calculate the calories burned, we use the following scientific formula:

Total Calories = (MET × Weight in kg × Duration in hours)

Common MET Values for Popular Activities

Activity MET Value
Strolling (2 mph) 2.0
Brisk Walking (3.5 mph) 3.5
Hiking 6.0
Running (6 mph) 9.8
Bicycling (14-16 mph) 10.0

Factors That Affect Calories Burned

  • Body Weight: Larger individuals require more energy to move their mass, thus burning more calories doing the same activity as a lighter person.
  • Intensity: The harder you push yourself, the higher the MET value, and the more calories you burn per minute.
  • Duration: Simply put, the longer you perform an activity, the higher your total energy expenditure.
  • Basal Metabolic Rate (BMR): Your age, gender, and muscle mass affect how many calories you burn even while resting.

Example Calculation

If a person weighs 180 lbs (approx. 81.6 kg) and runs at a moderate pace (MET 8.0) for 45 minutes:

  • Convert duration to hours: 45 / 60 = 0.75 hours.
  • Calculation: 8.0 (MET) × 81.6 (kg) × 0.75 (hours) = 489.6 calories.

Frequently Asked Questions

Is this calculator 100% accurate?

While the MET formula is scientifically grounded, it provides an estimate. Individual variations in metabolism, body composition (fat vs. muscle), and external conditions like temperature or terrain aren't factored into this basic calculation.

Does muscle mass help burn more calories?

Yes. Muscle tissue is more metabolically active than fat tissue. Even at rest, individuals with higher muscle mass will burn more calories than those with higher body fat percentages.

function calculateCaloriesBurned() { var weight = parseFloat(document.getElementById("userWeight").value); var unit = document.getElementById("weightUnit").value; var duration = parseFloat(document.getElementById("activityDuration").value); var met = parseFloat(document.getElementById("activityType").value); var resultBox = document.getElementById("resultBox"); var output = document.getElementById("caloriesOutput"); var summary = document.getElementById("summaryText"); if (isNaN(weight) || weight <= 0 || isNaN(duration) || duration <= 0) { alert("Please enter valid positive numbers for weight and duration."); return; } // Convert weight to kg if it's in lbs var weightInKg = weight; if (unit === "lbs") { weightInKg = weight * 0.453592; } // Formula: Calories = MET * Weight(kg) * Time(hours) var durationInHours = duration / 60; var totalCalories = met * weightInKg * durationInHours; // Round to nearest whole number var finalResult = Math.round(totalCalories); // Display results output.innerText = finalResult + " kcal"; summary.innerText = "Based on a MET value of " + met + " and a duration of " + duration + " minutes."; resultBox.style.display = "block"; // Scroll to result smoothly resultBox.scrollIntoView({ behavior: 'smooth', block: 'nearest' }); }

Leave a Comment