Home Contents Forum Links Tip Jar
Animation Math in Lingo       

Combining Forces

When more than one force is acting on an object they are combined by adding them together. To do this with a set of forces Force1, Force2, Force3, etc, the vertical components are summed, and the horizontal components are summed:

xAccel = xForce1 + xForce2 + xForce3 + ...
yAccel = yForce1 + yForce2 + yForce3 + ...

xVelo = xVelo + xAccel
yVelo = yVelo + yAccel
x = x + xVelo
y = y + yVelo

In the friction and spring demos, those forces are combined with gravity and operate on the vertical axis. In the general gravity demo, there are many sources of gravity acting on each other at different angles so it is a good example of combining many forces that have both horizontal and vertical components.

 
 


Copyright © 2003 JM Harward 
 jmckell~at~jmckell~dot~com
All lingo provided on this site may be used freely for educational purposes. Not for redistribution as uncompiled code. Instructional materials may not be reproduced without permission.