1 | /*
|
---|
2 | * element.hpp
|
---|
3 | *
|
---|
4 | * Created on: Aug 3, 2009
|
---|
5 | * Author: heber
|
---|
6 | */
|
---|
7 |
|
---|
8 | #ifndef ELEMENT_HPP_
|
---|
9 | #define ELEMENT_HPP_
|
---|
10 |
|
---|
11 | /*********************************************** includes ***********************************/
|
---|
12 |
|
---|
13 | // include config.h
|
---|
14 | #ifdef HAVE_CONFIG_H
|
---|
15 | #include <config.h>
|
---|
16 | #endif
|
---|
17 |
|
---|
18 | #include <iosfwd>
|
---|
19 | #include <string>
|
---|
20 |
|
---|
21 | #include "types.hpp"
|
---|
22 |
|
---|
23 | #include "boost/serialization/array.hpp"
|
---|
24 | #include "boost/serialization/string.hpp"
|
---|
25 |
|
---|
26 | class periodentafel;
|
---|
27 |
|
---|
28 | /********************************************** declarations *******************************/
|
---|
29 |
|
---|
30 | /** Chemical element.
|
---|
31 | * Class incorporates data for a certain chemical element to be referenced from atom class.
|
---|
32 | */
|
---|
33 | class element {
|
---|
34 | friend class periodentafel;
|
---|
35 | public:
|
---|
36 | element();
|
---|
37 | element(const element&);
|
---|
38 | ~element();
|
---|
39 |
|
---|
40 | element &operator=(const element&);
|
---|
41 |
|
---|
42 | // accessor functions
|
---|
43 | atomicNumber_t getNumber() const;
|
---|
44 | double getMass() const;
|
---|
45 | const unsigned char *getColor() const;
|
---|
46 | double getCovalentRadius() const;
|
---|
47 | double getElectronegativity() const;
|
---|
48 | double getVanDerWaalsRadius() const;
|
---|
49 | int getAtomicNumber() const;
|
---|
50 | double getValence() const;
|
---|
51 | int getNoValenceOrbitals() const;
|
---|
52 | double getHBondDistance(const size_t i) const;
|
---|
53 | double getHBondAngle(const size_t i) const;
|
---|
54 |
|
---|
55 | const std::string &getSymbol() const;
|
---|
56 | void setSymbol(const std::string &temp);
|
---|
57 |
|
---|
58 | const std::string &getName() const;
|
---|
59 | void setName(const std::string &temp);
|
---|
60 |
|
---|
61 | bool operator==(const element &other) const;
|
---|
62 |
|
---|
63 | bool operator!=(const element &other) const {
|
---|
64 | return !(*this == other);
|
---|
65 | }
|
---|
66 |
|
---|
67 | private:
|
---|
68 | friend class boost::serialization::access;
|
---|
69 | // serialization
|
---|
70 | template<class Archive>
|
---|
71 | void serialize(Archive & ar, const unsigned int version)
|
---|
72 | {
|
---|
73 | ar & mass;
|
---|
74 | ar & CovalentRadius;
|
---|
75 | ar & Electronegativity;
|
---|
76 | ar & VanDerWaalsRadius;
|
---|
77 | ar & Z;
|
---|
78 | ar & period;
|
---|
79 | ar & group;
|
---|
80 | ar & block;
|
---|
81 | ar & Valence;
|
---|
82 | ar & NoValenceOrbitals;
|
---|
83 | ar & boost::serialization::make_array<double>(HBondDistance, 3);
|
---|
84 | ar & boost::serialization::make_array<double>(HBondAngle, 3);
|
---|
85 | ar & boost::serialization::make_array<unsigned char>(color, 3);
|
---|
86 | ar & name;
|
---|
87 | ar & symbol;
|
---|
88 | }
|
---|
89 |
|
---|
90 | double mass; //!< mass in g/mol
|
---|
91 | double CovalentRadius; //!< covalent radius
|
---|
92 | double Electronegativity; //!< electronegativity in Pauling units
|
---|
93 | double VanDerWaalsRadius; //!< can-der-Waals radius
|
---|
94 | int Z; //!< atomic number
|
---|
95 | std::string period; //!< period: n quantum number
|
---|
96 | std::string group; //!< group: l quantum number
|
---|
97 | std::string block; //!< block: l quantum number
|
---|
98 | double Valence; //!< number of valence electrons for this element
|
---|
99 | int NoValenceOrbitals; //!< number of valence orbitals, used for determining bond degree in molecule::CreateConnectmatrix()
|
---|
100 | double HBondDistance[3]; //!< distance in Angstrom of this element to hydrogen (for single, double and triple bonds)
|
---|
101 | double HBondAngle[3]; //!< typical angle for one, two, three bonded hydrogen (in degrees)
|
---|
102 | unsigned char color[3]; //!< typical color for this element (from Jmol)
|
---|
103 |
|
---|
104 | std::string name; //!< atom name, i.e. "Hydrogen"
|
---|
105 | std::string symbol; //!< short form of the atom, i.e. "H"
|
---|
106 | };
|
---|
107 |
|
---|
108 | std::ostream &operator<<(std::ostream&,const element&);
|
---|
109 |
|
---|
110 | #endif /* ELEMENT_HPP_ */
|
---|