Formula/Algorithm to apply force to an arbitrary point on a polygon

AI Thread Summary
The discussion revolves around coding a 2D rigid body physics engine in Java, specifically addressing the challenges of calculating movement and rotation when a force is applied off-center on an object. Key points include the understanding that both linear and angular accelerations occur independently, and the importance of using the center of gravity (COG) for force application and calculating torque through the cross product. The conversation highlights the misconception of a linear/angular ratio and clarifies that torque affects rotation based on internal forces within the object. The user resolves issues related to force application and simulation accuracy by adjusting moment of inertia and ensuring proper unit conversions. The final goal is to enhance the simulation by implementing wall collisions.
MTK
Messages
13
Reaction score
0
I am trying to code a 2D rigid body physics engine in Java, and I am having some trouble figuring out how an object will move and rotate if the force is off-center.

Basically, what I can't seem to figure out is a way to find out the x, y, and rotational acceleration when a force is applied at an arbitrary point on an arbitrary polygon. I tried searching, but there were only something like 2-3 relavent results, and I couldn't really understand them well.
 
Physics news on Phys.org
I found this:

http://en.wikipedia.org/wiki/File:Torque,_position,_and_force.svg

So from this I understand that if the force is all parallel, then there is no rotation and all acceleration is linear, and if it is all perpendicular, then the linear/angular ratio depends somehow on the mass, mass distribution, and how far from the center of mass the force is applied.
 
So I made it that only the component of the force vector that is parallel with the coener of mass causes linear acceleration.

But I still don't know how to tell the ratio of linear to angular acceleration caused by the perpendicular component, and how to know how much torque is produced.
 
MTK said:
and if it is all perpendicular, then the linear/angular ratio depends somehow on the mass, mass distribution, and how far from the center of mass the force is applied.
There is no linear/angular ratio. The instantaneous linear/angular accelerations are independent.
 
Then how do you explain this?
 

Attachments

  • Screenshot.png
    Screenshot.png
    3.7 KB · Views: 470
MTK said:
Then how do you explain this?
Both forces produce the same instantaneous linear acceleration, but different instantaneous angular accelerations.
 
So, for example, if I have a circular object, and I apply a force right on the edge (like a tangent on the egde of the circle), will that apply just as much linear acceleration as pushing the circle right in the middle?
 
When you apply a force to an object, be it a polygon or otherwise, you do two calculations:

1. Apply the force to the center-of-gravity (COG)
2. Take the cross product of the radius to the point of application, with the force, to obtain the torque

Why, you might ask? Think of the object as a system of separate particles. When you apply a force to a particle that is offset from the COG (of the system!), immediately that particle wants to tug away at F / (mass of the particle). However, since it's linked to all the other particles in your object, you get this system of internal forces - the particle pulls on the system, and the system pulls back. Your input force is therefore distributed to all the particles in the system, through their constraints.

The rotation is a totally different game. It's the effect that your force has on the orientation of the system - but torque-induced rotation is caused entirely by INTERNAL forces. Thus, if you start dividing your torque into perpendicular/parallel components, you're actually throwing away some of the input force.
 
  • #10
MTK said:
So, for example, if I have a circular object, and I apply a force right on the edge (like a tangent on the egde of the circle), will that apply just as much linear acceleration as pushing the circle right in the middle?
Yes.
 
  • #11
But my Vector class is 2D, but it appears that the cross product must be 3D. But when to think of it, only the Z axis could be perpendicular to the x, y plane, so can I just calculate the Z axis and ignore X and Y?

And how exactly do you convert a 3D vector into a scalar rotation value?
 
  • #12
MTK said:
But my Vector class is 2D, but it appears that the cross product must be 3D. But when to think of it, only the Z axis could be perpendicular to the x, y plane, so can I just calculate the Z axis and ignore X and Y?
XY of the cross product will be zero anyway if Z=0 in both input vectors
MTK said:
And how exactly do you convert a 3D vector into a scalar rotation value?
Generally you take the norm, but here it is just Z.
 
  • #13
I am still wondering if this is all correct, because if I apply force to the edge of an object in my simulation, it accelerates sideways, but hardly spins at all. This is nothing like what I observe in real life or this applet:

http://www.myphysicslab.com/collision.html

And these are my formulas:

velocity = velocity.add(force.scale(1/mass))
dt += offset.crossProduct(force) / momentOfInertia

(dt is the angular velocity, in radians per second)
 
  • #14
MTK said:
I am still wondering if this is all correct, because if I apply force to the edge of an object in my simulation, it accelerates sideways, but hardlt spins at all.
Reduce the moment of Inertia if you want it to spin more. How is your force determined? Does the force direction rotate with the object, or does it always point in the same direction?
 
  • #15
I figured out the problem, I forgot to convert meters to pixels and seconds to frames in a few places.

Now the simulation feels much more correct.
 
  • #16
Now I need to implement bouncing off the walls...
 
Back
Top