sciforge-lib 0.0.4

Scientific computing library — mathematics, physics, chemistry, biology, astronomy, geology, meteorology.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use super::super::super::Molecule;

pub fn molecule() -> Molecule {
    Molecule {
        formula: "O2",
        name: "dioxygen",
        composition: &[(8, 2)],
        molar_mass: 31.998,
        category: "inorganic",
        state_at_stp: "gas",
        melting_point_k: Some(54.36),
        boiling_point_k: Some(90.19),
        density_g_cm3: Some(0.001_429),
    }
}