k-tree
E-learning book

Equations of motion in cylindrical coordinates

If you are not familiar with the cylindrical coordinate system - study the article coordinate systems

Radius vector

To describe motion in cylindrical coordinates, we use three parameters: r, θ and z. The position of the point in cylindrical coordinates will be written as follows:

rp = r·ur + θ·uθ + z·uz (1) radius-vector, ui - unit vectors of axes

Here, the position of the point is expressed in the coordinates of the cylindrical coordinate system, these are the vectors ur, uθ and uz. The vector ur is always directed in the direction from the center to the point, the vector uθ is always perpendicular to the vector ur and is directed tangentially to a circle with radius r, the direction of the vector uz does not depend on the position of the point.

Speed

To obtain the velocity vector, we need to differentiate the radius vector by time:

v = drp/dt (2.1)
v = dr·ur/dt + dθ·uθ/dt + dz·uz/dt (2.2)

Since the vectors ur and uθ change when moving the material point, their time derivatives will not be zero, so we need to find their derivatives, for which we will translate them into Cartesian coordinate system:

ur = cosθux + sinθuy (3.1)
uθ = -sinθux + cosθuy (3.2)
uz = uz (3.3)

And differentiate by time:

dur/dt = dcosθux/dt + dsinθuy/dt = -θ'sinθux + θ'cosθuy = θ'uθ considering 3.2 duθ/dt = -dsinθux/dt + dcosθuy/dt = -θ'cosθux - θ'sinθuy = -θ'ur considering 3.1 duz/dt = 0

Translating the radius vector into a Cartesian coordinate system, we get:

r = r·ur + z·uz

Substituting the obtained differentiation results, we obtain the formula of the velocity vector for cylindrical coordinates:

v = dr/dt = d(r·ur + z·uz)/dt =
    r'·ur + r·u'r + z'·uz + z·u'z =
    r'·ur + rθ'·uθ + z'·uz velocity vector

Taking the coefficients of the unit vectors of the axes of cylindrical coordinates as corresponding to the velocity, we obtain:

vr = r'
vθ = r·θ'
vz = z'

Acceleration

To obtain the acceleration formula, we differentiate the speed by time:

a = d2rp/dt2 = dv/dt = d(r'·ur + rθ'·uθ + z'·uz)/dt
d(r'·ur)/dt = (r'' - r'·θ')·ur
d(θ'·uθ)/dt = (θ'' + r'·θ')·uθ
d(z'uz)/dt = z''uz components of the acceleration vector

Thus, the coefficients of the coordinates are:

ar = r'' - rθ'2
aθ = 2·r'θ' + rθ''
az = z''

If the motion occurs in two-dimensional coordinates r-θ, then to describe the motion, only the first two equations.

Centripetal and normal acceleration

The angle is determined by the offset points at a distance ds along the trajectory, the radial displacement is dr and the displacement in the direction of the tangent r dθ. Since these two components are mutually perpendicular, the angle θ can be defined from the equality:

tg θ = r dθ/ dr 

or

tg θ = r / dr/dθ

If the angle is positive, then it is measured from the radial line against the direction of the clock or in the positive direction of the angle. If the angle is negative, then it is measured in the opposite direction (clockwise).

For example, a cardioid described by the equation

r = a(1 + cos θ) 

dr / dθ = - a sin θ

when θ=30°, tg = a(1+ cos 30°)/(-a sen 30°) = -3.732, or θ = -75°, measured against the direction of the clock.

Algorithm for solving problems

Cylindrical coordinates are convenient to use for the analysis of systems in which the trajectories of motion are given relative to a radial line, or can be conveniently expressed in cylindrical coordinates. Having determined the coordinates of the point, the equations of motion can be applied to express the force in the form of acceleration components.

  1. Set the inertial coordinate system r, θ, z and draw a diagram of a free body
  2. Put the accelerations ar, aθ, az are directed along the positive direction axes r, θ, z if the directions are unknown
  3. Determine all unknown quantities in the problem
  4. Apply the equations of motion

  5. Define r and time derivatives dr/dt, d2r/dt2, dθ/dt, d2θ/dt2, d2z/dz2, then apply the acceleration equations
    • ar= d2r/dt2- r dθ2/dt
    • aθ = r d2θ/dt2+ 2 dr/dt dθ/dt
    • az= d2z/dt2
  6. If any of the acceleration components is calculated with a minus sign, then this acceleration component is directed along the negative direction of the coordinate axis

Do you find this article curious? /

Seen: 3 728