phoboss 0.0.2

Phobos celestial simulation crate for the MilkyWay SolarSystem workspace
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[derive(Debug, Clone, Copy, PartialEq)]
pub struct RelaySatellite {
    pub name: &'static str,
    pub halo_orbit_period_days: f64,
    pub far_side_coverage: f64,
}

pub fn phobos_relay() -> RelaySatellite {
    RelaySatellite {
        name: "Phobos Relay",
        halo_orbit_period_days: 0.319,
        far_side_coverage: 0.75,
    }
}