Convert spherical coordinates to Cartesian.
Status: vector/matrix support routine.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=wp), | intent(in) | :: | theta | longitude angle (radians) |
||
real(kind=wp), | intent(in) | :: | phi | latitude angle (radians) |
||
real(kind=wp), | intent(out), | dimension(3) | :: | c | direction cosines |
subroutine S2C ( theta, phi, c )
implicit none
real(wp),intent(in) :: theta !! longitude angle (radians)
real(wp),intent(in) :: phi !! latitude angle (radians)
real(wp),dimension(3),intent(out) :: c !! direction cosines
real(wp) :: cp
cp = cos(phi)
c(1) = cos(theta) * cp
c(2) = sin(theta) * cp
c(3) = sin(phi)
end subroutine S2C