Convert a p-vector into modulus and unit vector.
Status: vector/matrix support routine.
If P is null, the result is null. Otherwise the result is
a unit vector.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=wp), | intent(in), | dimension(3) | :: | p | p-vector |
|
real(kind=wp), | intent(out) | :: | r | modulus |
||
real(kind=wp), | intent(out), | dimension(3) | :: | u | unit vector |
subroutine PN ( p, r, u )
implicit none
real(wp),dimension(3),intent(in) :: p !! p-vector
real(wp),intent(out) :: r !! modulus
real(wp),dimension(3),intent(out) :: u !! unit vector
real(wp) :: w
! Obtain the modulus and test for zero.
call PM ( p, w )
if ( w == 0.0_wp ) then
! Null vector.
call ZP ( u )
else
! Unit vector.
call SXP ( 1.0_wp/w, p, u )
end if
! Return the modulus.
r = w
end subroutine PN