1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
use data_atoms::*;
use ion::{ Ion };
use molecule::{ Molecule, MoleculeCompound };


lazy_static! {
    pub static ref HYDROXIDE: Ion = Ion {
        molecule: Molecule { compounds: vec! {
            MoleculeCompound {
                atom: OXYGEN,
                amount: 1
            },

            MoleculeCompound {
                atom: HYDROGEN,
                amount: 1
            }
        }},

        charge: None
    };


    pub static ref AMMONIUM: Ion = Ion {
        molecule: Molecule { compounds: vec! {
            MoleculeCompound {
                atom: NITROGEN,
                amount: 1
            },

            MoleculeCompound {
                atom: HYDROGEN,
                amount: 4
            }
        }},

        charge: None
    };


    pub static ref SULPHATE: Ion = Ion {
        molecule: Molecule { compounds: vec! {
            MoleculeCompound {
                atom: SULFUR,
                amount: 1
            },

            MoleculeCompound {
                atom: OXYGEN,
                amount: 4
            }
        }},

        charge: None
    };
}