Difference between revisions of "Forest UCM RBM"
(73 intermediate revisions by the same user not shown) | |||
Line 545: | Line 545: | ||
:<math>\vec L = \lambda \vec \omega</math> | :<math>\vec L = \lambda \vec \omega</math> | ||
+ | |||
+ | To determine the principal axes you determine the vector <math>\vec omega</math> such that | ||
+ | |||
+ | :<math>\tilde I \vec \omega = \lambda \vec \omega</math> | ||
+ | |||
+ | In practice, one determines <math>\vec \omega</math> ( the eigen vectors) by solving for <math>\lambda</math> (the eigenvalues) | ||
+ | such that | ||
+ | |||
+ | :<math>\left (\tilde I- \lambda \tilde 1 \right ) \vec \omega =0</math> | ||
+ | |||
+ | where | ||
+ | |||
+ | :<math> \tilde 1 \equiv \left( \begin{array}{ccc}1 & 0 & 0\\ 0 & 1 & 0 \\0 & 0 & 1\end{array} \right) </math> = unit matrix | ||
+ | |||
+ | In order for the above matrix problem (system of 3 equations and 3 unknowns) to have a non-zero solution the secular equation must hold ( the determinant must be non-zero) | ||
+ | |||
+ | :<math>det \left (\tilde I- \lambda \tilde 1 \right ) \equiv \left |\tilde I- \lambda \tilde 1 \right | =0</math> | ||
+ | |||
+ | One solves the above equation by first finding the three eigenvalues that will make the above determinant zero and then use Gauss-Jordan elimination of the augmented matrix using each of the eigenvalues separately to find the eigenvector for that particular eigenvalue | ||
+ | |||
+ | For example: | ||
+ | |||
+ | |||
+ | Suppose the momentum tensor is given by | ||
+ | |||
+ | :<math> \tilde I \equiv \left( \begin{array}{ccc}8 & -3 & -3\\ -3 & 8 & -3 \\-3 & -3 & 8\end{array} \right) </math> | ||
+ | |||
+ | |||
+ | :<math>\left |\tilde I- \lambda \tilde 1 \right | =0</math> | ||
+ | :<math> \left |\begin{array}{ccc}8-\lambda & -3 & -3\\ -3 & 8-\lambda & -3 \\-3 & -3 & 8-\lambda\end{array} \right | =0</math> | ||
+ | <math>\Rightarrow</math> | ||
+ | :<math>(2-\lambda)(11-\lambda)^2 =0</math> | ||
+ | |||
+ | |||
+ | <math>\Rightarrow \;\;\; </math> 3 solutions | ||
+ | <math>\lambda_1 = 2 \;\;\;\;\lambda_2=\lambda_3 = 11</math> | ||
+ | |||
+ | You can find the eigenvector for each eigenvalue by performing Gauss-Jordan row-column reduction of the augmented matrix | ||
+ | |||
+ | ;for the eigenvalue <math> \lambda_1 = 2</math> | ||
+ | |||
+ | :<math>\left (\tilde I- 2 \tilde 1 \right ) \vec \omega =0</math> | ||
+ | :<math> \left (\begin{array}{ccc}8-2 & -3 & -3\\ -3 & 8-2 & -3 \\-3 & -3 & 8-2\end{array} \right ) \vec \omega =0</math> | ||
+ | :<math> \left (\begin{array}{ccc}6 & -3 & -3\\ -3 & 6 & -3 \\-3 & -3 & 6\end{array} \right ) \vec \omega =0</math> | ||
+ | |||
+ | In augmented form: | ||
+ | |||
+ | :<math> \left (\begin{array}{cccc}6 & -3 & -3 & 0 \\ -3 & 6 & -3 & 0\\-3 & -3 & 6& 0\end{array} \right ) </math> | ||
+ | |||
+ | Divide everything by 3 | ||
+ | |||
+ | :<math> \left (\begin{array}{cccc}2 & -1 & -1 & 0 \\ -1 & 2 & -1 & 0\\-1 & -1 & 2& 0\end{array} \right ) </math> | ||
+ | |||
+ | Add the second row to the first row | ||
+ | |||
+ | :<math> \left (\begin{array}{cccc}1 & 1 & -2 & 0 \\ -1 & 2 & -1 & 0\\-1 & -1 & 2& 0\end{array} \right ) </math> | ||
+ | |||
+ | Add the first row to the second and third row | ||
+ | |||
+ | :<math> \left (\begin{array}{cccc}1 & 1 & -2 & 0 \\ 0 & 3 & -3 & 0\\0 & 0 & 0& 0\end{array} \right ) </math> | ||
+ | |||
+ | Divide the second row by 3 | ||
+ | |||
+ | :<math> \left (\begin{array}{cccc}1 & 1 & -2 & 0 \\ 0 & 1 & -1 & 0\\0 & 0 & 0& 0\end{array} \right ) </math> | ||
+ | |||
+ | Subtract the first row by the second row | ||
+ | |||
+ | :<math> \left (\begin{array}{cccc}1 & 0 & -1 & 0 \\ 0 & 1 & -1 & 0\\0 & 0 & 0& 0\end{array} \right ) </math> | ||
+ | |||
+ | The above augmented matrix represents the following system of equations | ||
+ | |||
+ | row 1 : <math>\omega_x - \omega_z = 0</math> | ||
+ | |||
+ | row 2 : <math>\omega_y - \omega_z = 0</math> | ||
+ | |||
+ | row 1 : <math>0 * \omega_z = 0 \Rightarrow \;\;\; \omega_3</math> is arbitary | ||
+ | |||
+ | thus | ||
+ | |||
+ | <math>\omega_x=\omega_y= \omega_z </math> | ||
+ | |||
+ | |||
+ | :<math>\hat e_1 = \hat i + \hat j + \hat k</math> | ||
+ | |||
+ | but the above needs to be a unit vector such that | ||
+ | |||
+ | :<math>\hat e_1 \cdot \hat e_1 = 1</math> | ||
+ | |||
+ | therefor | ||
+ | |||
+ | :<math>\hat e_1 = \frac{1}{\sqrt{3}} \left ( \hat i + \hat j + \hat k\right )</math> | ||
+ | |||
+ | |||
+ | ;for the eigenvalue <math> \lambda_2 = 11</math> | ||
+ | |||
+ | :<math>\left (\tilde I- 2 \tilde 1 \right ) \vec \omega =0</math> | ||
+ | :<math> \left (\begin{array}{ccc}-3 & -3 & -3\\ -3 & -3 & -3 \\-3 & -3 & -3\end{array} \right ) \vec \omega =0</math> | ||
+ | |||
+ | |||
+ | :<math>(\tilde I - \lambda_2 \tilde 1 ) \vec \omega = \left (\begin{array}{ccc}-3 & -3 & -3\\ -3 & -3 & -3 \\-3 & -3 & -3\end{array} \right )\left (\begin{array}{c} \omega_x \\ \omega_y \\ \omega_z \\ \end{array} \right ) =0</math> | ||
+ | |||
+ | <math>\Rightarrow \omega_x + \omega_y + \omega_z = 0</math> | ||
+ | |||
+ | ;All three components of <math>\omega</math> add up to zero or in other words | ||
+ | |||
+ | :<math> \omega_x + \omega_y + \omega_z = \vec \omega \cdot \hat e_1 = 0 0</math> | ||
+ | |||
+ | The remaining two principal axis must be perpendicular to the principal axis with eigenvalue <math>\lambda_1 =2</math>. | ||
+ | |||
+ | Otherwise the remaining two principal axes are arbitrary and indicate that the rigid body is symmetric about these two remaining axes. | ||
+ | |||
+ | BTW: The above moment of inertia represents the moment of inertia of a cube rotating about one of its corners. The principal axis <math>\hat e_1</math> is a vector that traverses the diagonal of the cube. | ||
+ | |||
+ | ==Euler's Equations== | ||
+ | |||
+ | ===Space Frame and Body Frame=== | ||
+ | |||
+ | |||
+ | ;Space Frame | ||
+ | :An inertial reference frame used to locate the center of mass of a rigid body <math>(\hat i , \hat j, \hat k)</math> | ||
+ | |||
+ | ;Body Frame | ||
+ | : A non-inertial reference frame that uses the principal axes of a rotating rigid body <math>(\hat e_1 , \hat e_2, \hat e_3)</math> | ||
+ | . | ||
+ | |||
+ | |||
+ | If a body has an angular momentum <math>\vec \omega</math> and principal moments <math>\lambda_1 ,\lambda_2</math> and <math>\lambda_3</math> | ||
+ | |||
+ | Then the angular momentum <math>\vec L</math> in the Body reference frame is given by | ||
+ | |||
+ | :<math>\left (\vec L \right )_{\mbox{Body}} = \tilde I \vec \omega = \left (\begin{array}{ccc}\lambda_1 & 0 & 0\\ 0 & \lambda_2 & 0 \\0 & 0 & \lambda_3\end{array} \right )\left (\begin{array}{c} \omega_x \\ \omega_y \\ \omega_z \\ \end{array} \right ) = | ||
+ | \lambda_1 \omega_1 \hat e_1 +\lambda_2 \omega_2 \hat e_2 +\lambda_3 \omega_3 \hat e_3= \sum \lambda_i \omega_i \hat e_i</math> | ||
+ | |||
+ | |||
+ | The torque in the Space reference frame is given by | ||
+ | |||
+ | : <math>\vec \tau = \frac{d}{dt} \left (\vec L \right )_{\mbox{Space}}</math> | ||
+ | |||
+ | <math>\left (\vec L \right )_{\mbox{Body}}</math> is moving as seen in the Space frame | ||
+ | |||
+ | : <math> \frac{d}{dt} \left (\vec L \right )_{\mbox{Space}} = \frac{d}{dt} \left (\sum \lambda_i \omega_i \hat e_i \right )_{\mbox{Body}}</math> | ||
+ | :: <math> = \left (\sum \frac{d\lambda_i \omega_i}{dt} \hat e_i \right )_{\mbox{Body}} + \sum \lambda_i \omega_i\left (\frac{d\hat e_i }{dt} \right )_{\mbox{space}}</math> | ||
+ | |||
+ | remembering that | ||
+ | |||
+ | : <math>\vec v = \vec \omega \times \vec r</math> | ||
+ | |||
+ | one can see that | ||
+ | |||
+ | :<math>\frac{ d \hat e_i}{dt} = \omega \times \hat e_i</math> | ||
+ | |||
+ | |||
+ | : <math> \vec \tau=\frac{d}{dt} \left (\vec L \right )_{\mbox{Space}} = \left (\vec \dot L\right )_{\mbox{Body}} + \vec \omega \times \vec L</math> : Euler's equation | ||
+ | :: <math> = \left (\vec \dot L\right )_{\mbox{Body}} + \left (\begin{array}{ccc}\hat e_1 & \hat e_2 & \hat e_3 \\ \omega_1 & \omega_2 & \omega_3 \\\lambda_1\omega_1 & \lambda_2\omega_2 & \lambda_3\omega_3\end{array} \right )</math> | ||
+ | |||
+ | |||
+ | ====Euler's equation for the spinning top==== | ||
+ | |||
+ | |||
+ | In the case of the spinning top: | ||
+ | |||
+ | The external torque applied by gravity is always normal to the z-axis (<math>\hat e_3</math>) so value of the torque is zero in the <math>\hat e_3</math> direction | ||
+ | |||
+ | <math>\Rightarrow \;\;\;\; \lambda_3 \dot \omega_3 - ( \lambda_1-\lambda_2)\omega_1 \omega_2 = 0</math> | ||
+ | |||
+ | but | ||
+ | |||
+ | :<math>\lambda_1=\lambda_2</math> | ||
+ | |||
+ | so | ||
+ | |||
+ | <math> \lambda_3 \dot \omega_3 = 0 \Rightarrow</math> the tops angular velocity along the symmetry axis is constant. | ||
+ | |||
+ | ===Euler's Equation for Zero Torque=== | ||
+ | |||
+ | :<math>\vec \dot L = \left (\frac{d}{dt}\vec L \right )_{\mbox{Body}} = - \vec \omega \times \vec L</math> | ||
+ | ::<math>= -\left (\begin{array}{ccc}\hat e_1 & \hat e_2 & \hat e_3 \\ \omega_1 & \omega_2 & \omega_3 \\\lambda_1\omega_1 & \lambda_2\omega_2 & \lambda_3\omega_3\end{array} \right )</math> | ||
+ | |||
+ | ====All three principal moments are different==== | ||
+ | |||
+ | |||
+ | ====Two principal moments are the same value (Free precession)==== | ||
+ | |||
+ | The motion of a top is an example of this situation. As seen above for the motion of the top, | ||
+ | |||
+ | :<math>\tau_3= \lambda_3 \dot \omega_3 - ( \lambda_1-\lambda_2)\omega_1 \omega_2 = 0</math> The torque is alway zero in the z-direction <math>(\hat e_3)</math> | ||
+ | |||
+ | :<math>\lambda_3 \dot \omega_3 =0 \;\;\;\; \Rightarrow \omega_3 =</math> constant | ||
+ | |||
+ | The remaining Euler equations are | ||
+ | |||
+ | :<math>\tau_1= \lambda_1 \dot \omega_1 - ( \lambda_2-\lambda_3)\omega_2 \omega_3</math> | ||
+ | :<math>\tau_2= \lambda_2 \dot \omega_2 - ( \lambda_3-\lambda_1)\omega_1 \omega_3</math> | ||
+ | |||
+ | |||
+ | IF the top is aligned with the z-axis then there will be no torque. (But as soon as it is misaligned there will be a torque) | ||
+ | |||
+ | The above Euler equations become | ||
+ | |||
+ | :<math> \lambda_1 \dot \omega_1 = \left [ ( \lambda_2-\lambda_3)\omega_3\right ] \omega_2 = \left [ ( \lambda-\lambda_3)\omega_3\right ] \omega_2 </math> | ||
+ | :<math> \lambda_2 \dot \omega_2 = \left [( \lambda_3-\lambda_1)\omega_3\right ] \omega_1 = -\left [( \lambda-\lambda_3)\omega_3\right ] \omega_1 </math> | ||
+ | |||
+ | where | ||
+ | |||
+ | :<math>\lambda=-\lambda_1=\lambda_2</math> | ||
+ | |||
+ | let | ||
+ | |||
+ | :<math>\Omega_b \equiv \frac{\lambda-\lambda_3}{\lambda}\omega_3</math> | ||
+ | |||
+ | The we as a coupled set of equations as we saw before | ||
+ | |||
+ | :<math> \dot \omega_1 = \Omega_b \omega_2 </math> | ||
+ | :<math> \dot \omega_2 = -\Omega_b \omega_1 </math> | ||
+ | |||
+ | using the trick of defining a complex frequency such that | ||
+ | |||
+ | : <math>\eta = \omega_1 + i \omega_2 </math> | ||
+ | |||
+ | we have the first order differential equation | ||
+ | |||
+ | : <math>\dot \eta = \dot \omega_1 + i \dot \omega_2</math> | ||
+ | :: <math> = \Omega_b ( \omega_2 - i \omega_1</math> | ||
+ | :: <math> = - i\Omega_b \eta</math> | ||
+ | |||
+ | |||
+ | <math>\Rightarrow</math> | ||
+ | |||
+ | : <math>\eta = \eta_0 e^{-i \Omega_b t}</math> | ||
+ | |||
+ | |||
+ | |||
+ | ;If we assume the initial conditions | ||
+ | |||
+ | : at<math> t=0 \;\;\; \omega_1 = \omega</math> and <math>\omega_2 =0</math> | ||
+ | |||
+ | Then | ||
+ | : <math>\eta = \eta_0 e^{-i \Omega_b t}= \omega_0 e^{-i \Omega_b t} </math> | ||
+ | : <math> \omega_1 + i \omega_2 =\omega_0 \left ( \sin (\Omega_b t) -i \cos (\Omega_b t)\right ) </math> | ||
+ | |||
+ | |||
+ | : <math>\omega_1 = \omega_0 \sin (\Omega_b t) \;\;\;\;\omega_2 = -\omega_0 \cos (\Omega_b t)</math> | ||
+ | |||
+ | |||
+ | <math>\Rightarrow</math> | ||
+ | |||
+ | : <math>\vec \omega =\omega_0 \sin (\Omega_b t) \hat e_1 - \omega_0 \cos (\Omega_b t) \hat e_2 + \omega_3 \hat e_3 </math> | ||
+ | |||
+ | |||
+ | [[File:TF_UCM_RBM_TopinBodyFrame.png | 200 px]] | ||
+ | |||
+ | ;Interpretation | ||
+ | :the two components, <math>\omega_1</math> and <math>\omega_2</math>, of the rigid body's angular velocity <math>\vec \omega</math> are rotating with an angular velocity <math>\Omega_b</math> about the <math>\hat e_3</math> axis as viewed in the Body reference frame. | ||
+ | |||
+ | ;Body cone | ||
+ | :The Body cone is defined as the orbital path taken by the top as it rotates about the <math>\hat e_3</math> axis with the angular velocity <math>\Omega_b</math>. The shape forms a cone relative to the rotation point of the top (the top's tip) | ||
+ | |||
+ | The angular momentum (<math>\vec L</math> ) in the space frame is given by | ||
+ | |||
+ | : <math>\vec L = \tilde I \vec \omega = \lambda_1 \omega_1 \hat e_1 + \lambda_1 \omega_2 \hat e_2 + \lambda_3 \omega_3 \hat e_3</math> | ||
+ | :: <math>=\lambda_1 \omega_0 \sin (\Omega_b t) \hat e_1 - \lambda_1 \omega_0 \cos (\Omega_b t) \hat e_2 + \lambda_3 \omega_3 \hat e_3</math> | ||
+ | |||
+ | |||
+ | ;Observation | ||
+ | : The Body frame (the reference frame attached to the spinning top) sees <math>\vec \omega</math> and <math>\vec L</math> precess about <math>\hat e_3</math> at an angular velocity of <math>\Omega_b</math> | ||
+ | |||
+ | |||
+ | |||
+ | [[File:TF_UCM_RBM_TopinSpaceFrame.png | 200 px]] | ||
[[Forest_Ugrad_ClassicalMechanics#Rigid_Body_Motion]] | [[Forest_Ugrad_ClassicalMechanics#Rigid_Body_Motion]] |
Latest revision as of 15:56, 11 December 2014
Rigid Body Motion
Rigid Body
- Rigidy Body
- A Rigid Body is a system involving a large number of point masses, called particles, whose distances between pairs of point particles remains constant even when the body is in motion or being acted upon by external force.
- Forces of Constraint
- The internal forces that maintain the constant distances between the different pairs of point masses.
Total Angular Momentum of a Rigid Body
Consider a rigid body that rotates about a fixed z-axis with the origin at point O.
let
- point to the center of mass of the object
- points to a mass element
- points from the center of mass to the mass element
the angular momentum of mass element
about the point O is given asThe total angular momentum about the point O is given as
This can be cast in term of the angular momentum about the center of mass and the angular momentum of the CM motion
- momentum of the center of Mass
- The location of the center of mass is at the derivative is also zero
- : The location of the CM is at 0
The total angular momentum is the sum of the angular momentum of the center of mass of a rigid body
and the angular momentum of the rigid body about the center of massPlanet example
What is the total angular momentum of the earth orbiting the sun?
There are two components
- = angular momentum of the earth orbiting about the sun
- = angular momentum of the earth orbiting about the earth's center of mass (Spin)
- is conserved and defined as Orbital angular momentum
If there is only a central force
Then
Thus
- = constant = Orbital angular momentum
The above is a good approximation even though the Sun's gravitational Field is not perfectly uniform
- How about ?
Since
as seen earlier
Then
The total angular momentum is the sum of the orbital angular momentum and the spin
- Precession of the Earth
http://courses.physics.northwestern.edu/Phyx125/Precession%20of%20the%20Earth.pdf
Total Kinetic energy of a Rigid Body
Using the same coordinate system as above
the kinetic energy of mass element about the point O is given as
The total Kinetic about the point O is given as
Rewriting this again in terms of the location of the CM of the body and the location of a mass element from the CM
For a Rigid body
- The internal kinetic energy is zero for a rigid body, otherwise it would be expanding
Total Potential energy of a Rigid Body
If all forces are conservative
then a Potential Energy may be defined
Then the potential energy of a rigid body is given by
- constant
for a rigid body the inter-particle separation distance
is constant so the internal potential of a rigid body does not change- Thus the kinematics of a Rigid body only needs to consider the potential energy of external forces.
Rotation about a fixed axis
Consider a Rigid body rotating with a speed
about a fixed axis (z-axis) with its origin at the point OThe total angular momentum about the point O is given as
As seen in the non-inertial reference frame chapter
thus
Moments (Products) of Inertia about the fixed axis
As seen above, the angular momentum of a rigid body rotating about a fixed axis ( the z-axis in this case) is given by
Although the object was only rotating about the z-axis, there can be angular momentum components along the other directions
In other words, unlike what you learned in introductory physics
- in general
instead the general expression for angular momentum is
- is the more general statement
The Moment of Inertia is the inertia of the rotating body for the angular momentum that is parallel to the angular velocity The other components of the angular momentum that are not along the direction of the angular velocity related to the angular velocity by the Product of Inertia
The Moment of Inertia for the above example is defined as
Let
- moment of inertia about the z-axis in the "z" ( ) direction.
Then
Similarly
The product of Inertia of a rigid body rotating about the z-axis for the angular momentum component along the x-axis is given by
The product of Inertia of a rigid body rotating about the z-axis for the angular momentum component along the y-axis
- Note the negative sign is indicative of the rigid body's resistance (inertia) to have an angular momentum component that is not in the same direction as its rotation.
- = angular momentum about the z-axis
- Example
- Moment of Inertia of a sphere
Find the moment of inertia of a uniform solid sphere of Radius (R) and mass (M) about its diameter.
Using a coordinate system with its origin at the center of the sphere
For a set of discrete masses
- moment of inertia about the z-axis in the "z" ( ) direction.
For a mass distribution the above summation is written in integral form as
one may define the sphere's density as
A differential mass is written as
- Imagine a differential circle in the x-y plane that you integrate along z
if using spherical coordinates
- The moment of Inertia of a hollow sphere of outer radius and inner radius
Moments of Inertia, like masses, add and subtract like scalers.
- = Moment of inertia of a sphere of inner radius and outer radius .
- = Moment of inertia of a sphere of inner radius and outer radius .
Moment of inertia tensor
The angular momentum for a body spinning about an arbitrary axis.
let
Consider a Rigid body rotating with a speed about a fixed axis (z-axis) with its origin at the point O
The total angular momentum about the point O is given as
As seen in the non-inertial reference frame chapter
thus
- The Moment of Inertia tensor is defined such that
- The diagonals of the moment of inertia tensor are the usual moments of inertia
- The off-diagonals are the six products of inertia
- where & represent components and
- where & represent components and
- Note
- The inertia tensor is symmetric ( i.e. it is it's own transpose) or in other words
- In other words the product of inertia of a body rotating about the i axis for the angular momentum along the j axis is the same as
- the product of inertia of a body rotating about the j axis for the angular momentum about the i axis
Inertia Tensor for a solid cone
Find the moment of inertia tensor for a uniform solid cone of mass
, height , and base radius spinning about its tip.Choose the z-axis so it is along the symmetry axis of the cone.
The mass density may be written as
Using cylindrical coordinates (
) the volume of a cone is given bythe radius of the base of the cone may be written as a function such that
.When
and whencalculating the moment of inertia about the z-axis :
Since
and the cone is symmetric in the x-y plane
The products of inertia
Product of Inertia of a rigid body that relates the x(y) component of the angular momentum for rotations about the y(x)-axis
From the viewpoint of the summation equation one can see that for every mass at point (x,z) there is an equal mass at the point (-x,z), Thus the sum will add to zero.
or mathematically
Product of Inertia of a rigid body that relates the x(z) component of the angular momentum for rotations about the z(x)-axis
Product of Inertia of a rigid body that relates the y(z) component of the angular momentum for rotations about the y(x)-axis
If the inertia tensor is diagonal (off diagnonal elements are zero)
Then The angular momentum points in the same direction as the angular velocity.
http://scienceworld.wolfram.com/physics/MomentofInertiaSphere.html
http://www.phys.ufl.edu/~mueller/PHY2048/2048_Chapter10_F08_Part2_lecture.pdf
Precession of a Top
As shown above,the angular momentum tensor of a top rotating about its axis of symmetry with respect to its tip is
Suppose the top make a small angle
with respect to the normal of the surface it is spinning on top of.The resulting torque from this gravitational force is
where
is a vector pointing to top's center of mass from the principal axes that make up a coordinate system whose origin is at the tip of the top- ( points normal to the surface that the top is spinning on)
Initially the angular velocity ( and angular momentum) are pointed along the principal axis.
Newton's second law for the angular motion
Let
- = precession frequency of the top
The axis of the top
rotates with an angular speed about the axis.The direction of the external torque
is in the direction at the instant shown in the above figure. As a result the top will rotate in the counter-clockwise direction about the z-axis as viewed from above the z-axis.Principal Axis
As seen in the case of a precessing top above, the physics of a rotating rigid body can be more easily described when the inertia tensor is diagonal. One need only find a coordinate system in which the tensor is diagonal in order to simplify the problem.
- Principal axis
- The axis of rotation for a rigid body in which the moment of inertia tensor is diagonal thereby the Angular momentum will be parallel to the angular velocity.
In the above example of the top ( solid cone), the x,y, and z axes of the chosen coordinate system are principal axes of inertia and the moments of inertia are the principal moments.
One can observe from the example of a spinning top, that a rotation axis around which the rigid body is symmetry will tend to be a principal axis.
Additionally, if the body has two perpendicular planes of reflection symmetry, then the three perpendicular axes defined by these two planes and a point of rotation are principal axes.
Existence of Principal Axes
Although it is easy to see which are the principal axes when the rigid body is symmetric, it is true that any rigid body's rotating about a point has three principal axes.
Finding the Principal axis of a Rigid body
Once the Inertia tensor is known, the principal axes of a rigid body may be found by "diagonalizing" the tensor matrix.
The process of "diagonalizing" the tensor matrix amounts to solving an eigenvalue problem.
The angular momentum of a rigid body can be given by
For the special case that the angular momentum (\vec L) is parallel to the angular velocity (\vec \omega)
Then
To determine the principal axes you determine the vector such that
In practice, one determines
( the eigen vectors) by solving for (the eigenvalues) such thatwhere
- = unit matrix
In order for the above matrix problem (system of 3 equations and 3 unknowns) to have a non-zero solution the secular equation must hold ( the determinant must be non-zero)
One solves the above equation by first finding the three eigenvalues that will make the above determinant zero and then use Gauss-Jordan elimination of the augmented matrix using each of the eigenvalues separately to find the eigenvector for that particular eigenvalue
For example:
Suppose the momentum tensor is given by
3 solutions
You can find the eigenvector for each eigenvalue by performing Gauss-Jordan row-column reduction of the augmented matrix
- for the eigenvalue
In augmented form:
Divide everything by 3
Add the second row to the first row
Add the first row to the second and third row
Divide the second row by 3
Subtract the first row by the second row
The above augmented matrix represents the following system of equations
row 1 :
row 2 :
row 1 :
is arbitarythus
but the above needs to be a unit vector such that
therefor
- for the eigenvalue
- All three components of add up to zero or in other words
The remaining two principal axis must be perpendicular to the principal axis with eigenvalue
.Otherwise the remaining two principal axes are arbitrary and indicate that the rigid body is symmetric about these two remaining axes.
BTW: The above moment of inertia represents the moment of inertia of a cube rotating about one of its corners. The principal axis
is a vector that traverses the diagonal of the cube.Euler's Equations
Space Frame and Body Frame
- Space Frame
- An inertial reference frame used to locate the center of mass of a rigid body
- Body Frame
- A non-inertial reference frame that uses the principal axes of a rotating rigid body
.
If a body has an angular momentum and principal moments and
Then the angular momentum
in the Body reference frame is given by
The torque in the Space reference frame is given by
is moving as seen in the Space frame
remembering that
one can see that
Euler's equation for the spinning top
In the case of the spinning top:
The external torque applied by gravity is always normal to the z-axis (
) so value of the torque is zero in the direction
but
so
the tops angular velocity along the symmetry axis is constant.
Euler's Equation for Zero Torque
All three principal moments are different
Two principal moments are the same value (Free precession)
The motion of a top is an example of this situation. As seen above for the motion of the top,
- The torque is alway zero in the z-direction
- constant
The remaining Euler equations are
IF the top is aligned with the z-axis then there will be no torque. (But as soon as it is misaligned there will be a torque)
The above Euler equations become
where
let
The we as a coupled set of equations as we saw before
using the trick of defining a complex frequency such that
we have the first order differential equation
- If we assume the initial conditions
- at and
Then
- Interpretation
- the two components, and , of the rigid body's angular velocity are rotating with an angular velocity about the axis as viewed in the Body reference frame.
- Body cone
- The Body cone is defined as the orbital path taken by the top as it rotates about the axis with the angular velocity . The shape forms a cone relative to the rotation point of the top (the top's tip)
The angular momentum (
) in the space frame is given by
- Observation
- The Body frame (the reference frame attached to the spinning top) sees and precess about at an angular velocity of