Rotation about a fixed axis describes rigid body motion where every point moves in a circular path about a stationary axis.

This concept is commonly applied in the design and analysis of rotating machinery, such as turbines, gears, shafts, motors, etc.

We can work with angular parameters using both vector and scalar kinematics depending on whether we treat motion of the object as two or three-dimensional.


Vector Kinematics

Angular parameters () are pseudo-vectors (also known as axial vectors) directed along the axis of rotation. We use unit vector to show that they rotate about the -axis.

  • Angular Velocity Vector:
  • Angular Acceleration Vector:

For a position vector measured from any point on the rotation axis, we can obtain the velocity and acceleration vector using cross-product.

  • Velocity Vector:
  • Acceleration Vector:

For , the position vector must point toward the axis of rotation.


Scalar Kinematics

All points on a rotating body share the same angular parameters:

However, each point’s linear parameters () scale linearly based on the distance from the axis of rotation.

QuantityAngular DomainLinear DomainRelationship
Position/Displacement
Velocity
Tangential Acceleration
Normal / Centripetal AccelerationN/A

Total Acceleration Magnitude:


Constant Angular Acceleration Equations

When angular acceleration is constant, we get a set of simplified equations analogous to 1D linear motion.

  • )

const current = dv.current();
 
if (current && current.file.tags.some(t => t.toLowerCase() === "#topic")) {
    const inlinks = current.file.inlinks;
 
    // Split backlinks: general notes vs. lecture notes
    const lectureLinks = inlinks.where(l => l.path.includes("/Lecture Notes/"));
    const otherLinks = inlinks.where(l => !l.path.includes("/Lecture Notes/"));
 
    if (otherLinks.length > 0) {
        dv.header(4, "Links To This Page");
        dv.list(otherLinks);
    }
 
    if (lectureLinks.length > 0) {
        dv.header(4, "Referenced In Lecture Notes");
        dv.list(lectureLinks);
    }
}