From Surf Wiki (app.surf) — the open knowledge base
Cylindrical coordinate system
Coordinates comprising two distances and an angle
Coordinates comprising two distances and an angle
A cylindrical coordinate system is a three-dimensional coordinate system that specifies point positions around a main axis (a chosen directed line) and an auxiliary axis (a reference ray). The three cylindrical coordinates are: the point perpendicular distance ρ from the main axis; the point signed distance z along the main axis from a chosen origin; and the plane angle φ of the point projection on a reference plane (passing through the origin and perpendicular to the main axis)
The main axis is variously called the cylindrical or longitudinal axis. The auxiliary axis is called the polar axis, which lies in the reference plane, starting at the origin, and pointing in the reference direction. Other directions perpendicular to the longitudinal axis are called radial lines.
The distance from the axis may be called the radial distance or radius, while the angular coordinate is sometimes referred to as the angular position or as the azimuth. The radius and the azimuth are together called the polar coordinates, as they correspond to a two-dimensional polar coordinate system in the plane through the point, parallel to the reference plane. The third coordinate may be called the height or altitude (if the reference plane is considered horizontal), longitudinal position, or axial position.
Cylindrical coordinates are useful in connection with objects and phenomena that have some rotational symmetry about the longitudinal axis, such as water flow in a straight pipe with round cross-section, heat distribution in a metal cylinder, electromagnetic fields produced by an electric current in a long, straight wire, accretion disks in astronomy, and so on.
They are sometimes called cylindrical polar coordinates or polar cylindrical coordinates, and are sometimes used to specify the position of stars in a galaxy (galactocentric cylindrical polar coordinates).
Definition
The three coordinates (ρ, φ, z) of a point P are defined as:
- The radial distance ρ is the Euclidean distance from the z-axis to the point P.
- The azimuth φ is the angle between the reference direction on the chosen plane and the line from the origin to the projection of P on the plane.
- The axial coordinate or height z is the signed distance from the chosen plane to the point P.
Unique cylindrical coordinates
As in polar coordinates, the same point with cylindrical coordinates (ρ, φ, z) has infinitely many equivalent coordinates, namely (ρ, φ ± n×360°, z) and (−ρ, φ ± (2n + 1)×180°, z), where n is any integer. Moreover, if the radius ρ is zero, the azimuth is arbitrary.
In situations where someone wants a unique set of coordinates for each point, one may restrict the radius to be non-negative (ρ ≥ 0) and the azimuth φ to lie in a specific interval spanning 360°, such as [−180°,+180°] or [0,360°].
Conventions
The notation for cylindrical coordinates is not uniform. The ISO standard 31-11 recommends (ρ, φ, z), where ρ is the radial coordinate, φ the azimuth, and z the height. However, the radius is also often denoted r or s, the azimuth by θ or t, and the third coordinate by h or (if the cylindrical axis is considered horizontal) x, or any context-specific letter.


