Update a pv-vector.
Status: vector/matrix support routine.
"Update" means "refer the position component of the vector to a new epoch DT time units from the existing epoch".
The time units of DT must match those of the velocity.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=wp), | intent(in) | :: | dt | time interval |
||
real(kind=wp), | intent(in), | dimension(3,2) | :: | pv | pv-vector |
|
real(kind=wp), | intent(out), | dimension(3,2) | :: | upv | p updated, v unchanged |
subroutine PVU ( dt, pv, upv )
implicit none
real(wp),intent(in) :: dt !! time interval
real(wp),dimension(3,2),intent(in) :: pv !! pv-vector
real(wp),dimension(3,2),intent(out) :: upv !! p updated, v unchanged
call PPSP ( pv(1,1), dt, pv(1,2), upv(1,1) )
call CP ( pv(1,2), upv(1,2) )
end subroutine PVU