Multiply a pv-vector by two scalars.
Status: vector/matrix support routine.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=wp), | intent(in) | :: | s1 | scalar to multiply position component by |
||
real(kind=wp), | intent(in) | :: | s2 | scalar to multiply velocity component by |
||
real(kind=wp), | intent(in), | dimension(3,2) | :: | pv | pv-vector |
|
real(kind=wp), | intent(out), | dimension(3,2) | :: | spv | pv-vector: p scaled by S1, v scaled by S2 |
subroutine S2XPV ( s1, s2, pv, spv )
implicit none
real(wp),intent(in) :: s1 !! scalar to multiply position component by
real(wp),intent(in) :: s2 !! scalar to multiply velocity component by
real(wp),dimension(3,2),intent(in) :: pv !! pv-vector
real(wp),dimension(3,2),intent(out) :: spv !! pv-vector: p scaled by S1, v scaled by S2
call SXP ( s1, pv(1,1), spv(1,1) )
call SXP ( s2, pv(1,2), spv(1,2) )
end subroutine S2XPV