Triathlon Taren Heart Rate Calculator

Triathlon Taren Heart Rate Calculator .tthr-calculator-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; max-width: 650px; margin: 20px auto; padding: 30px; background: #ffffff; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); border: 1px solid #e0e0e0; } .tthr-calculator-container h2 { text-align: center; color: #2c3e50; margin-bottom: 25px; font-size: 24px; } .tthr-form-group { margin-bottom: 20px; } .tthr-label { display: block; margin-bottom: 8px; font-weight: 600; color: #34495e; } .tthr-input, .tthr-select { width: 100%; padding: 12px; border: 1px solid #cbd5e0; border-radius: 6px; font-size: 16px; box-sizing: border-box; transition: border-color 0.2s; } .tthr-input:focus, .tthr-select:focus { border-color: #3498db; outline: none; box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1); } .tthr-btn { display: block; width: 100%; background-color: #e74c3c; color: white; padding: 14px; border: none; border-radius: 6px; font-size: 18px; font-weight: bold; cursor: pointer; transition: background-color 0.2s; margin-top: 10px; } .tthr-btn:hover { background-color: #c0392b; } .tthr-result-box { margin-top: 25px; padding: 20px; background-color: #f8f9fa; border-radius: 8px; border-left: 5px solid #e74c3c; display: none; } .tthr-result-item { margin-bottom: 15px; border-bottom: 1px solid #eee; padding-bottom: 10px; } .tthr-result-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; } .tthr-result-label { font-size: 14px; color: #7f8c8d; text-transform: uppercase; letter-spacing: 0.5px; } .tthr-result-value { font-size: 28px; font-weight: 700; color: #2c3e50; margin-top: 5px; } .tthr-zone-desc { font-size: 14px; color: #555; margin-top: 5px; font-style: italic; } .tthr-article { max-width: 650px; margin: 40px auto; font-family: inherit; line-height: 1.6; color: #333; } .tthr-article h3 { color: #2c3e50; margin-top: 30px; border-bottom: 2px solid #e74c3c; display: inline-block; padding-bottom: 5px; } .tthr-article p { margin-bottom: 15px; } .tthr-article ul { margin-bottom: 15px; padding-left: 20px; } .tthr-article li { margin-bottom: 8px; } .error-msg { color: #e74c3c; font-size: 14px; margin-top: 5px; display: none; }

Triathlon Taren Heart Rate Calculator (MAF)

Please enter a valid age between 10 and 100.
Standard (Training regularly, no major issues) Recovering from major illness/surgery/medication Frequent injuries, illness, asthma, or inconsistent training Training consistently for 2+ years with progress & no injury
Max Aerobic Heart Rate (MAF)
0 bpm
This is your hard ceiling for Zone 2 training. Do not exceed this number during base runs.
Target Aerobic Training Zone
0 – 0 bpm
Keep your heart rate within this range for 80% of your training volume.
function calculateTarenZone() { // Get Inputs var ageInput = document.getElementById('athleteAge'); var healthSelect = document.getElementById('healthStatus'); var resultBox = document.getElementById('tthrResult'); var ageError = document.getElementById('ageError'); var age = parseInt(ageInput.value); var adjustment = parseInt(healthSelect.value); // Reset Error ageError.style.display = 'none'; resultBox.style.display = 'none'; // Validation if (isNaN(age) || age 100) { ageError.style.display = 'block'; return; } // Calculation Logic (180 Formula) // 1. Start with 180 // 2. Subtract Age // 3. Apply Adjustment var baseFormula = 180; var mafHeartRate = baseFormula – age + adjustment; // Calculate the Zone Range (Usually MAF-10 to MAF) var lowerZoneLimit = mafHeartRate – 10; // Validating logical output (Heart rate shouldn't be absurdly low/high) if (mafHeartRate < 100) mafHeartRate = 100; // Fail-safe floor if (lowerZoneLimit < 90) lowerZoneLimit = 90; // Update UI document.getElementById('mafResult').innerText = mafHeartRate; document.getElementById('zoneRange').innerText = lowerZoneLimit + " – " + mafHeartRate; // Show Results resultBox.style.display = 'block'; }

Understanding the Triathlon Taren Heart Rate Method

The Triathlon Taren (Mottiv) heart rate philosophy is heavily grounded in the Maffetone Method, also known as the 180 Formula. This approach prioritizes building a massive aerobic engine by training at a low heart rate, often referred to as "Zone 2" training. For age-group triathletes, this method helps prevent injury, reduces burnout, and ultimately leads to faster race times by increasing fat adaptation.

Why Use Low Heart Rate Training?

Many triathletes make the mistake of training in the "Grey Zone" (Zone 3)—too hard to recover from efficiently, but too easy to elicit top-end speed adaptations. The Triathlon Taren calculator helps you find your specific Maximum Aerobic Function (MAF) heart rate. By keeping your heart rate below this number for the majority of your training (approx. 80/20 rule), you improve your body's ability to use fat as fuel, sparing glycogen for the later stages of a race.

How the Calculation Works

The formula begins with the number 180. From there, you subtract your age. However, simply subtracting your age isn't enough; you must adjust for your physiological history. This calculator applies the standard adjustments used in this methodology:

  • -10 bpm: If you are recovering from a major illness (like heart disease) or surgery.
  • -5 bpm: If you are injured, regress in training often, get sick more than twice a year, or suffer from asthma.
  • 0 bpm: If you have been training consistently (at least 4 times a week) for up to two years without any of the problems listed above.
  • +5 bpm: If you have been training for more than two years without problems and have made measurable progress in competition.

Using Your Results

Once you have your MAF Heart Rate calculated above, this number becomes your "ceiling." During your long runs and bike rides, your goal is to stay within the range provided (usually 10 beats below your MAF up to the MAF number). If your heart rate spikes above this number, you must slow down or walk until it drops back into the zone. Over time, you will find yourself running faster at the same low heart rate—a clear sign of increased aerobic efficiency.

Leave a Comment