venuss 0.0.1

Venus celestial simulation crate for the MilkyWay SolarSystem workspace
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use venuss::physics::tides::SolarTide;

fn main() {
    let t = SolarTide::at_mean_distance();
    println!(
        "Venus solar tide acceleration: {:.3e} m/s2",
        t.tidal_acceleration()
    );
    println!(
        "Venus solar tidal bulge estimate: {:.3e} m",
        t.tidal_bulge_height()
    );
}