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::Molecule;

pub fn molecule() -> Molecule {
    Molecule {
        formula: "C25H38O5",
        name: "simvastatin",
        composition: &[(1, 38), (6, 25), (8, 5)],
        molar_mass: 418.566,
        category: "statin",
        state_at_stp: "solid",
        melting_point_k: Some(412.0),
        boiling_point_k: None,
        density_g_cm3: Some(1.180),
    }
}