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