Discard velocity component of a 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), | dimension(3) | :: | p | p-vector |
subroutine PV2P ( pv, p )
implicit none
real(wp),dimension(3,2),intent(in) :: pv !! pv-vector
real(wp),dimension(3),intent(out) :: p !! p-vector
call CP ( pv, p )
end subroutine PV2P