rfa 0.5.9

A port ERFA to Rust.
Documentation
use crate::rfam::*;
use crate::utils::*;
///  Fundamental argument, IERS Conventions (2003):
///  mean longitude of Uranus.
///
///  Given:
///   * t TDB, Julian centuries since J2000.0 (Note 1)
///
///  Returned  (function value):
///   * mean longitude of Uranus, radians (Note 2)
///
/// # Notes:
///
///  1) Though t is strictly TDB, it is usually more convenient to use
///     TT, which makes no significant difference.
///
///  2) The expression used is as adopted in IERS Conventions (2003) and
///     is adapted from Simon et al. (1994).
///
/// # References:
///   *  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
///
///  This revision:  2021 May 11
pub fn faur03(t: f64)->f64
{
 
 
 /* Mean longitude of Uranus (IERS Conventions 2003). */
    fmod(5.481293872 + 7.4781598567 * t, URSA_D2PI)
 
 
 /* Finished. */
 
 }