pub struct TT { /* private fields */ }Expand description
Terrestrial Time (TT).
TT is the modern astronomical time standard for geocentric ephemerides. It provides a uniform time scale for planetary and lunar ephemeris calculations.
TT = TAI + 32.184 seconds
Implementations§
Source§impl TT
impl TT
Sourcepub fn add_seconds(&self, seconds: f64) -> Self
pub fn add_seconds(&self, seconds: f64) -> Self
Add seconds to the TT time.
Sourcepub fn julian_centuries_j2000(&self) -> f64
pub fn julian_centuries_j2000(&self) -> f64
Calculate Julian centuries since J2000.0. This is commonly used for precession/nutation calculations.
Trait Implementations§
impl Copy for TT
impl StructuralPartialEq for TT
Auto Trait Implementations§
impl Freeze for TT
impl RefUnwindSafe for TT
impl Send for TT
impl Sync for TT
impl Unpin for TT
impl UnwindSafe for TT
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more