Form rotation matrix given the Fukushima-Williams angles.
Status: support routine.
Naming the following points:
e = J2000.0 ecliptic pole,
p = GCRS pole,
E = ecliptic pole of date,
and P = CIP,
the four Fukushima-Williams angles are as follows:
GAMB = gamma = epE
PHIB = phi = pE
PSI = psi = pEP
EPS = epsilon = EP
The matrix representing the combined effects of frame bias, precession and nutation is:
NxPxB = R_1(-EPS).R_3(-PSI).R_1(PHIB).R_3(GAMB)
Three different matrices can be constructed, depending on the supplied angles:
To obtain the nutation x precession x frame bias matrix, generate the four precession angles, generate the nutation components and add them to the psi_bar and epsilon_A angles, and call the present routine.
To obtain the precession x frame bias matrix, generate the four precession angles and call the present routine.
To obtain the frame bias matrix, generate the four precession angles for date J2000.0 and call the present routine.
The nutation-only and precession-only matrices can if necessary be obtained by combining these three appropriately.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=wp), | intent(in) | :: | gamb | F-W angle gamma_bar (radians) |
||
real(kind=wp), | intent(in) | :: | phib | F-W angle phi_bar (radians) |
||
real(kind=wp), | intent(in) | :: | psi | F-W angle psi (radians) |
||
real(kind=wp), | intent(in) | :: | eps | F-W angle epsilon (radians) |
||
real(kind=wp), | intent(out), | dimension(3,3) | :: | r | rotation matrix |
subroutine FW2M ( gamb, phib, psi, eps, r )
implicit none
real(wp),intent(in) :: gamb !! F-W angle gamma_bar (radians)
real(wp),intent(in) :: phib !! F-W angle phi_bar (radians)
real(wp),intent(in) :: psi !! F-W angle psi (radians)
real(wp),intent(in) :: eps !! F-W angle epsilon (radians)
real(wp),dimension(3,3),intent(out) :: r !! rotation matrix
! Construct the matrix.
call IR ( r )
call RZ ( gamb, r )
call RX ( phib, r )
call RZ ( -psi, r )
call RX ( -eps, r )
end subroutine FW2M