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: "C27H33N9O15P2",
        name: "flavin adenine dinucleotide",
        composition: &[(6, 27), (1, 33), (7, 9), (8, 15), (15, 2)],
        molar_mass: 785.550,
        category: "coenzyme",
        state_at_stp: "solid",
        melting_point_k: None,
        boiling_point_k: None,
        density_g_cm3: Some(1.650),
    }
}