Vector fields in cylindrical and spherical coordinates

Contents

Vector fields in cylindrical coordinates

Vectors are defined in cylindrical coordinates by (ρ,φ,z), where

  • ρ is the length of the vector projected onto the X-Y-plane,
  • φ is the angle of the projected vector with the positive X-axis (0 <= φ < 2π),
  • z is the regular z-coordinate.

(ρ,φ,z) is given in cartesian coordinates by:

<math>\left[\begin{matrix}
   \rho & = & \sqrt{x^2 + y^2} \\
   \phi & = & \operatorname{atan2}(y, x) \\
   z & = & z \end{matrix}\right.<math>

or inversely by:

<math>\left[\begin{matrix}
   x & = & \rho\cos\phi \\
   y & = & \rho\sin\phi \\
   z & = & z \end{matrix}\right.<math>

Any vector field can be written in terms of the unit vectors as:

<math>\mathbf A = A_x\mathbf{\hat x} + A_y\mathbf{\hat y} + A_z\mathbf{\hat z}
                = A_\rho\boldsymbol{\hat \rho} + A_\phi\boldsymbol{\hat \phi} + A_z\boldsymbol{\hat z}<math>

The cylindrical unit vectors are related to the cartesian unit vectors by:

<math>\begin{bmatrix}\boldsymbol\hat\rho \\ \boldsymbol\hat\phi \\ \boldsymbol\hat z\end{bmatrix}
 = \begin{bmatrix} \cos\phi & \sin\phi & 0 \\
                  -\sin\phi & \cos\phi & 0 \\
                  0 & 0 & 1 \end{bmatrix}
   \begin{bmatrix} \mathbf\hat x \\ \mathbf\hat y \\ \mathbf\hat z \end{bmatrix}<math>

Time derivative of a vector field in cylindrical coordinates

To find out how the vector field A changes in time we calculate the time derivatives. In cartesian coordinates this is simply:

<math>\mathbf\dot A = \dot A_x \mathbf\hat x + \dot A_y \mathbf\hat y + \dot A_z \mathbf\hat z<math>

However, in cylindrical coordinates this becomes:

<math>\mathbf\dot A = \dot A_\rho \boldsymbol\hat\rho + A_\rho \boldsymbol\dot\hat\rho
 + \dot A_\phi \boldsymbol\hat\phi + A_\phi \boldsymbol\dot\hat\phi
 + \dot A_z \boldsymbol\hat z + A_z \boldsymbol\dot\hat z<math>

We need the time derivatives of the unit vectors. They are given by:

<math>\left[\begin{matrix}
 \boldsymbol\dot\hat\rho & = & \dot\phi \boldsymbol\hat\phi \\
 \boldsymbol\dot\hat\phi & = & - \dot\phi \boldsymbol\hat\rho \\
 \boldsymbol\dot\hat z   & = & 0 \end{matrix}\right.<math>

So the time derivative simplifies to:

<math>\mathbf\dot A = \boldsymbol\hat\rho (\dot A_\rho - A_\phi \dot\phi)
 + \boldsymbol\hat\phi (\dot A_\phi + A_\rho \dot\phi)
 + \boldsymbol\hat z \dot A_z<math>

Gradient, divergence, curl, and laplacian in cylindrical coordinates

The specification of gradient, divergence, curl, and laplacian in cylindrical coordinates can be found in the article Nabla in cylindrical and spherical coordinates.

Vector fields in spherical coordinates

Vectors are defined in spherical coordinates by (r,θ,φ), where

  • r is the length of the vector,
  • θ is the angle with the positive Z-axis (0 <= θ <= π),
  • φ is the angle with the X-Z-plane (0 <= φ < 2π).

(r,θ,φ) is given in cartesian coordinates by:

<math>\left[\begin{matrix}
   r & = & \sqrt{x^2 + y^2 + z^2} \\
   \theta & = & \arccos(z / r) \\
   \phi & = & \operatorname{atan2}(y, x) \end{matrix}\right.<math>

or inversely by:

<math>\left[\begin{matrix}
   x & = & r\sin\theta\cos\phi \\
   y & = & r\sin\theta\sin\phi \\
   z & = & r\cos\theta \end{matrix}\right.<math> 

Any vector field can be written in terms of the unit vectors as:

<math>\mathbf A = A_x\mathbf{\hat x} + A_y\mathbf{\hat y} + A_z\mathbf{\hat z}
                = A_r\boldsymbol{\hat r} + A_\theta\boldsymbol{\hat \theta} + A_\phi\boldsymbol{\hat \phi}<math>

The spherical unit vectors are related to the cartesian unit vectors by:

<math>\begin{bmatrix}\boldsymbol\hat r \\ \boldsymbol\hat\theta \\ \boldsymbol\hat\phi \end{bmatrix}
 = \begin{bmatrix} \sin\theta\cos\phi & \sin\theta\sin\phi & \cos\theta \\
                   \cos\theta\cos\phi & \cos\theta\sin\phi & -\sin\theta \\
                   -\sin\phi          & \cos\phi           & 0 \end{bmatrix}
   \begin{bmatrix} \mathbf\hat x \\ \mathbf\hat y \\ \mathbf\hat z \end{bmatrix}<math>

Time derivative of a vector field in spherical coordinates

To find out how the vector field A changes in time we calculate the time derivatives. In cartesian coordinates this is simply:

<math>\mathbf\dot A = \dot A_x \mathbf\hat x + \dot A_y \mathbf\hat y + \dot A_z \mathbf\hat z<math>

However, in spherical coordinates this becomes:

<math>\mathbf\dot A = \dot A_r \boldsymbol\hat r + A_r \boldsymbol\dot\hat r
 + \dot A_\theta \boldsymbol\hat\theta + A_\theta \boldsymbol\dot\hat\theta
 + \dot A_\phi \boldsymbol\hat\phi + A_\phi \boldsymbol\dot\hat\phi<math>

We need the time derivatives of the unit vectors. They are given by:

<math>\begin{bmatrix}\boldsymbol\dot\hat r \\ \boldsymbol\dot\hat\theta \\ \boldsymbol\dot\hat\phi \end{bmatrix}
 = \begin{bmatrix} 0           & \dot\theta & \dot\phi \sin\theta \\
                   -\dot\theta & 0          & \dot\phi \cos\theta \\
                   -\dot\phi \sin\theta & -\dot\phi \cos\theta & 0 \end{bmatrix}
   \begin{bmatrix} \boldsymbol\hat r \\ \boldsymbol\hat\theta \\ \boldsymbol\hat\phi \end{bmatrix}<math>

So the time derivative becomes:

<math>\mathbf\dot A = \boldsymbol\hat r (\dot A_r - A_\theta \dot\theta - A_\phi \dot\phi \sin\theta)
 + \boldsymbol\hat\theta (\dot A_\theta + A_r \dot\theta - A_\phi \dot\phi \cos\theta)
 + \boldsymbol\hat\phi (\dot A_\phi + A_r \dot\phi \sin\theta + A_\phi \dot\phi \cos\theta)<math>

Gradient, divergence, curl, and laplacian in spherical coordinates

The specification of gradient, divergence, curl, and laplacian in spherical coordinates can be found in the article Nabla in cylindrical and spherical coordinates.

Navigation

  • Art and Cultures
    • Art (https://academickids.com/encyclopedia/index.php/Art)
    • Architecture (https://academickids.com/encyclopedia/index.php/Architecture)
    • Cultures (https://www.academickids.com/encyclopedia/index.php/Cultures)
    • Music (https://www.academickids.com/encyclopedia/index.php/Music)
    • Musical Instruments (http://academickids.com/encyclopedia/index.php/List_of_musical_instruments)
  • Biographies (http://www.academickids.com/encyclopedia/index.php/Biographies)
  • Clipart (http://www.academickids.com/encyclopedia/index.php/Clipart)
  • Geography (http://www.academickids.com/encyclopedia/index.php/Geography)
    • Countries of the World (http://www.academickids.com/encyclopedia/index.php/Countries)
    • Maps (http://www.academickids.com/encyclopedia/index.php/Maps)
    • Flags (http://www.academickids.com/encyclopedia/index.php/Flags)
    • Continents (http://www.academickids.com/encyclopedia/index.php/Continents)
  • History (http://www.academickids.com/encyclopedia/index.php/History)
    • Ancient Civilizations (http://www.academickids.com/encyclopedia/index.php/Ancient_Civilizations)
    • Industrial Revolution (http://www.academickids.com/encyclopedia/index.php/Industrial_Revolution)
    • Middle Ages (http://www.academickids.com/encyclopedia/index.php/Middle_Ages)
    • Prehistory (http://www.academickids.com/encyclopedia/index.php/Prehistory)
    • Renaissance (http://www.academickids.com/encyclopedia/index.php/Renaissance)
    • Timelines (http://www.academickids.com/encyclopedia/index.php/Timelines)
    • United States (http://www.academickids.com/encyclopedia/index.php/United_States)
    • Wars (http://www.academickids.com/encyclopedia/index.php/Wars)
    • World History (http://www.academickids.com/encyclopedia/index.php/History_of_the_world)
  • Human Body (http://www.academickids.com/encyclopedia/index.php/Human_Body)
  • Mathematics (http://www.academickids.com/encyclopedia/index.php/Mathematics)
  • Reference (http://www.academickids.com/encyclopedia/index.php/Reference)
  • Science (http://www.academickids.com/encyclopedia/index.php/Science)
    • Animals (http://www.academickids.com/encyclopedia/index.php/Animals)
    • Aviation (http://www.academickids.com/encyclopedia/index.php/Aviation)
    • Dinosaurs (http://www.academickids.com/encyclopedia/index.php/Dinosaurs)
    • Earth (http://www.academickids.com/encyclopedia/index.php/Earth)
    • Inventions (http://www.academickids.com/encyclopedia/index.php/Inventions)
    • Physical Science (http://www.academickids.com/encyclopedia/index.php/Physical_Science)
    • Plants (http://www.academickids.com/encyclopedia/index.php/Plants)
    • Scientists (http://www.academickids.com/encyclopedia/index.php/Scientists)
  • Social Studies (http://www.academickids.com/encyclopedia/index.php/Social_Studies)
    • Anthropology (http://www.academickids.com/encyclopedia/index.php/Anthropology)
    • Economics (http://www.academickids.com/encyclopedia/index.php/Economics)
    • Government (http://www.academickids.com/encyclopedia/index.php/Government)
    • Religion (http://www.academickids.com/encyclopedia/index.php/Religion)
    • Holidays (http://www.academickids.com/encyclopedia/index.php/Holidays)
  • Space and Astronomy
    • Solar System (http://www.academickids.com/encyclopedia/index.php/Solar_System)
    • Planets (http://www.academickids.com/encyclopedia/index.php/Planets)
  • Sports (http://www.academickids.com/encyclopedia/index.php/Sports)
  • Timelines (http://www.academickids.com/encyclopedia/index.php/Timelines)
  • Weather (http://www.academickids.com/encyclopedia/index.php/Weather)
  • US States (http://www.academickids.com/encyclopedia/index.php/US_States)

Information

  • Home Page (http://academickids.com/encyclopedia/index.php)
  • Contact Us (http://www.academickids.com/encyclopedia/index.php/Contactus)

  • Clip Art (http://classroomclipart.com)
Toolbox
Personal tools