p-vector inner (=scalar=dot) product.
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) | :: | adb | A . B |
subroutine PDP ( a, b, adb )
implicit none
real(wp),dimension(3),intent(in) :: a !! first p-vector
real(wp),dimension(3),intent(in) :: b !! second p-vector
real(wp),intent(out) :: adb !! A . B
real(wp) :: w
integer :: i
w = 0.0_wp
do i=1,3
w = w + a(i)*b(i)
end do
adb = w
end subroutine PDP