Form the matrix of nutation.
Status: support routine.
The supplied mean obliquity EPSA, must be consistent with the precession-nutation models from which DPSI and DEPS were obtained.
The caller is responsible for providing the nutation components; they are in longitude and obliquity, in radians and are with respect to the equinox and ecliptic of date.
The matrix operates in the sense V(true) = RMATN * V(mean), where the p-vector V(true) is with respect to the true equatorial triad of date and the p-vector V(mean) is with respect to the mean equatorial triad of date.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=wp), | intent(in) | :: | epsa | mean obliquity of date (Note 1) |
||
real(kind=wp), | intent(in) | :: | dpsi | nutation (Note 2) |
||
real(kind=wp), | intent(in) | :: | deps | nutation (Note 2) |
||
real(kind=wp), | intent(out), | dimension(3,3) | :: | rmatn | nutation matrix (Note 3) |
subroutine NUMAT ( epsa, dpsi, deps, rmatn )
implicit none
real(wp),intent(in) :: epsa !! mean obliquity of date (Note 1)
real(wp),intent(in) :: dpsi !! nutation (Note 2)
real(wp),intent(in) :: deps !! nutation (Note 2)
real(wp),dimension(3,3),intent(out) :: rmatn !! nutation matrix (Note 3)
! Build the rotation matrix.
call IR ( rmatn )
call RX ( epsa, rmatn )
call RZ ( -dpsi, rmatn )
call RX ( -(epsa+deps), rmatn )
end subroutine NUMAT