Fundamental argument, IERS Conventions (2003): mean longitude of the Moon's ascending node.
Status: canonical model.
Though T is strictly TDB, it is usually more convenient to use TT, which makes no significant difference.
The expression used is as adopted in IERS Conventions (2003) and is from Simon et al. (1994).
McCarthy, D. D., Petit, G. (eds.), IERS Conventions (2003), IERS Technical Note No. 32, BKG (2004)
Simon, J.-L., Bretagnon, P., Chapront, J., Chapront-Touze, M., Francou, G., Laskar, J. 1994, Astron.Astrophys. 282, 663-683
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=wp), | intent(in) | :: | t | TDB, Julian centuries since J2000.0 (Note 1) |
Omega, radians (Note 2)
function FAOM03 ( t ) result(res)
implicit none
real(wp),intent(in) :: t !! TDB, Julian centuries since J2000.0 (Note 1)
real(wp) :: res !! Omega, radians (Note 2)
! Arcseconds in a full circle.
real(wp),parameter :: turnas = 1296000.0_wp
! Mean longitude of the Moon's ascending node (IERS Conventions 2003).
res = mod ( 450160.398036_wp + &
t*( - 6962890.5431_wp + &
t*( 7.4722_wp + &
t*( 0.007702_wp + &
t*( - 0.00005939_wp )))), turnas ) * das2r
end function FAOM03