Skip to main content

resource_survey/
resource_survey.rs

1fn main() {
2    let earth_context = moons::interactions::earths::ensure_earths_binary_or_simulate();
3    let ice = moons::resources::ice::shackleton_candidate();
4    let helium3 = moons::resources::helium3::mare_tranquillitatis();
5    let regolith = moons::resources::regolith::mare_basalt_resource();
6
7    println!(
8        "mode={:?} water_kg={:.2} he3_kg={:.2} oxygen_kg={:.2}",
9        earth_context.mode,
10        ice.extractable_water_kg(0.7),
11        helium3.inventory_kg(1_700.0),
12        regolith.oxygen_mass_kg(1_000.0),
13    );
14}