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