Extend a p-vector to a pv-vector by appending a zero velocity.
Status: vector/matrix support routine.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=wp), | intent(in), | dimension(3) | :: | p | p-vector |
|
real(kind=wp), | intent(out), | dimension(3,2) | :: | pv | pv-vector |
subroutine P2PV ( p, pv )
implicit none
real(wp),dimension(3),intent(in) :: p !! p-vector
real(wp),dimension(3,2),intent(out) :: pv !! pv-vector
call CP ( p, pv(1,1) )
call ZP ( pv(1,2) )
end subroutine P2PV