Add one pv-vector to another.
Status: vector/matrix support routine.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=wp), | intent(in), | dimension(3,2) | :: | a | first pv-vector |
|
real(kind=wp), | intent(in), | dimension(3,2) | :: | b | second pv-vector |
|
real(kind=wp), | intent(out), | dimension(3,2) | :: | apb | A + B |
subroutine PVPPV ( a, b, apb )
implicit none
real(wp),dimension(3,2),intent(in) :: a !! first pv-vector
real(wp),dimension(3,2),intent(in) :: b !! second pv-vector
real(wp),dimension(3,2),intent(out) :: apb !! A + B
integer :: i
do i=1,2
call PPP ( a(1,i), b(1,i), apb(1,i) )
end do
end subroutine PVPPV