Calories Expenditure Calculator

.cal-container { max-width: 800px; margin: 20px auto; padding: 25px; background-color: #ffffff; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; color: #333; line-height: 1.6; } .cal-header { text-align: center; margin-bottom: 30px; } .cal-header h2 { color: #2c3e50; font-size: 28px; margin-bottom: 10px; } .cal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 25px; } @media (max-width: 600px) { .cal-grid { grid-template-columns: 1fr; } } .cal-group { display: flex; flex-direction: column; } .cal-group label { font-weight: 600; margin-bottom: 8px; color: #444; } .cal-group input, .cal-group select { padding: 12px; border: 2px solid #e0e0e0; border-radius: 8px; font-size: 16px; transition: border-color 0.3s; } .cal-group input:focus, .cal-group select:focus { border-color: #3498db; outline: none; } .cal-btn { width: 100%; background-color: #27ae60; color: white; border: none; padding: 15px; font-size: 18px; font-weight: bold; border-radius: 8px; cursor: pointer; transition: background-color 0.3s; margin-top: 10px; } .cal-btn:hover { background-color: #219150; } .cal-result-box { margin-top: 30px; padding: 20px; background-color: #f8f9fa; border-left: 5px solid #27ae60; border-radius: 4px; display: none; } .cal-result-box h3 { margin-top: 0; color: #2c3e50; } .cal-stat { font-size: 24px; font-weight: bold; color: #27ae60; } .cal-article { margin-top: 40px; border-top: 1px solid #eee; padding-top: 30px; } .cal-article h2 { color: #2c3e50; font-size: 24px; } .cal-article h3 { color: #34495e; font-size: 20px; margin-top: 25px; } .cal-table { width: 100%; border-collapse: collapse; margin: 20px 0; } .cal-table th, .cal-table td { padding: 12px; border: 1px solid #ddd; text-align: left; } .cal-table th { background-color: #f2f2f2; }

Calories Expenditure Calculator

Calculate your Total Daily Energy Expenditure (TDEE) based on your BMR and activity level.

Male Female
Sedentary (Little or no exercise) Lightly Active (Exercise 1-3 days/week) Moderately Active (Exercise 3-5 days/week) Very Active (Exercise 6-7 days/week) Extra Active (Hard exercise/Physical job)

Your Results

Your Basal Metabolic Rate (BMR) is: 0 calories

Your Total Daily Energy Expenditure (TDEE) is: 0 calories

This is the number of calories you need to consume daily to maintain your current weight.

Understanding Calorie Expenditure

Calorie expenditure, also known as Total Daily Energy Expenditure (TDEE), is the total number of calories your body burns in a 24-hour period. This includes everything from the energy used to keep your heart beating while you sleep to the calories burned during a high-intensity workout.

How It Is Calculated

This calculator uses the Mifflin-St Jeor Equation, which is widely considered the most accurate formula for estimating metabolic rate. The calculation involves two main steps:

  1. Basal Metabolic Rate (BMR): The energy required to maintain vital body functions at rest.
  2. Activity Factor: A multiplier applied to the BMR based on your physical activity level.

The Formulas

The BMR formulas used are as follows:

  • Men: BMR = (10 × weight in kg) + (6.25 × height in cm) – (5 × age in years) + 5
  • Women: BMR = (10 × weight in kg) + (6.25 × height in cm) – (5 × age in years) – 161

Daily Caloric Goals

Goal Caloric Adjustment
Weight Maintenance Eat 100% of your TDEE
Weight Loss (Slow) Eat 90% of your TDEE (10% deficit)
Weight Loss (Standard) Eat 80% of your TDEE (20% deficit)
Weight Gain (Muscle Building) Eat 110% of your TDEE (10% surplus)

Why Knowing Your TDEE Matters

Whether your goal is to lose fat, build muscle, or maintain your current physique, your calorie expenditure is the foundation of your nutrition plan. By knowing your "maintenance calories" (TDEE), you can make informed decisions about your portion sizes and macro-nutrient distribution. Remember that these are estimates; individual metabolism can vary based on muscle mass, genetics, and health conditions.

function calculateCalories() { var gender = document.getElementById('gender').value; var age = parseFloat(document.getElementById('age').value); var weight = parseFloat(document.getElementById('weight').value); var height = parseFloat(document.getElementById('height').value); var activity = parseFloat(document.getElementById('activity').value); if (isNaN(age) || isNaN(weight) || isNaN(height)) { alert("Please enter valid numbers for age, weight, and height."); return; } var bmr = 0; if (gender === "male") { bmr = (10 * weight) + (6.25 * height) – (5 * age) + 5; } else { bmr = (10 * weight) + (6.25 * height) – (5 * age) – 161; } var tdee = bmr * activity; document.getElementById('bmrVal').innerText = Math.round(bmr).toLocaleString(); document.getElementById('tdeeVal').innerText = Math.round(tdee).toLocaleString(); document.getElementById('resultBox').style.display = 'block'; // Scroll to results on mobile if (window.innerWidth < 600) { document.getElementById('resultBox').scrollIntoView({ behavior: 'smooth' }); } }

Leave a Comment