Form the r-matrix corresponding to a given r-vector.
Status: vector/matrix support routine.
A rotation matrix describes a rotation through some angle about some arbitrary axis called the Euler axis. The "rotation vector" supplied to this routine has the same direction as the Euler axis, and its magnitude is the angle in radians.
If W is null, the unit matrix is returned.
The reference frame rotates clockwise as seen looking along the rotation vector from the origin.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=wp), | intent(in), | dimension(3) | :: | w | rotation vector (Note 1) |
|
real(kind=wp), | intent(out), | dimension(3,3) | :: | r | rotation matrix |
subroutine RV2M ( w, r )
implicit none
real(wp),dimension(3),intent(in) :: w !! rotation vector (Note 1)
real(wp),dimension(3,3),intent(out) :: r !! rotation matrix
real(wp) :: x, y, z, phi, s, c, f
! Euler angle (magnitude of rotation vector) and functions.
x = w(1)
y = w(2)
z = w(3)
phi = sqrt(x*x + y*y + z*z)
s = sin(phi)
c = cos(phi)
f = 1.0_wp - c
! Euler axis (direction of rotation vector), perhaps null.
if ( phi > 0.0_wp ) then
x = x / phi
y = y / phi
z = z / phi
end if
! Form the rotation matrix.
r(1,1) = x*x*f + c
r(1,2) = x*y*f + z*s
r(1,3) = x*z*f - y*s
r(2,1) = y*x*f - z*s
r(2,2) = y*y*f + c
r(2,3) = y*z*f + x*s
r(3,1) = z*x*f + y*s
r(3,2) = z*y*f - x*s
r(3,3) = z*z*f + c
end subroutine RV2M