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

In summary, 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. I tried searching, but there were only something like 2-3 relavent results, and I couldn't really understand them well. 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. There is no linear/angular ratio. The instantaneous linear/angular accelerations are independent. Then how do you explain this? Then how do you explain this? Both forces produce the
  • #1
MTK
13
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
  • #3
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.
 
  • #4
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.
 
  • #5
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.
 
  • #6
Then how do you explain this?
 

Attachments

  • Screenshot.png
    Screenshot.png
    3.7 KB · Views: 413
  • #7
MTK said:
Then how do you explain this?
Both forces produce the same instantaneous linear acceleration, but different instantaneous angular accelerations.
 
  • #8
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?
 
  • #9
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...
 

1. What is a formula or algorithm to apply force to an arbitrary point on a polygon?

The formula for applying force to an arbitrary point on a polygon is Force = Mass x Acceleration, where the mass is the weight of the polygon and the acceleration is the change in velocity over time.

2. How can I determine the appropriate amount of force to apply to a specific point on a polygon?

The appropriate amount of force to apply to a specific point on a polygon can be determined by considering the weight and distribution of the polygon, as well as the desired velocity and direction of movement. A simulation or mathematical model can also be used to determine the optimal amount of force.

3. Can the formula or algorithm be applied to any type of polygon?

Yes, the formula or algorithm for applying force to an arbitrary point on a polygon can be applied to any type of polygon, as long as the weight and distribution of the polygon are known.

4. Are there any limitations to using this formula or algorithm?

One limitation of using this formula or algorithm is that it assumes the polygon is rigid and has a constant mass and distribution. It may not be accurate for polygons with varying densities or deformable materials.

5. How can I validate the results of using this formula or algorithm?

The results of using this formula or algorithm can be validated by comparing them to real-world observations or by conducting experiments with known forces applied to different points on a polygon. Additionally, using multiple simulations or models can help to verify the accuracy of the results.

Similar threads

Replies
14
Views
808
Replies
10
Views
1K
Replies
6
Views
826
Replies
32
Views
1K
  • Classical Physics
Replies
8
Views
1K
  • Classical Physics
Replies
16
Views
804
  • General Math
Replies
7
Views
2K
  • Classical Physics
Replies
17
Views
1K
  • Classical Physics
Replies
17
Views
959
Replies
4
Views
801
Back
Top