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
}