sciforge-core 0.0.4

Shared engineering primitives: materials, fasteners, fluids, propulsion taxonomies, std components.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod brine;
pub mod deionized_water;
pub mod distilled_water;
pub mod fresh_water;
pub mod seawater;

pub use brine::*;
pub use deionized_water::*;
pub use distilled_water::*;
pub use fresh_water::*;
pub use seawater::*;

use crate::moleculars::Liquid;

pub fn all_water() -> Vec<&'static Liquid> {
    vec![&WATER, &SEAWATER, &DISTILLED_WATER, &DEIONIZED_WATER, &BRINE]
}