Reference

Data Structures

UnitfulCoordinateSystems.CoordinateRectangularType
CoordinateRectangular{L} <: AbstractCoordinate{2} where {L<:Unitful.Length}

Used to represent a two-dimensional rectangular coordinate located on the xy-plane and defined by orthogonal x and y components.

source
UnitfulCoordinateSystems.CoordinatePolarType
CoordinatePolar{L,A} <: AbstractCoordinate{2} where {L<:Unitful.Length, A<:DimensionfulAngles.Angle}

Used to represent a two-dimensional polar coordinate located on the xy-plane and defined by: a radius r, and an azimuth angle phi measured relative to the positive x-axis.

source
UnitfulCoordinateSystems.CoordinateCylindricalType
CoordinateCylindrical{L,A} <: AbstractCoordinate{3} where {L<:Unitful.Length, A<:DimensionfulAngles.Angle}

Used to represent a three-dimensional cylindrical coordinate, defined by: a range rho from the origin to the point on the xy-plane subtended by the coordinate, an azimuth angle phi measured relative to the positive x-axis, and an orthogonal z component.

source
UnitfulCoordinateSystems.CoordinateSphericalType
CoordinateSpherical{L,A} <: AbstractCoordinate{3} where {L<:Unitful.Length, A<:DimensionfulAngles.Angle}

Used to represent a three-dimensional spherical coordinate, defined by: a radius r from the origin to the coordinate, a polar angle theta measured relative to the positive z-axis, and an azimuth angle phi measured relative to the positive x-axis.

source

Component Functions

These functions are not exported by default because they present a high probability of namespace collisions. Instead, they can be accessed by prepending the package name, i.e. UnitfulCoordinateSystems.x, or by importing them explicitly, e.g. using UnitfulCoordinateSystems: x, y, z.

UnitfulCoordinateSystems.phiFunction
phi(r̄::AbstractCoordinate)

Calculate the angle between the positive x-axis and the coordinate that subtends onto the xy-plane.

Note

phi, φ, and ϕ are all aliased to the same function.

source
UnitfulCoordinateSystems.φFunction
φ(r̄::AbstractCoordinate)

Calculate the angle between the positive x-axis and the coordinate that subtends onto the xy-plane.

Note

phi, φ, and ϕ are all aliased to the same function.

source
UnitfulCoordinateSystems.ϕFunction
ϕ(r̄::AbstractCoordinate)

Calculate the angle between the positive x-axis and the coordinate that subtends onto the xy-plane.

Note

phi, φ, and ϕ are all aliased to the same function.

source
UnitfulCoordinateSystems.thetaFunction
theta(r̄::AbstractCoordinate)

Calculate the angle between the positive z-axis and .

Note

theta, θ, and ϑ are all aliased to the same function.

source
UnitfulCoordinateSystems.θFunction
θ(r̄::AbstractCoordinate)

Calculate the angle between the positive z-axis and .

Note

theta, θ, and ϑ are all aliased to the same function.

source
UnitfulCoordinateSystems.ϑFunction
ϑ(r̄::AbstractCoordinate)

Calculate the angle between the positive z-axis and .

Note

theta, θ, and ϑ are all aliased to the same function.

source