Enter your pulse rate when fully at rest (BPM) for higher accuracy using the Karvonen formula.
Your Fat Burning Zone
— BPM
function calculateFatBurn() {
var ageInput = document.getElementById('fb_age');
var rhrInput = document.getElementById('fb_rhr');
var resultBox = document.getElementById('fb_result');
var zoneDisplay = document.getElementById('zone_display');
var maxHrDisplay = document.getElementById('max_hr_display');
var methodDisplay = document.getElementById('method_display');
var age = parseFloat(ageInput.value);
var rhr = parseFloat(rhrInput.value);
// Validation
if (!age || isNaN(age) || age 120) {
alert("Please enter a valid age between 10 and 120.");
return;
}
var maxHR = 220 – age;
var minZone, maxZone, methodText;
// Logic Selection: Karvonen vs Standard
if (!isNaN(rhr) && rhr > 30 && rhr < 150) {
// Karvonen Method
// Target Heart Rate = ((Max HR − Resting HR) × %Intensity) + Resting HR
var hrr = maxHR – rhr; // Heart Rate Reserve
// Fat burning zone is typically 60% to 70%
minZone = Math.round((hrr * 0.60) + rhr);
maxZone = Math.round((hrr * 0.70) + rhr);
methodText = "Calculation based on the Karvonen Method (using Resting Heart Rate).";
} else {
// Standard Method (MHR percentage)
// Fat burning zone is typically 60% to 70% of Max HR
minZone = Math.round(maxHR * 0.60);
maxZone = Math.round(maxHR * 0.70);
methodText = "Calculation based on Standard Max Heart Rate Method (220 – Age).";
}
// Display Results
resultBox.style.display = "block";
zoneDisplay.innerHTML = minZone + " – " + maxZone + " BPM";
maxHrDisplay.innerHTML = "Your estimated Maximum Heart Rate is " + maxHR + " BPM.";
methodDisplay.innerHTML = methodText;
}
What Is the Fat Burning Heart Rate?
The Fat Burning Heart Rate refers to a specific physiological intensity zone where your body primarily utilizes stored fat as its fuel source rather than glycogen (carbohydrates). For most individuals, this "sweet spot" occurs when exercising at approximately 60% to 70% of their maximum heart rate (MHR).
When you exercise at lower intensities, your body has enough oxygen available to break down fat for energy. As intensity increases (like during sprinting or heavy lifting), the body switches to carbohydrates because they can be burned more quickly without as much oxygen. This is why knowing your specific heart rate numbers is crucial for weight management goals.
Key Concept: While high-intensity workouts burn more calories overall, the percentage of calories coming from fat is highest in the lower-intensity Fat Burning Zone. This makes it ideal for endurance training and sustainable weight loss.
How the Calculator Works
This calculator uses two primary methods to determine your optimal training zone, depending on the data you provide:
1. The Standard Method (Age-Based)
If you only provide your age, the calculator uses the traditional formula: 220 - Age = Maximum Heart Rate. It then calculates 60% and 70% of that number. While simple, this is a general estimation.
2. The Karvonen Method (Preferred)
If you enter your Resting Heart Rate (RHR), the calculator uses the Karvonen formula. This is considered more accurate because it takes your current fitness level into account. The formula calculates your Heart Rate Reserve (the difference between your max and resting rates) to tailor the zones specifically to your cardiovascular efficiency.
Heart Rate Training Zones Chart
Understanding where the fat burning zone sits in relation to other training zones can help you structure your weekly workout routine.
Zone
Intensity (% of Max)
Primary Benefit
Warm Up
50% – 60%
Recovery, circulation, preparation.
Fat Burning
60% – 70%
Maximal fat oxidation, endurance base.
Aerobic
70% – 80%
Cardiovascular fitness, aerobic power.
Anaerobic
80% – 90%
Lactic acid tolerance, high-speed endurance.
VO2 Max
90% – 100%
Peak performance, short burst speed.
Tips for Reaching Your Target Zone
The Talk Test: If you are in the fat burning zone, you should be breathing heavier than normal but still able to carry on a conversation without gasping for air.
Consistency is Key: Because this zone is lower intensity, you can often sustain it for longer durations (45+ minutes), which is necessary to burn a significant amount of total fat.
Measure Your Resting Heart Rate: To get the most accurate result from the calculator above, measure your pulse immediately after waking up in the morning, before getting out of bed.
Use Technology: While manual pulse checks work, a chest strap or wrist-based fitness tracker can provide real-time feedback to ensure you stay within your calculated 60-70% window.
Common Myths About the Fat Burning Zone
Myth: You won't burn fat at high intensities.
Fact: You still burn fat at high intensities, but the percentage is lower. However, high-intensity interval training (HIIT) can burn more total calories in a shorter time and elevate your metabolism after the workout (the "afterburn" effect). A balanced program often includes both steady-state fat burning cardio and occasional high-intensity sessions.