Rotate an r-matrix about the z-axis.
Status: vector/matrix support routine.
Calling this routine with positive PSI incorporates in the supplied r-matrix R an additional rotation, about the z-axis, anticlockwise as seen looking towards the origin from positive z.
The additional rotation can be represented by this matrix:
( + cos(PSI) + sin(PSI) 0 )
( )
( - sin(PSI) + cos(PSI) 0 )
( )
( 0 0 1 )
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=wp), | intent(in) | :: | psi | angle (radians) |
||
real(kind=wp), | intent(out), | dimension(3,3) | :: | r | r-matrix, rotated |
subroutine RZ ( psi, r )
implicit none
real(wp),intent(in) :: psi !! angle (radians)
real(wp),dimension(3,3),intent(out) :: r !! r-matrix, rotated
real(wp) :: s, c, a11, a12, a13, a21, a22, a23
s = sin(psi)
c = cos(psi)
a11 = c*r(1,1) + s*r(2,1)
a12 = c*r(1,2) + s*r(2,2)
a13 = c*r(1,3) + s*r(2,3)
a21 = - s*r(1,1) + c*r(2,1)
a22 = - s*r(1,2) + c*r(2,2)
a23 = - s*r(1,3) + c*r(2,3)
r(1,1) = a11
r(1,2) = a12
r(1,3) = a13
r(2,1) = a21
r(2,2) = a22
r(2,3) = a23
end subroutine RZ