0

I'm developing a school project (I'm studying software engineering) and it's about a sharing bicycles company. We need to calculate the total amount of necessary energy to travel from one point to another and the amount of k/calories burned by the user.

I need some help calculating the amount of kilocalories. I have these values as an example:

  • User + bicycle = 85kg
  • Distance: 1000m
  • Inclination: 10%
  • Duration: 180 seconds
  • Speed: (around) 5.5 m/s
  • Rolling resistance (coefficient): 0.004
  • 1 kcal = 4186.8 J

My main problem is that the amount of kilocalories given by my calculations is around 334, which is huge.

Qmechanic
  • 220,844

1 Answers1

1

You are leaving out a lot of variables, in particular air resistance (calculations here):

For example, in going from 7.5 mph to 20 mph:

  1. mechanical resistance increases by 225%
  2. rolling resistance by 363%
  3. air resistance by 1800%.

and also how efficient the body is converting energy. According to another Physics.SE answer this is about 20% - see : How efficient is the human body?

Now ignoring all that and assuming air resistance is zero, the energy required to move the cyclist (and bike) is the same as the energy burned by the cyclist and nothing else (inertia for example) is involved then you should be looking at around 14 kcal.

There is a nice calculator here where you can check against your calculations.

enter image description here

lx07
  • 113