Fundamental argument, IERS Conventions (2003): mean elongation of the Moon from the Sun.
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) |
D, radians (Note 2)
function FAD03 ( t ) result(fa)
implicit none
real(wp),intent(in) :: t !! TDB, Julian centuries since J2000.0 (Note 1)
real(wp) :: fa !! D, radians (Note 2)
! Arcseconds in a full circle.
real(wp),parameter :: turnas = 1296000.0_wp
! Mean elongation of the Moon from the Sun (IERS Conventions 2003).
fa = mod ( 1072260.703692_wp + &
t*( 1602961601.2090_wp + &
t*( - 6.3706_wp + &
t*( 0.006593_wp + &
t*( - 0.00003169_wp )))), turnas ) * das2r
end function FAD03