P-vector to spherical coordinates.
Status: vector/matrix support routine.
P can have any magnitude; only its direction is used.
If P is null, zero THETA and PHI are returned.
At either pole, zero THETA is returned.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=wp), | intent(in), | dimension(3) | :: | p | p-vector |
|
real(kind=wp), | intent(out) | :: | theta | longitude angle (radians) |
||
real(kind=wp), | intent(out) | :: | phi | latitude angle (radians) |
subroutine C2S ( p, theta, phi )
implicit none
real(wp),dimension(3),intent(in) :: p !! p-vector
real(wp),intent(out) :: theta !! longitude angle (radians)
real(wp),intent(out) :: phi !! latitude angle (radians)
real(wp) :: x, y, z, d2
x = p(1)
y = p(2)
z = p(3)
d2 = x*x + y*y
if ( d2 == 0.0_wp ) then
theta = 0.0_wp
else
theta = atan2(y,x)
end if
if ( z == 0.0_wp ) then
phi = 0.0_wp
else
phi = atan2(z,sqrt(d2))
end if
end subroutine C2S