Applying forces to a body, outside it's center of mass.

In summary, the conversation discusses the application of external forces to an object's center of mass and how it affects both rotation and translation. The physics engines used by spacecraft designers take into account this cross coupling of forces and NASA conducts simulations to ensure safe docking with the Space Station. The conversation also mentions the case of spinning a pen on one finger and the concept of pure rotation.
  • #1
Xcrypt
21
0
Hello.
I'm currently coding on a physics engine.

To do so, I looked up some code from open-source engines.

I noted that there is a function where you can apply a force to a rigid body, outside it's center of mass.

It goes something like this:

ApplyForceAPosition(vector force, vector positionWorld);

Where the resultant torque would be
distance(positionWorld,m_centerofmass)*force*sin(theta),
as expected.

However, applying the force outside the center of mass can also cause a linear force.
it would be calculated as follows:
m_Force = force;

But this seems strange to me. If I put balance pen on one finger, and I apply a force to it, so that it would spin, I can do so without visually noticing any change in linear velocity.

So it seems to me that a more appropriate formula to compute the resulting linear force from a force applied outside the center of mass would be:

m_force = |cos(theta)|*force;
Where theta would be the angle between the force vector and [forcepos-COM].

I can't seem to find any articles on this, and I'm most likely wrong, but then how come I can spin a pen on one finger without causing any change in linear velocity?
 
Physics news on Phys.org
  • #2
The physics engines are correct. The acceleration of the center of mass of an object is the the vector sum of all of the external forces acting on the object (regardless of point of application) divided by the object's mass. Those external forces also arise in torques, and here the torques obviously do depend on the point of application.
 
  • #3
Well my question was not really whether I was correct or not. I even stated that I'm most likely wrong. The question is why. Please read my question.

I can spin a pen on one finger (by pushing it with one finger only), without changing any visually noticeable change in linear velocity. However, if I were to change the position of application of the force, it doesn't spin so much, and does have change in linear velocity. Please explain.
 
  • #4
You cannot create pure rotation unless the forces cancel, resulting in zero net force, but the torques do not cancel. It's called a couple.Spacecraft designers have to deal with the fact that forces result in translation and rotation *all the time*. It would be really nice if jets designed for translational motion always resulted in pure translation, if the jets designed for rotational motion (when operated in pairs) always resulted in a pure couple. This never happens. Instead there is always some undesired cross coupling between translation and rotation.

Those spacecraft designers have to accommodate for this undesired cross coupling in their control systems. If we had the physics wrong, those guidance and control systems would not get the vehicles where they are supposed to go. Those guidance and control systems *do* get the vehicles where they are supposed to go.

NASA simulates every vehicle that is intended to dock with the Space Station to make sure the vehicle will be safe. It uses something very similar to the physics engines calculations you described in the opening post. If we had the physics wrong, those simulations would yield something different from the true behavior of these vehicles. Those simulations are instead spot on. The vehicles behave pretty much as predicted.
 
  • #5
Don't worry, I'm not saying physicists are wrong :)
But I still need clarification for the situation with the pen on my finger! In the case where I apply a force with one finger only, where is the other force coming from that would create a zero net linear force?
 

1. What is the center of mass of a body?

The center of mass of a body is the point at which the entire mass of an object is concentrated. It can also be thought of as the point at which all of the mass can be balanced.

2. Why is it important to apply forces to a body outside its center of mass?

Applying forces to a body outside its center of mass can cause the object to rotate, which is necessary for many practical applications such as turning a steering wheel or throwing a ball. It also allows for more control and precision in the movement of the object.

3. How do you calculate the net force on a body when forces are applied outside its center of mass?

To calculate the net force on a body when forces are applied outside its center of mass, you must first find the lever arm, which is the perpendicular distance from the center of mass to the point where the force is applied. Then, you can use the formula F = ma, where F is the net force, m is the mass of the object, and a is the acceleration caused by the applied force. The lever arm is also factored into the equation, so the final formula is F = m x a x d, where d is the lever arm.

4. What are some examples of applying forces to a body outside its center of mass?

Some examples of applying forces to a body outside its center of mass include pushing a door open, throwing a ball, and using a wrench to turn a bolt. Any time an object is rotated or turned, forces are being applied outside its center of mass.

5. What are the potential risks of applying forces to a body outside its center of mass?

If too much force is applied to a body outside its center of mass, it can cause the object to become unbalanced and potentially cause it to tip over or lose control. It is important to carefully consider the amount and direction of forces applied to avoid these risks.

Similar threads

  • Classical Physics
Replies
16
Views
844
  • Classical Physics
Replies
4
Views
1K
  • Classical Physics
Replies
3
Views
965
Replies
7
Views
785
Replies
30
Views
2K
  • Classical Physics
Replies
24
Views
722
  • Classical Physics
Replies
2
Views
840
  • Classical Physics
2
Replies
61
Views
1K
Replies
4
Views
843
Back
Top