1 | /*
|
---|
2 | * atom_atominfo.hpp
|
---|
3 | *
|
---|
4 | * Created on: Oct 19, 2009
|
---|
5 | * Author: heber
|
---|
6 | */
|
---|
7 |
|
---|
8 | #ifndef ATOM_ATOMINFO_HPP_
|
---|
9 | #define ATOM_ATOMINFO_HPP_
|
---|
10 |
|
---|
11 |
|
---|
12 | using namespace std;
|
---|
13 |
|
---|
14 | /*********************************************** includes ***********************************/
|
---|
15 |
|
---|
16 | // include config.h
|
---|
17 | #ifdef HAVE_CONFIG_H
|
---|
18 | #include <config.h>
|
---|
19 | #endif
|
---|
20 |
|
---|
21 | #include <vector>
|
---|
22 |
|
---|
23 | #include "LinearAlgebra/Vector.hpp"
|
---|
24 | #include "LinearAlgebra/VectorInterface.hpp"
|
---|
25 |
|
---|
26 | /****************************************** forward declarations *****************************/
|
---|
27 |
|
---|
28 | class AtomInfo;
|
---|
29 | class element;
|
---|
30 | class RealSpaceMatrix;
|
---|
31 |
|
---|
32 | /********************************************** declarations *******************************/
|
---|
33 |
|
---|
34 | class AtomInfo : public VectorInterface {
|
---|
35 |
|
---|
36 | public:
|
---|
37 | AtomInfo();
|
---|
38 | AtomInfo(const AtomInfo &_atom);
|
---|
39 | AtomInfo(const VectorInterface &_v);
|
---|
40 | virtual ~AtomInfo();
|
---|
41 |
|
---|
42 | /** Getter for AtomicElement.
|
---|
43 | *
|
---|
44 | * @return constant reference to AtomicElement
|
---|
45 | */
|
---|
46 | const element *getType() const;
|
---|
47 | /** Setter for AtomicElement.
|
---|
48 | *
|
---|
49 | * @param _type new element by pointer to set
|
---|
50 | */
|
---|
51 | void setType(const element *_type);
|
---|
52 | /** Setter for AtomicElement.
|
---|
53 | *
|
---|
54 | * @param _typenr new element by index to set
|
---|
55 | */
|
---|
56 | void setType(const int _typenr);
|
---|
57 |
|
---|
58 | /** Getter for AtomicVelocity.
|
---|
59 | *
|
---|
60 | * @return constant reference to AtomicVelocity
|
---|
61 | */
|
---|
62 | Vector& getAtomicVelocity();
|
---|
63 | /** Getter for AtomicVelocity.
|
---|
64 | *
|
---|
65 | * @return constant reference to AtomicVelocity
|
---|
66 | */
|
---|
67 | const Vector& getAtomicVelocity() const;
|
---|
68 | /** Setter for AtomicVelocity.
|
---|
69 | *
|
---|
70 | * @param _newvelocity new velocity to set
|
---|
71 | */
|
---|
72 | void setAtomicVelocity(const Vector &_newvelocity);
|
---|
73 |
|
---|
74 | /** Getter for AtomicForce.
|
---|
75 | *
|
---|
76 | * @return constant reference to AtomicForce
|
---|
77 | */
|
---|
78 | const Vector& getAtomicForce() const;
|
---|
79 | /** Setter for AtomicForce.
|
---|
80 | *
|
---|
81 | * @param _newvelocity new force vector to set
|
---|
82 | */
|
---|
83 | void setAtomicForce(const Vector &_newforce);
|
---|
84 |
|
---|
85 | ///// manipulation of the atomic position
|
---|
86 |
|
---|
87 | // Accessors ussually come in pairs... and sometimes even more than that
|
---|
88 | const double& operator[](size_t i) const;
|
---|
89 | const double& at(size_t i) const;
|
---|
90 | void set(size_t i, const double value);
|
---|
91 | const Vector& getPosition() const;
|
---|
92 |
|
---|
93 | // Assignment operator
|
---|
94 | void setPosition(const Vector& _vector);
|
---|
95 | class VectorInterface &operator=(const Vector& _vector);
|
---|
96 |
|
---|
97 | // operators for mathematical operations
|
---|
98 | const VectorInterface& operator+=(const Vector& b);
|
---|
99 | const VectorInterface& operator-=(const Vector& b);
|
---|
100 | Vector const operator+(const Vector& b) const;
|
---|
101 | Vector const operator-(const Vector& b) const;
|
---|
102 |
|
---|
103 | void Zero();
|
---|
104 | void One(const double one);
|
---|
105 | void LinearCombinationOfVectors(const Vector &x1, const Vector &x2, const Vector &x3, const double * const factors);
|
---|
106 |
|
---|
107 | double distance(const Vector &point) const;
|
---|
108 | double DistanceSquared(const Vector &y) const;
|
---|
109 | double distance(const VectorInterface &_atom) const;
|
---|
110 | double DistanceSquared(const VectorInterface &_atom) const;
|
---|
111 |
|
---|
112 | void ScaleAll(const double *factor);
|
---|
113 | void ScaleAll(const Vector &factor);
|
---|
114 | void Scale(const double factor);
|
---|
115 |
|
---|
116 | std::ostream & operator << (std::ostream &ost) const;
|
---|
117 |
|
---|
118 | private:
|
---|
119 | std::vector<Vector> AtomicPosition; //!< coordinate vector of atom, giving last position within cell
|
---|
120 | std::vector<Vector> AtomicVelocity; //!< velocity vector of atom, giving last velocity within cell
|
---|
121 | std::vector<Vector> AtomicForce; //!< Force vector of atom, giving last force within cell
|
---|
122 |
|
---|
123 | const element *AtomicElement; //!< pointing to element
|
---|
124 | };
|
---|
125 |
|
---|
126 | std::ostream & operator << (std::ostream &ost, const AtomInfo &a);
|
---|
127 |
|
---|
128 | const AtomInfo& operator*=(AtomInfo& a, const double m);
|
---|
129 | AtomInfo const operator*(const AtomInfo& a, const double m);
|
---|
130 | AtomInfo const operator*(const double m, const AtomInfo& a);
|
---|
131 |
|
---|
132 | #endif /* ATOM_ATOMINFO_HPP_ */
|
---|