venuss 0.0.1

Venus celestial simulation crate for the MilkyWay SolarSystem workspace
Documentation
1
2
3
4
5
6
7
8
9
use venuss::atmosphere::climate::VenusClimateState;

fn main() {
    let c = VenusClimateState::current();
    println!("Venus climate");
    println!("  Tmean: {:.1} K", c.global_mean_temp_k);
    println!("  Psurface: {:.3e} Pa", c.co2_surface_pressure_pa);
    println!("  Greenhouse: {:.1} K", c.greenhouse_effect_k());
}