2.7 Other coordinate systems

Within this book, we have operated and will continue to operate mostly within the Cartesian coordinate system. This coordinate system uses the distance from the origin along the x, y, and z (in 3D) axes to specify the location of a point in space. This is shown in Figure 2.11.

PIC

Figure 2.11: Graph showing the locating of a part in space by use of the Cartesian coordinate system

In this section, we will go over two other commonly used coordinate systems; cylindrical and spherical.

2.7.1 Cylindrical Coordinate System

The cylindrical coordinate system is also sometimes referred to as the polar coordinate system. This coordinate system keeps the z coordinate from the Cartesian coordinate system. However, the x and y coordinates from the Cartesian coordinate system are replaced with the axial distance (ρ) and azimuth (φ) coordinates. The ρ coordinate is the normal distance from the z axis to the point of interest. The φ coordinate is the angle between a axis extending from the origin and normal to the z axis (called an azimuth reference, symbolized by A) and a line extending from the origin onto a projection of the point of interest on the plane which includes the origin and is normal to the z axis. A visualization of the polar coordinate system is provided in Figure 2.12.

PIC

Figure 2.12: Graph showing the locating of a part in space by use of the Cylindrical/Polar coordinate system

Using geometry, we can derive the following equations to transform any polar coordinate to Cartesian.

x = ρcos(φ) y = ρsin(φ) z = z

2.7.2 Spherical Coordinate System

The spherical coordinate system defines a point in space based on the radius (r), the inclination (𝜃), and the azimuth (φ). The r coordinate is the distance from the origin to the point of interest. The (𝜃) coordinate is the angle between a axis extending from the origin (called an zenith reference, symbolized by Z) and the line connecting the origin and the point of interest. The φ coordinate is the angle between a axis extending from the origin and normal to the Z axis (called an azimuth reference, symbolized by A) and a line extending from the origin onto a projection of the point of interest on the plane which includes the origin and is normal to the Z axis. A visualization of the spherical coordinate system is provided in Figure 2.13.

PIC

Figure 2.13: Graph showing the locating of a part in space by use of the Spherical coordinate system. The Z represents the zenith reference axis

Using geometry, we can derive the following equations to transform any spherical coordinate to Cartesian.

x = rsin(𝜃)cos(φ) y = rsin(𝜃)sin(φ) z = rcos(𝜃)