Copy a position/velocity vector.
Status: vector/matrix support routine.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=wp), | intent(in), | dimension(3,2) | :: | pv | position/velocity vector to be copied |
|
real(kind=wp), | intent(out), | dimension(3,2) | :: | c | copy |
subroutine CPV ( pv, c )
implicit none
real(wp),dimension(3,2),intent(in) :: pv !! position/velocity vector to be copied
real(wp),dimension(3,2),intent(out) :: c !! copy
call CP ( pv(1,1), c(1,1) )
call CP ( pv(1,2), c(1,2) )
end subroutine CPV