Jump to content

Calories Burned in Running


themax90
 Share

Recommended Posts

This will calculate (According to your weight) the approximate calories burned over a set length.

This does not include metabolism and is VERY approximate. I run 5 miles a day and just wanted to know how much I burned. Hopefully someone might be able to use this.

Func RunCal($Weight, $Length, $WeightType = 0, $LengthType = 0)
    ; Approximate Calories Lost
    ; 0 = Metric System (Kilograms, Kilometers)
    ; 1 = American System (Pounds, Miles)
    ; Returns Array $Data[0] = Calories, $Data[1] = Calories Per Mile
    If $WeightType = 1 Then $Weight = ($Weight / 2.2)
    If $LengthType = 1 Then $Length = ($Length * 1.61)
    Local $Data[2]
    $Data[0] = ($Length * $Weight * 1.036)
    $Data[1] = ($Data[0] / $Length)
    Return $Data
EndFunc

AutoIt Smith

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...