How to calculate motor force from power?

  • #1
30
0
There is car, that has motor with power P. From power I can calculate motor work per time:
[itex]A = P*\Delta t[/itex]

P - power, A-work, [itex]\Delta t[/itex] - time interval.

[itex]\Delta t[/itex] and P are known (calculations are performing by discrete time steps).

Now, I want to calculate force F, that will produce car's moving. I.e. I need some function [itex]F=tadam(A)[/itex].

My attempts to solve

If motor will change only kinetic energy [itex]E_k[/itex], calculations can be like this (assuming, that body not moving yet, i.e. [itex]v_1 = 0[/itex]):

[itex]A = \Delta E_k = m*v_2^2/2 - m*v_1^2/2 = m*v_2^2/2[/itex]

[itex]v_2 = \sqrt{2*A/m}[/itex]

[itex]a = \frac{v_2-v_1}{\Delta t} = \frac{v2}{\Delta t} = \frac{\sqrt{2*A/m}}{\Delta t}[/itex]

[itex]F = m*a = \frac{m*\sqrt{2*A/m}}{\Delta t} = \frac{\sqrt{2*A*m}}{\Delta t}[/itex]

If motor will change only potential energy [itex]E_p[/itex], calculation can be like this:

[itex]A = \Delta E_p = m*g*\Delta h[/itex]

[itex]A = F*\Delta h[/itex]

[itex]F = m*g[/itex]

But, these calculations are not that I need, because I feel, that F should not depend on mass. What difference for motor, which mass has the car? I think, that force should be equal in any case. Is my feeling wrong? Why?

Context: I am developing a game, using physics engine Box2D. There I know motor power, and need force, that I will apply to the car body, by call
Code:
car->applyForce(force)
.
 

Answers and Replies

  • #2
What difference for motor, which mass has the car?

Put a 1 litre engine in a Mini and it will accelerate to 100km/hr fairly quickly.
Put the same 1 litre engine engine in a Kenworth truck and it will hardly move.
The mass has a huge effect on acceleration.
 
  • #3
Power = force x velocity
This gives you the relationship for a car moving at steady velocity.
 
  • #4
Hello all, I am another author of the question.

Put a 1 litre engine in a Mini and it will accelerate to 100km/hr fairly quickly.
Put the same 1 litre engine engine in a Kenworth truck and it will hardly move.
The mass has a huge effect on acceleration.

DesmondD, yes, mass has a huge effect on acceleration, but what effect it has on motor force? If I put force 10H to body with mass = 1, it will has acceleration [itex]10m/s^2[/itex] and if I put same force 10H to body with mass = 100, it will has acceleration [itex]0.1m/s^2[/itex]. I think, that motor *force* should not depend on mass. Am I wrong?

Power = force x velocity
This gives you the relationship for a car moving at steady velocity.

technician, I believe that this formula is right, when motor changing only potential energy.

[itex]P = A/t = F*\Delta l / t = F * v[/itex]

This formula based on fact, that work is [itex]F * \Delta l[/itex]. But if body moving without resistance and without impact of another forces, motor will change velocity, i.e. kinetic energy. After that, body can pass billions of kilometers by inertia, and no work will be done at all. So, in this case [itex]F*v[/itex] is meaningless.

p.s. In my case motor can change both, potential (moving car up) and kinetic (moving car forward) energies.
 
  • #5
So far you have calculated the power and force required to accelerate the car or go up hills.

For a motor

Power = Torque x angular velocity.

You can choose:

Large torque & small angular velocity
or
Small torque & large angular velocity.

To resolve you need data on the motor, wheels gearbox etc.
 
  • #6
So far you have calculated the power and force required to accelerate the car or go up hills.

For a motor

Power = Torque x angular velocity.

You can choose:

Large torque & small angular velocity
or
Small torque & large angular velocity.

To resolve you need data on the motor, wheels gearbox etc.

Thanks, CWatters, that's the answer. Question is closed.
 

Suggested for: How to calculate motor force from power?

Replies
7
Views
437
Replies
8
Views
392
Replies
1
Views
456
Replies
41
Views
898
Replies
15
Views
510
Replies
1
Views
440
Replies
1
Views
670
Replies
12
Views
396
Back
Top