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 ethylene_glycol_water_50;
pub mod propylene_glycol_water_50;
pub mod waterless_coolant;

pub use ethylene_glycol_water_50::*;
pub use propylene_glycol_water_50::*;
pub use waterless_coolant::*;

use crate::moleculars::Liquid;

pub fn all_coolants() -> Vec<&'static Liquid> {
    vec![
        &ETHYLENE_GLYCOL_WATER_50,
        &PROPYLENE_GLYCOL_WATER_50,
        &WATERLESS_COOLANT,
    ]
}