P-vector plus scaled p-vector.
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) | :: | s | scalar (multiplier for B) |
||
real(kind=wp), | intent(in), | dimension(3) | :: | b | second p-vector |
|
real(kind=wp), | intent(out), | dimension(3) | :: | apsb | A + S*B |
subroutine PPSP ( a, s, b, apsb )
implicit none
real(wp),dimension(3),intent(in) :: a !! first p-vector
real(wp),intent(in) :: s !! scalar (multiplier for B)
real(wp),dimension(3),intent(in) :: b !! second p-vector
real(wp),dimension(3),intent(out) :: apsb !! A + S*B
integer :: i
do i=1,3
apsb(i) = a(i) + s*b(i)
end do
end subroutine PPSP