Angular separation between two p-vectors.
Status: vector/matrix support routine.
If either vector is null, a zero result is returned.
The angular separation is most simply formulated in terms of scalar product. However, this gives poor accuracy for angles near zero and pi. The present algorithm uses both cross product and dot product, to deliver full accuracy whatever the size of the angle.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=wp), | intent(in), | dimension(3) | :: | a | first p-vector (not necessarily unit length) |
|
real(kind=wp), | intent(in), | dimension(3) | :: | b | second p-vector (not necessarily unit length) |
|
real(kind=wp), | intent(out) | :: | s | angular separation (radians, always positive) |
subroutine SEPP ( a, b, s )
implicit none
real(wp),dimension(3),intent(in) :: a !! first p-vector (not necessarily unit length)
real(wp),dimension(3),intent(in) :: b !! second p-vector (not necessarily unit length)
real(wp),intent(out) :: s !! angular separation (radians, always positive)
real(wp) :: axb(3), ss, cs
! Sine of the angle between the vectors, multiplied by the two moduli.
call PXP ( a, b, axb )
call PM ( axb, ss )
! Cosine of the angle, multiplied by the two moduli.
call PDP ( a, b, cs )
! The angle.
if ( ss/=0.0_wp .or. cs/=0.0_wp ) then
s = atan2(ss,cs)
else
s = 0.0_wp
end if
end subroutine SEPP