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