In concrete situations, and in many mathematical illustrations, a positive angular coordinate is measured counterclockwise as seen from any point with positive height.
Coordinate system conversions
The cylindrical coordinate system is one of many three-dimensional coordinate systems. The following formulae may be used to convert between them.
Cartesian coordinates
For the conversion between cylindrical and Cartesian coordinates, it is convenient to assume that the reference plane of the former is the Cartesian xy-plane (with equation ), and the cylindrical axis is the Cartesian z-axis. Then the z-coordinate is the same in both systems, and the correspondence between cylindrical (ρ, φ, z) and Cartesian (x, y, z) are the same as for polar coordinates, namely \begin{align} x &= \rho \cos \varphi \ y &= \rho \sin \varphi \ z &= z \end{align} in one direction, and \begin{align} \rho &= \sqrt{x^2+y^2} \ \varphi &= \begin{cases} \text{indeterminate} & \text{if } x = 0 \text{ and } y = 0\ \arcsin\left(\frac{y}{\rho}\right) & \text{if } x \geq 0 \ -\arcsin\left(\frac{y}{\rho}\right) + \pi & \mbox{if } x -\arcsin\left(\frac{y}{\rho}\right) - \pi & \mbox{if } x \end{cases} \end{align} in the other. The arcsine function is the inverse of the sine function, and is assumed to return an angle in the range [−, +] = [−90°, +90°]. These formulas yield an azimuth φ in the range [−180°, +180°].
By using the arctangent function that returns also an angle in the range [−, +] = [−90°, +90°], one may also compute \varphi without computing \rho first \begin{align} \varphi &= \begin{cases} \text{indeterminate} & \text{if } x = 0 \text{ and } y = 0\ \frac\pi2\frac y{|y|} & \text{if } x = 0 \text{ and } y \ne 0\ \arctan\left(\frac{y}{x}\right) & \mbox{if } x 0 \ \arctan\left(\frac{y}{x}\right)+\pi & \mbox{if } x \arctan\left(\frac{y}{x}\right)-\pi & \mbox{if } x \end{cases} \end{align} For other formulas, see the article Polar coordinate system.
Many modern programming languages provide a function that will compute the correct azimuth φ, in the range (−π, π), given x and y, without the need to perform a case analysis as above. For example, this function is called by in the C programming language, and in Common Lisp.
Spherical coordinates
Spherical coordinates (radius r, elevation or inclination θ, azimuth φ), may be converted to or from cylindrical coordinates, depending on whether θ represents elevation or inclination, by the following:
| Conversion to: | Coordinate | θ is elevation | θ is inclination | Cylindrical | ρ = | φ = | z = | Spherical | r = | θ = | φ = |
|---|---|---|---|---|---|---|---|---|---|---|---|
| r cos θ | r sin θ | ||||||||||
| φ | |||||||||||
| r sin θ | r cos θ | ||||||||||
| \sqrt{\rho^2+z^2} | |||||||||||
| \arctan\left(\frac{z}{\rho}\right) | \arctan\left(\frac{\rho}{z}\right) | ||||||||||
| φ |
Line and volume elements
In many problems involving cylindrical polar coordinates, it is useful to know the line and volume elements; these are used in integration to solve problems involving paths and volumes.
The line element is \mathrm{d}\boldsymbol{r} = \mathrm{d}\rho,\boldsymbol{\hat{\rho}} + \rho,\mathrm{d}\varphi,\boldsymbol{\hat{\varphi}} + \mathrm{d}z,\boldsymbol{\hat{z}}.
The volume element is \mathrm{d}V = \rho,\mathrm{d}\rho,\mathrm{d}\varphi,\mathrm{d}z.
The surface element in a surface of constant radius ρ (a vertical cylinder) is \mathrm{d}S_\rho = \rho,\mathrm{d}\varphi,\mathrm{d}z.
The surface element in a surface of constant azimuth φ (a vertical half-plane) is \mathrm{d}S_\varphi = \mathrm{d}\rho,\mathrm{d}z.
The surface element in a surface of constant height z (a horizontal plane) is \mathrm{d}S_z = \rho,\mathrm{d}\rho,\mathrm{d}\varphi.
The del operator in this system leads to the following expressions for gradient, divergence, curl and Laplacian: \begin{align} \nabla f &= \frac{\partial f}{\partial \rho}\boldsymbol{\hat{\rho}} + \frac{1}{\rho}\frac{\partial f}{\partial \varphi}\boldsymbol{\hat{\varphi}} + \frac{\partial f}{\partial z}\boldsymbol{\hat{z}} \[8px]
\nabla \cdot \boldsymbol{A} &= \frac{1}{\rho}\frac{\partial}{\partial \rho}\left(\rho A_\rho\right) + \frac{1}{\rho} \frac{\partial A_\varphi}{\partial \varphi} + \frac{\partial A_z}{\partial z} \[8px]
\nabla \times \boldsymbol{A} &= \left(\frac{1}{\rho}\frac{\partial A_z}{\partial \varphi} - \frac{\partial A_\varphi}{\partial z}\right)\boldsymbol{\hat{\rho}} + \left(\frac{\partial A_\rho}{\partial z} - \frac{\partial A_z}{\partial \rho}\right)\boldsymbol{\hat{\varphi}} + \frac{1}{\rho}\left(\frac{\partial}{\partial \rho}\left(\rho A_\varphi\right) - \frac{\partial A_\rho}{\partial \varphi}\right) \boldsymbol{\hat{z}} \[8px]
\nabla^2 f &= \frac{1}{\rho} \frac{\partial}{\partial \rho} \left(\rho \frac{\partial f}{\partial \rho}\right) + \frac{1}{\rho^2} \frac{\partial^2 f}{\partial \varphi^2} + \frac{\partial^2 f}{\partial z^2} \end{align}
Cylindrical harmonics
The solutions to the Laplace equation in a system with cylindrical symmetry are called cylindrical harmonics.
Kinematics
In a cylindrical coordinate system, the position of a particle can be written as \boldsymbol{r} = \rho,\boldsymbol{\hat \rho} + z,\boldsymbol{\hat z}. The velocity of the particle is the time derivative of its position, \boldsymbol{v} = \frac{\mathrm{d}\boldsymbol{r}}{\mathrm{d}t} = \dot{\rho},\boldsymbol{\hat \rho} + \rho,\dot\varphi,\hat{\boldsymbol{\varphi}} + \dot{z},\hat{\boldsymbol{z}}, where the term \rho \dot\varphi\hat\varphi comes from the Poisson formula \frac{\mathrm d\hat\rho}{\mathrm dt} = \dot\varphi\hat z\times \hat\rho . Its acceleration is \boldsymbol{a} = \frac{\mathrm{d}\boldsymbol{v}}{\mathrm{d}t} = \left( \ddot{\rho} - \rho,\dot\varphi^2 \right)\boldsymbol{\hat \rho} + \left( 2\dot{\rho},\dot\varphi + \rho,\ddot\varphi \right) \hat{\boldsymbol\varphi } + \ddot{z},\hat{\boldsymbol{z}}
References
References
- (1 January 2002). "Resonant electron beam interaction with several lower hybrid waves". Physics of Plasmas.
- (1997). "Solitary Vortex Pairs in Viscoelastic Couette Flow". Physical Review Letters.
- Szymanski, J. E.. (1989). "Basic Mathematics for Electronic Engineers: models and applications". Taylor & Francis.
- Nunn, Robert H.. (1989). "Intermediate Fluid Mechanics". Taylor & Francis.
- (2007). "Galaxies in the Universe: An Introduction". Cambridge University Press.
- (2005). "Classical Mechanics". University Science Books.
This article was imported from Wikipedia and is available under the Creative Commons Attribution-ShareAlike 4.0 License. Content has been adapted to SurfDoc format. Original contributors can be found on the article history page.
Ask Mako anything about Cylindrical coordinate system — get instant answers, deeper analysis, and related topics.
Research with MakoFree with your Surf account
Create a free account to save articles, ask Mako questions, and organize your research.
Sign up freeThis content may have been generated or modified by AI. CloudSurf Software LLC is not responsible for the accuracy, completeness, or reliability of AI-generated content. Always verify important information from primary sources.
Report