venuss 0.0.3

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
pub fn coriolis_parameter(latitude_deg: f64) -> f64 {
    2.0 * crate::OMEGA_VENUS * latitude_deg.to_radians().sin()
}

pub fn superrotation_speed_m_s() -> f64 {
    100.0
}

pub fn mean_surface_wind_speed() -> f64 {
    1.0
}

pub fn max_cloud_top_wind_speed() -> f64 {
    120.0
}