solarsystems 0.0.1

N-body solar system engine — gravitational dynamics, orbital mechanics, perturbations, event detection, and full celestial orchestration
Documentation
1
2
3
4
5
6
7
8
9
use dwarfplanetsfactory::types::KuiperBelt;

pub fn create() -> KuiperBelt {
    KuiperBelt::new(8.16e5, 43.218, 0.1912)
        .with_density(1885.0)
        .with_albedo(0.804)
        .with_inclination(28.19_f64.to_radians())
        .with_rotation_period(14_109.0)
}