Lorsss
mod. Username: Lorsss
Staff
- Joined
- Sep 19, 2018
- Posts
- 10,736
- Reputation
- 18,797
this is my source, an italian bodybuilding site
PART 1
Buy a bodyfat caliper from an ecommerce site (the caliper must measure millimiters and not inches)
PART 2
measure the skinfolds in theese spots. be sure to fold all the fat in your fingers.
TRICEP
in order to misurate this skinfold the caliper must be kept horizontal, then fold the skin in the middle of your homerus
ABDOMEN
the caliper is horizontal, fold the skin next to your belly button
SUPRAILIAC SKINFOLD
the caliper is oblique, fold the skin above the pelvis bone
SUBSCAPULAR SKINFOLD
the caliper is 60 degrees oblique, fold the skin in the lower corner of the scapula
ARMPIT SKINFOLD
the caliper is horizontal and at the same level of the xifoid bone
PECTORAL SKINFOLD
the caliper is oblique, fold the skin between the nipple and the armpit
PART 3
Python code to compute bodyfat
Copy and paste the code on this website https://www.online-python.com/ and run it
Original mathematical formulas to calculate your bodyfat
Theese are the original methmatical formulas which are implemented by the programming code above.
"sum" is defined as the sum of all skinfolds in millimiters
density=1.112 - (0.00043499*sum) + (0.00000055*sum*sum))-(0.00028826*21);
your bodyfat = (495/density) -450
PART 1
Buy a bodyfat caliper from an ecommerce site (the caliper must measure millimiters and not inches)
PART 2
measure the skinfolds in theese spots. be sure to fold all the fat in your fingers.
TRICEP
in order to misurate this skinfold the caliper must be kept horizontal, then fold the skin in the middle of your homerus
ABDOMEN
the caliper is horizontal, fold the skin next to your belly button
SUPRAILIAC SKINFOLD
the caliper is oblique, fold the skin above the pelvis bone
SUBSCAPULAR SKINFOLD
the caliper is 60 degrees oblique, fold the skin in the lower corner of the scapula
ARMPIT SKINFOLD
the caliper is horizontal and at the same level of the xifoid bone
PECTORAL SKINFOLD
the caliper is oblique, fold the skin between the nipple and the armpit
PART 3
Python code to compute bodyfat
Copy and paste the code on this website https://www.online-python.com/ and run it
Python:
triceps = float(input('insert tricep skin fold size in millimeters'))
abdomen = float(input('insert abdomen skin fold size in millimeters'))
suprailiac = float(input('insert suprailiac skin fold size in millimeters'))
subscapular = float(input('insert subscapular skin fold'))
armpit = float(input('insert armpit skin fold size'))
pectoral = float(input('insert the size of pectoral skin fold'))
thigh = float(input('insert the size of thigh skin fold'))
sum = triceps+abdomen+suprailiac+subscapular+armpit+pectoral+thigh
density = 1.112 - (0.00043499*sum) + (0.00000055*pow(sum,2))-(0.00028826*21)
output = (495/density) -450
print('Yout bodyfat is',output,'%')
Original mathematical formulas to calculate your bodyfat
Theese are the original methmatical formulas which are implemented by the programming code above.
"sum" is defined as the sum of all skinfolds in millimiters
density=1.112 - (0.00043499*sum) + (0.00000055*sum*sum))-(0.00028826*21);
your bodyfat = (495/density) -450
Last edited: