#[derive(Debug, Clone, Copy, PartialEq)]
pub struct Orbiter {
pub name: &'static str,
pub altitude_km: f64,
pub inclination_deg: f64,
}
pub fn io_flux_tube_observer() -> Orbiter {
Orbiter {
name: "Io Flux Tube Observer",
altitude_km: 300.0,
inclination_deg: 10.0,
}
}
pub fn io_orbiter_concept() -> Orbiter {
Orbiter {
name: "Io Orbiter",
altitude_km: 200.0,
inclination_deg: 0.0,
}
}