Angular Momentum of Rigid Bodies

In summary, the conversation discussed calculating the rotation of a rigid body due to a force applied to a single point on the body in the context of 3D game programming. The method of finding the axis of rotation using the cross product of the point of intersection and the vector between the center of the body and the point of intersection was mentioned. The conversation also delved into determining the amount of force needed to cause the body to rotate, taking into account the body's mass and the moment of inertia. The presence of friction and its effect on the rotation was also discussed. The conversation ended with considerations of how to factor in the moment of inertia and the inertia tensors in the calculations of angular momentum.
  • #1
paulmcco
3
0
I'm trying to calculate the rotation of a rigid body due to a force applied to a single point on the body. This application is for 3D game programming. I understand how to find the axis of rotation by calculating the cross product of the point of intersection & the vector between the center of the rigid body and the point of intersection(vecPtoC). My question is this:

If the rigid body has a certain mass, how do I determine how much force to apply in order to cause the body to rotate? If the force applied to the body is too small, the body should not rotate. Also, if the force applied to the body is great enough to rotate the body, how much does the body rotate due to the force?
 
Physics news on Phys.org
  • #2
If the force applied to the body is too small, the body should not rotate.
In this case, you have some sort of friction. The maximal friction torque depends on the type of friction and the geometry.

Also, if the force applied to the body is great enough to rotate the body, how much does the body rotate due to the force?
The change in angular momentum with respect to time is equal to the sum of all torques. I do not know how your system works, so it is hard to give more specific answers.

If the body is not fixed somewhere, it might get a linear velocity as well. In addition, it might change its axis of rotation, if it is asymmetric enough.
 
  • #3
thanks mfb...the body is at rest and a torque(0,-1,0) is calculated from the cross product of the force applied(0,0,1) & the vector difference between point of impact(1,0,-1) and center of body(0,0,0). I've applied the torque to the body's orientation quaternion like so:

quatOrientation.w += 0.5f * (quatOrientation.x * torque.x +
quatOrientation.y * torque.y +
quatOrientation.z * torque.z);

quatOrientation.x -= 0.5f * (quatOrientation.w * torque.x -
quatOrientation.z * torque.y +
quatOrientation.y * torque.z);

quatOrientation.y -= 0.5f * (quatOrientation.z * torque.x +
quatOrientation.w * torque.y -
quatOrientation.x * torque.z);

quatOrientation.z -= 0.5f * (quatOrientation.x * torque.y -
quatOrientation.y * torque.x +
quatOrientation.w * torque.z);

This method is from a game programming book by Jim Adams. How though do I factor in the moment of inertia? I haven't considered the friction btween the body and the ground...I'm more interested in taking into account the amount of force and the mass of the body...any ideas?
 
  • #4
paulmcco said:
I'm trying to calculate the rotation of a rigid body due to a force applied to a single point on the body. I understand how to find the axis of rotation by calculating the cross product of the point of intersection & the vector between the center of the rigid body and the point of intersection(vecPtoC).
Not sure what you mean by that calculation, but it sounds like it is only going to give you the axis of rotation as a vector. It won't tell you where the instantaneous centre of rotation is.
If the rigid body has a certain mass, how do I determine how much force to apply in order to cause the body to rotate? If the force applied to the body is too small, the body should not rotate.
You say there's no friction. In that case, even the tiniest force will result in movement.
Suppose a force F acts on a body with mass centre at O. The body has mass M, and the line of action of F misses O by distance d. The centre of mass will accelerate in the direction of F at rate F/M.
The moment applied to the body has magnitude Fd. Rotation is complicated in 3D for arbitrary rigid bodies. You have to consider the principal axes of inertia. See e.g. http://en.wikipedia.org/wiki/Euler's_equations_(rigid_body_dynamics)
 
  • #5
my mistake...there must be friction. My application is for a video game. If two objects collide, I would like to calculate the angular momentum of those objects due to the force applied to a point on each rigid body. My understanding is that the moment of inertia of a rigid body determines the amount of force necessary to cause a change in angular momentum. I would like to account for these forces in my calculations of angular momentum. How would I do so?I'm not necessarily concerned with the center of mass...for my application the center of mass can be the center of the body. The body will rotate from this center. I have calculated the inertia scalars as:
xs = length.x * length.x
ys = length.y * length.y
zs = length.z * length.z.

