Fundamental argument, IERS Conventions (2003): mean anomaly of 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) |
l', radians (Note 2)
function FALP03 ( t ) result(res)
implicit none
real(wp),intent(in) :: t !! TDB, Julian centuries since J2000.0 (Note 1)
real(wp) :: res !! l', radians (Note 2)
! Arcseconds in a full circle.
real(wp),parameter :: turnas = 1296000.0_wp
! Mean anomaly of the Sun (IERS Conventions 2003).
res = mod ( 1287104.793048_wp + &
t*( 129596581.0481_wp + &
t*( - 0.5532_wp + &
t*( 0.000136_wp + &
t*( - 0.00001149_wp )))), turnas ) * das2r
end function FALP03