I need help finding an equation that the Navy's Physical Readiness Program Office (PRIMS) keeps unpublished for some unexplainable reason and will not share after numorous requests. Anyways, luckily, I have access to a calculator where I can input two variables ( weight, calories burnt) and it returns the equivalent run time. There are two fitness events which require this machine to run-time equation, those are stationary bike and ellipticals. The elliptical equation was simple to recreate in javascript because I found a PDF explaining the conversion. This is shown below, however, the conversion for the stationary bike is what I can't find.
The equation to convert elliptical calories burnt into a run-time goes like this:
- Conduct a 12-min ET bout.
- Obtain the machine calorie report, while correcting for machine bias: a. Add 0 kcal for bouts on the Lifefitness 9500 HR. b. Add 20 kcal for bouts on Nautilus Model E9 16. c. Add 7 kcal for bouts on Precor Model EFX 556.
- Divide the calorie report from Step 2 by 12 to get energy production rate in kcal/min.
- Multiply the test subject’s weight in pounds by 1.09 to determine the total energy required to run 1.5 mi.
- Divide the result of Step 4 by the result of Step 3 to obtain the raw run time estimate in a decimal format.
- Multiply the decimal portion of Step 5 by 60 to convert it to seconds. The result is the raw run time estimate expressed as min:sec.
- Obtain the run time equivalent for the ET bout by adding 1:08 min for a male test subject or 2:15 for a female test subject.
- Use the run test standards in the PRT instruction to convert the run time equivalent to a PRT score.
The above shows an expanded version of the equation: Raw Run Time Estimate = (13.08*Weight)/Machine Calorie Report , plus 68 (1:08,mm:ss) or 135 (2:15,mm:ss) to correct for gender bias.
The above was taken from http://www.dtic.mil/dtic/tr/fulltext/u2/a462116.pdf
The equation to convert statinary bike calories burnt into a run-time goes like this: ? ? ? ? ?
This is where I am stuck.
In the case anyone is wondering what the purpose for this conversion is, it's two part: 1) curiosity, and 2) the last part of a IOS/Android/Windows phonegap application that I am making available to Sailors for free.
Thanks, I'm not the greatest a math, I can produce tables of the produced run time, weight, and calorie varibles if necessary.