And the inertia tensors as:
Ixx = mass * (ys + zs)
Iyy = mass * (xs + zs)
Izz = mass * (xs + ys);

Assuming the center of the body is at (0,0,0) and the body has length.x = length.y = length.z = 2, if a force of (0,0,1) is applied at the point (1,0,-1), the upper right corner of the cube's front face, how much would you expect the cube to rotate(if at all)? What amount of force would be necessary to rotate the cube?
 
Last edited:
  • #6
paulmcco said:
my mistake...there must be friction. My application is for a video game. If two objects collide, I would like to calculate the angular momentum of those objects due to the force applied to a point on each rigid body. My understanding is that the moment of inertia of a rigid body determines the amount of force necessary to cause a change in angular momentum.
This sounds like impacts, so the forces are indeterminate. You need to use conservation of momentum and of angular momentum. That won't be enough to fix the motion; you'll also need to make some assumption about coefficient of restitution. Or just say such-and-such a percentage of energy is lost.
for my application the center of mass can be the center of the body. The body will rotate from this center. I have calculated the inertia scalars as:
xs = length.x * length.x
ys = length.y * length.y
zs = length.z * length.z.

And the inertia tensors as:
Ixx = mass * (ys + zs)
Iyy = mass * (xs + zs)
Izz = mass * (xs + ys);
That's summing over the xs etc?
Assuming the center of the body is at (0,0,0) and the body has length.x = length.y = length.z = 2, if a force of (0,0,1) is applied at the point (1,0,-1), the upper right corner of the cube's front face, how much would you expect the cube to rotate(if at all)? What amount of force would be necessary to rotate the cube?
(1, 0, -1) is not a corner of the cube - it's halfway along an edge.
Angular Impulse = Momentum of impulse x distance (vector product)
= Moment of inertia x change in angular velocity
Suppose a body of mass m strikes the middle of the top edge of the front face at speed v in a front-to-back direction. Assume the impact is completely inelastic (i.e., the bodies coalesce). The angular impulse about the x-axis (left-right axis) is mva, where a is the half-width of the cube. Let the moment of inertia of the cube about the x-axis be MI. If the angular speed of the merged body after impact is w then mva = mwa2+MIw.
No doubt you're more interested in cases where the bodies bounce with relatively little loss of energy.
 

Related to Angular Momentum of Rigid Bodies

1. What is Angular Momentum of Rigid Bodies?

Angular Momentum of Rigid Bodies is a measure of the rotation of a rigid object around a fixed axis. It is a vector quantity that takes into account both the mass and the distribution of mass in an object, as well as its rotational speed.

2. How is the Angular Momentum of Rigid Bodies calculated?

The Angular Momentum of Rigid Bodies can be calculated by multiplying the moment of inertia of the object by its angular velocity. The moment of inertia takes into account the mass and distribution of mass in an object, while the angular velocity measures the speed at which the object is rotating.

3. What is the relationship between Angular Momentum of Rigid Bodies and Torque?

Angular Momentum and Torque are related through the principle of conservation of angular momentum. When there is no external torque acting on a rigid body, its angular momentum remains constant. This means that any changes in its rotational speed must be accompanied by an equal and opposite change in its moment of inertia.

4. How does the Angular Momentum of Rigid Bodies affect rotational motion?

The Angular Momentum of Rigid Bodies plays a crucial role in determining the rate and direction of the rotation of an object. When a torque is applied to a rigid body, it causes a change in its angular momentum, resulting in rotational motion.

5. What are some real-life examples of Angular Momentum of Rigid Bodies?

Some real-life examples of Angular Momentum of Rigid Bodies include the rotation of a spinning top, the motion of a gyroscope, and the movement of a bicycle wheel. In all of these cases, the angular momentum of the object remains constant unless acted upon by an external force.

Similar threads

Replies
5
Views
1K
Replies
2
Views
823
Replies
21
Views
2K
Replies
8
Views
1K
Replies
1
Views
804
Replies
13
Views
2K
Replies
19
Views
3K
Replies
3
Views
941
Replies
15
Views
2K
Replies
3
Views
1K
Back
Top