venuss 0.0.2

Venus celestial simulation crate for the MilkyWay SolarSystem workspace
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub struct AncientOcean {
    pub name: &'static str,
    pub estimated_volume_km3: f64,
}

impl AncientOcean {
    pub fn hypothetical_early_venus() -> Self {
        Self {
            name: "Hypothetical Proto-Venus Ocean",
            estimated_volume_km3: 5.0e8,
        }
    }
}

pub fn current_surface_liquid_water_fraction() -> f64 {
    0.0
}