Modulus of pv-vector.
Status: vector/matrix support routine.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=wp), | intent(in), | dimension(3,2) | :: | pv | pv-vector |
|
real(kind=wp), | intent(out) | :: | r | modulus of position component |
||
real(kind=wp), | intent(out) | :: | s | modulus of velocity component |
subroutine PVM ( pv, r, s )
implicit none
real(wp),dimension(3,2),intent(in) :: pv !! pv-vector
real(wp),intent(out) :: r !! modulus of position component
real(wp),intent(out) :: s !! modulus of velocity component
! Distance.
call PM ( pv(1,1), r )
! Speed.
call PM ( pv(1,2), s )
end subroutine PVM