Difference between revisions of "Relative Running Economy"

From Fellrnr.com, Running tips
Jump to: navigation, search
User:Fellrnr (User talk:Fellrnr | contribs)
m (Created page with ' <html> <style type="text/css"> table.sample { border-width: 1px; border-spacing: 2px; border-style: outset; border-color: gray; border-collapse: collapse; background-colo…')
 
User:Fellrnr (User talk:Fellrnr | contribs)
m
Line 1: Line 1:
 
+
==Introduction==
 +
There are two components to running ability; fitness and economy. Fitness is the ability of our bodies to generate energy for running and is the focus of a lot of our training. Economy is how far and fast you can run with a given amount of energy. Good economy is a critical part of running, and [Cadence] is one element I focus on.
 +
==Measuring Efficiency==
 +
In an ideal world, we’d be able to easily measure our running economy and see if things are improving. If we could measure our breath, find out how much O<sub>2</sub> we consumed and how much CO<sub>2</sub> we produce, we’d know how much energy we burned (and from fat or carbohydrate). Sadly, this is not practical, so the best measure we have of energy consumption is our heart rate. This is far from perfect, as heart rate can vary for other reasons besides supplying O<sub>2</sub> for energy production. However, I believe it is a useful approximation.
 +
==The Calculator==
 +
Assuming you know the distance you ran, your average heart rate and the time it took, you can calculate your efficiency. If you know your resting heart rate, enter that as well to optimize the calculation.
  
 
<html>
 
<html>
Line 45: Line 50:
 
         </table>
 
         </table>
 
         </td>
 
         </td>
 +
      </tr>
 +
      <tr>
 
         <td>Average Heart Rate</td>
 
         <td>Average Heart Rate</td>
 
         <td><input maxlength="3" size="3" name="AverageHeartRate" value="150"></td>
 
         <td><input maxlength="3" size="3" name="AverageHeartRate" value="150"></td>
 +
      </tr>
 +
      <tr>
 
         <td>Resting Heart Rate</td>
 
         <td>Resting Heart Rate</td>
 
         <td><input maxlength="3" size="3" name="RestingHeartRate" value="40"></td>
 
         <td><input maxlength="3" size="3" name="RestingHeartRate" value="40"></td>
 +
      </tr>
 +
      <tr>
 
         <td>Distance (miles)</td>
 
         <td>Distance (miles)</td>
 
         <td><input maxlength="3" size="3" name="Distance" value="1"></td>
 
         <td><input maxlength="3" size="3" name="Distance" value="1"></td>
Line 55: Line 66:
 
   <button name="Calculate">Calculate</button><br>
 
   <button name="Calculate">Calculate</button><br>
 
</html>
 
</html>
 +
==The Efficiency Calculation==
 +
The formula that is used is<br>
 +
<code>
 +
Total Beats = (Average Heart Rate – Resting Heart Rate) * Time in Minutes
 +
Work Per Mile = Total Beats / Distance in Miles
 +
Efficiency = 1 / Work Per Mile * 100,000
 +
</code>

Revision as of 15:05, 24 December 2010

1 Introduction

There are two components to running ability; fitness and economy. Fitness is the ability of our bodies to generate energy for running and is the focus of a lot of our training. Economy is how far and fast you can run with a given amount of energy. Good economy is a critical part of running, and [Cadence] is one element I focus on.

2 Measuring Efficiency

In an ideal world, we’d be able to easily measure our running economy and see if things are improving. If we could measure our breath, find out how much O2 we consumed and how much CO2 we produce, we’d know how much energy we burned (and from fat or carbohydrate). Sadly, this is not practical, so the best measure we have of energy consumption is our heart rate. This is far from perfect, as heart rate can vary for other reasons besides supplying O2 for energy production. However, I believe it is a useful approximation.

3 The Calculator

Assuming you know the distance you ran, your average heart rate and the time it took, you can calculate your efficiency. If you know your resting heart rate, enter that as well to optimize the calculation.

Time

Hours Minutes Seconds
Average Heart Rate
Resting Heart Rate
Distance (miles)

4 The Efficiency Calculation

The formula that is used is
Total Beats = (Average Heart Rate – Resting Heart Rate) * Time in Minutes Work Per Mile = Total Beats / Distance in Miles Efficiency = 1 / Work Per Mile * 100,000