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