Fundamental argument, IERS Conventions (2003): mean longitude of Saturn.
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 comes from Souchay et al. (1999) after 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
Souchay, J., Loysel, B., Kinoshita, H., Folgueira, M. 1999, Astron.Astrophys.Supp.Ser. 135, 111
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=wp), | intent(in) | :: | t | TDB, Julian centuries since J2000.0 (Note 1) |
mean longitude of Saturn, radians (Note 2)
function FASA03 ( t ) result(res)
implicit none
real(wp),intent(in) :: t !! TDB, Julian centuries since J2000.0 (Note 1)
real(wp) :: res !! mean longitude of Saturn, radians (Note 2)
! Mean longitude of Saturn (IERS Conventions 2003).
res = mod ( 0.874016757_wp + 21.3299104960_wp * t, d2pi )
end function FASA03