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

pub fn polymer() -> Polymer {
    Polymer {
        name: "polytetrafluoroethylene",
        abbreviation: "PTFE",
        monomer_formula: "C2F4",
        monomer_molar_mass: 100.015,
        density_g_cm3: 2.20,
        glass_transition_k: Some(388.0),
        melting_point_k: Some(600.0),
        polymer_type: "thermoplastic",
        category: "fluoropolymer",
    }
}