CIP X,Y given Fukushima-Williams bias-precession-nutation 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(-EPSA).R_3(-PSI).R_1(PHIB).R_3(GAMB)
The returned values x,y are elements (3,1) and (3,2) of the matrix. Near J2000.0, they are essentially angles in radians.
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) | :: | x | CIP unit vector X,Y |
||
real(kind=wp), | intent(out) | :: | y | CIP unit vector X,Y |
subroutine FW2XY ( gamb, phib, psi, eps, x, y )
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),intent(out) :: x !! CIP unit vector X,Y
real(wp),intent(out) :: y !! CIP unit vector X,Y
real(wp) :: r(3,3)
! Form NxPxB matrix.
call FW2M ( gamb, phib, psi, eps, r )
! Extract CIP X,Y.
call BPN2XY ( r, x, y )
end subroutine FW2XY