Energy Conversion (and losses from)
Energy conversion is when a form of energy is changed into another form of energy.
For example, your robot battery stores chemical energy. When you attach a motor
to your battery, this chemical energy is converted to spin motors which then
creates rotational mechanical energy.
As a robot builder, you want to have as few possible conversions as possible.
Why is this? Because no conversion is 100% efficient. This is why motors get hot -
thermal energy losses that provide no benefit! As a matter of fact, you can typically
expect most conversions to be between 30% and 70% efficient. That's a huge loss
in energy!
Let me give you a good example on this, a specific example that you should
be able to relate to. And I'm apologizing now for those who think
electric cars will save the world . . .
So suppose I ask you which is more efficient, an electric car or gasoline powered car?
I would make the argument that a gasoline-powered car is significantly more efficient,
and hence wastes much less energy. What is the basis for my argument? Well,
energy conversion efficiency!
Lets start off with how to power the electric car:
Coal at a power plant (chemical energy) is burned (thermal energy) to expand water vapor gas to
spin a turbine (mechanical energy) which acts as a generator to create electricity
(electrical energy) which is then stored in your car battery (chemical energy)
and then used to power the car motors (electrical energy) to provide mechanical motion (mechanical energy).
Counting, that's 7 forms of energy with 6 conversions. Assuming each conversion
is on average 70% efficient, thats:
efficiency^(conversions) = final efficiency
or
.7^6 = .118 = 11.8% efficient
Now for a gasoline powered car:
Gasoline is stored in your car (chemical energy) and ignited in the engine (thermal energy)
to expand gasses to push pistons (mechanical energy) that rotate your car wheels.
Counting again, that's 3 forms of energy with 2 conversions. Assuming each conversion
is on average 70% efficient, that's:
efficiency^(conversions) = final efficiency
or
.7^2 = .49 = 49% efficient
I want to stress this is a simplified example and not proof that gasoline powered cars are lesser/greater polluters than
electric cars.
In reality, the typical conversion efficiency of a typical power plant is around 30%,
with yet more losses are experienced when transporting electricity down power lines. Combustion engines have
very low efficiencies, too.
And then there are yet more energy losses such as with trucking in gasoline/coal to various locations, etc.
So if you wanted to calculate a conversion loss for a battery-powered robot,
you would do say:
90% battery to electricity
60% electricity to mechanical motion
Therefore:
Battery energy after conversion = Battery_Energy * efficiencyA * efficiencyB . . .
or
= Battery_Energy * .9 * .6
So to calculate loss of energy from conversion,
Battery_Energy*(1 - efficiencyA * efficiencyB) = Energy Loss
Final Equation
Summing up everything you learned we can now form a general equation for calculating
required energy for your robot:
Required_Energy
= 2 * Kinetic_Energy
+ Potential_Energy
+ Energy_Losses
+ Conversion_Losses
or filled out:
Required_Energy
= mass * velocity^2
+ mass * gravity * height
+ deceleration_rate * distance traveled * (1/2 * mass * velocity^2)
+ Battery_Energy * (1 - efficiencyA * efficiencyB)
or solved for Battery_Energy:
voltage * mAh * 60 * 60 / 1000
= mass * (velocity^2 + gravity * height
+ deceleration_rate * distance traveled * 1/2 * velocity^2)
/ (efficiencyA * efficiencyB)
If your robot makes a lot of stop/start motions, multiply Required_Energy
by that number of motions while distance equals the distance between each motion.