[14de469] | 1 | /** \file atom.cpp
|
---|
[1907a7] | 2 | *
|
---|
[14de469] | 3 | * Function implementations for the class atom.
|
---|
[1907a7] | 4 | *
|
---|
[14de469] | 5 | */
|
---|
| 6 |
|
---|
[357fba] | 7 | #include "atom.hpp"
|
---|
[e41951] | 8 | #include "bond.hpp"
|
---|
[4a7776a] | 9 | #include "config.hpp"
|
---|
[f66195] | 10 | #include "element.hpp"
|
---|
[266237] | 11 | #include "lists.hpp"
|
---|
[29812d] | 12 | #include "memoryallocator.hpp"
|
---|
[ccd9f5] | 13 | #include "parser.hpp"
|
---|
[f66195] | 14 | #include "vector.hpp"
|
---|
[d346b6] | 15 | #include "World.hpp"
|
---|
[1907a7] | 16 |
|
---|
[14de469] | 17 | /************************************* Functions for class atom *************************************/
|
---|
| 18 |
|
---|
[70ff32] | 19 |
|
---|
[14de469] | 20 | /** Constructor of class atom.
|
---|
| 21 | */
|
---|
[46d958] | 22 | atom::atom() :
|
---|
| 23 | previous(NULL), next(NULL), father(this), sort(&nr)
|
---|
[14de469] | 24 | {
|
---|
[70ff32] | 25 | node = &x; // TesselPoint::x can only be referenced from here
|
---|
[14de469] | 26 | };
|
---|
| 27 |
|
---|
[2319ed] | 28 | /** Constructor of class atom.
|
---|
| 29 | */
|
---|
[46d958] | 30 | atom::atom(atom *pointer) :
|
---|
| 31 | ParticleInfo(pointer),
|
---|
| 32 | previous(NULL), next(NULL), father(pointer), sort(&nr)
|
---|
[2319ed] | 33 | {
|
---|
| 34 | type = pointer->type; // copy element of atom
|
---|
[273382] | 35 | x = pointer->x; // copy coordination
|
---|
| 36 | v = pointer->v; // copy velocity
|
---|
[2319ed] | 37 | FixedIon = pointer->FixedIon;
|
---|
[89c8b2] | 38 | node = &x;
|
---|
[b453f9] | 39 | };
|
---|
[2319ed] | 40 |
|
---|
[46d958] | 41 | atom *atom::clone(){
|
---|
[68f03d] | 42 | atom *res = new atom(this);
|
---|
[46d958] | 43 | res->previous=0;
|
---|
| 44 | res->next=0;
|
---|
| 45 | res->father = this;
|
---|
[5f612ee] | 46 | res->sort = &res->nr;
|
---|
[46d958] | 47 | res->type = type;
|
---|
[273382] | 48 | res->x = this->x;
|
---|
| 49 | res->v = this->v;
|
---|
[46d958] | 50 | res->FixedIon = FixedIon;
|
---|
| 51 | res->node = &x;
|
---|
[23b547] | 52 | World::getInstance().registerAtom(res);
|
---|
[46d958] | 53 | return res;
|
---|
| 54 | }
|
---|
| 55 |
|
---|
[2319ed] | 56 |
|
---|
[14de469] | 57 | /** Destructor of class atom.
|
---|
| 58 | */
|
---|
[1907a7] | 59 | atom::~atom()
|
---|
[14de469] | 60 | {
|
---|
[266237] | 61 | unlink(this);
|
---|
[14de469] | 62 | };
|
---|
| 63 |
|
---|
| 64 |
|
---|
| 65 | /** Climbs up the father list until NULL, last is returned.
|
---|
| 66 | * \return true father, i.e. whose father points to itself, NULL if it could not be found or has none (added hydrogen)
|
---|
| 67 | */
|
---|
| 68 | atom *atom::GetTrueFather()
|
---|
| 69 | {
|
---|
[215df0] | 70 | if(father == this){ // top most father is the one that points on itself
|
---|
| 71 | return this;
|
---|
| 72 | }
|
---|
| 73 | else if(!father) {
|
---|
| 74 | return 0;
|
---|
| 75 | }
|
---|
| 76 | else {
|
---|
| 77 | return father->GetTrueFather();
|
---|
| 78 | }
|
---|
[14de469] | 79 | };
|
---|
| 80 |
|
---|
[e65246] | 81 | /** Sets father to itself or its father in case of copying a molecule.
|
---|
| 82 | */
|
---|
| 83 | void atom::CorrectFather()
|
---|
| 84 | {
|
---|
| 85 | if (father->father == father) // same atom in copy's father points to itself
|
---|
| 86 | father = this; // set father to itself (copy of a whole molecule)
|
---|
| 87 | else
|
---|
| 88 | father = father->father; // set father to original's father
|
---|
| 89 |
|
---|
| 90 | };
|
---|
| 91 |
|
---|
| 92 | /** Check whether father is equal to given atom.
|
---|
| 93 | * \param *ptr atom to compare father to
|
---|
| 94 | * \param **res return value (only set if atom::father is equal to \a *ptr)
|
---|
| 95 | */
|
---|
[b453f9] | 96 | void atom::EqualsFather ( const atom *ptr, const atom **res ) const
|
---|
[e65246] | 97 | {
|
---|
| 98 | if ( ptr == father )
|
---|
| 99 | *res = this;
|
---|
| 100 | };
|
---|
| 101 |
|
---|
[e9f8f9] | 102 | /** Checks whether atom is within the given box.
|
---|
| 103 | * \param offset offset to box origin
|
---|
| 104 | * \param *parallelepiped box matrix
|
---|
| 105 | * \return true - is inside, false - is not
|
---|
| 106 | */
|
---|
[b453f9] | 107 | bool atom::IsInParallelepiped(const Vector offset, const double *parallelepiped) const
|
---|
[e9f8f9] | 108 | {
|
---|
| 109 | return (node->IsInParallelepiped(offset, parallelepiped));
|
---|
| 110 | };
|
---|
| 111 |
|
---|
[266237] | 112 | /** Counts the number of bonds weighted by bond::BondDegree.
|
---|
| 113 | * \param bonds times bond::BondDegree
|
---|
| 114 | */
|
---|
[4455f4] | 115 | int BondedParticle::CountBonds() const
|
---|
[266237] | 116 | {
|
---|
| 117 | int NoBonds = 0;
|
---|
| 118 | for (BondList::const_iterator Runner = ListOfBonds.begin(); Runner != ListOfBonds.end(); (++Runner))
|
---|
| 119 | NoBonds += (*Runner)->BondDegree;
|
---|
| 120 | return NoBonds;
|
---|
| 121 | };
|
---|
| 122 |
|
---|
[b453f9] | 123 | /** Output of a single atom with given numbering.
|
---|
[14de469] | 124 | * \param ElementNo cardinal number of the element
|
---|
| 125 | * \param AtomNo cardinal number among these atoms of the same element
|
---|
| 126 | * \param *out stream to output to
|
---|
[1907a7] | 127 | * \param *comment commentary after '#' sign
|
---|
[e41951] | 128 | * \return true - \a *out present, false - \a *out is NULL
|
---|
[14de469] | 129 | */
|
---|
[e138de] | 130 | bool atom::OutputIndexed(ofstream * const out, const int ElementNo, const int AtomNo, const char *comment) const
|
---|
[14de469] | 131 | {
|
---|
| 132 | if (out != NULL) {
|
---|
| 133 | *out << "Ion_Type" << ElementNo << "_" << AtomNo << "\t" << fixed << setprecision(9) << showpoint;
|
---|
[0a4f7f] | 134 | *out << x[0] << "\t" << x[1] << "\t" << x[2];
|
---|
[943d02] | 135 | *out << "\t" << FixedIon;
|
---|
| 136 | if (v.Norm() > MYEPSILON)
|
---|
[0a4f7f] | 137 | *out << "\t" << scientific << setprecision(6) << v[0] << "\t" << v[1] << "\t" << v[2] << "\t";
|
---|
[437922] | 138 | if (comment != NULL)
|
---|
| 139 | *out << " # " << comment << endl;
|
---|
[e9f8f9] | 140 | else
|
---|
| 141 | *out << " # molecule nr " << nr << endl;
|
---|
| 142 | return true;
|
---|
| 143 | } else
|
---|
| 144 | return false;
|
---|
| 145 | };
|
---|
[b453f9] | 146 |
|
---|
| 147 | /** Output of a single atom with numbering from array according to atom::type.
|
---|
| 148 | * \param *ElementNo cardinal number of the element
|
---|
| 149 | * \param *AtomNo cardinal number among these atoms of the same element
|
---|
| 150 | * \param *out stream to output to
|
---|
| 151 | * \param *comment commentary after '#' sign
|
---|
| 152 | * \return true - \a *out present, false - \a *out is NULL
|
---|
| 153 | */
|
---|
[e138de] | 154 | bool atom::OutputArrayIndexed(ofstream * const out, const int *ElementNo, int *AtomNo, const char *comment) const
|
---|
[e9f8f9] | 155 | {
|
---|
| 156 | AtomNo[type->Z]++; // increment number
|
---|
| 157 | if (out != NULL) {
|
---|
| 158 | *out << "Ion_Type" << ElementNo[type->Z] << "_" << AtomNo[type->Z] << "\t" << fixed << setprecision(9) << showpoint;
|
---|
[0a4f7f] | 159 | *out << x[0] << "\t" << x[1] << "\t" << x[2];
|
---|
[e9f8f9] | 160 | *out << "\t" << FixedIon;
|
---|
| 161 | if (v.Norm() > MYEPSILON)
|
---|
[0a4f7f] | 162 | *out << "\t" << scientific << setprecision(6) << v[0] << "\t" << v[1] << "\t" << v[2] << "\t";
|
---|
[e9f8f9] | 163 | if (comment != NULL)
|
---|
| 164 | *out << " # " << comment << endl;
|
---|
[437922] | 165 | else
|
---|
| 166 | *out << " # molecule nr " << nr << endl;
|
---|
[14de469] | 167 | return true;
|
---|
| 168 | } else
|
---|
| 169 | return false;
|
---|
| 170 | };
|
---|
| 171 |
|
---|
| 172 | /** Output of a single atom as one lin in xyz file.
|
---|
| 173 | * \param *out stream to output to
|
---|
[e41951] | 174 | * \return true - \a *out present, false - \a *out is NULL
|
---|
[14de469] | 175 | */
|
---|
| 176 | bool atom::OutputXYZLine(ofstream *out) const
|
---|
| 177 | {
|
---|
| 178 | if (out != NULL) {
|
---|
[0a4f7f] | 179 | *out << type->symbol << "\t" << x[0] << "\t" << x[1] << "\t" << x[2] << "\t" << endl;
|
---|
[14de469] | 180 | return true;
|
---|
| 181 | } else
|
---|
| 182 | return false;
|
---|
| 183 | };
|
---|
| 184 |
|
---|
[fcd7b6] | 185 | /** Output of a single atom as one lin in xyz file.
|
---|
| 186 | * \param *out stream to output to
|
---|
[e41951] | 187 | * \param *ElementNo array with ion type number in the config file this atom's element shall have
|
---|
| 188 | * \param *AtomNo array with atom number in the config file this atom shall have, is increase by one automatically
|
---|
| 189 | * \param step Trajectory time step to output
|
---|
| 190 | * \return true - \a *out present, false - \a *out is NULL
|
---|
[fcd7b6] | 191 | */
|
---|
[e138de] | 192 | bool atom::OutputTrajectory(ofstream * const out, const int *ElementNo, int *AtomNo, const int step) const
|
---|
[fcd7b6] | 193 | {
|
---|
| 194 | AtomNo[type->Z]++;
|
---|
| 195 | if (out != NULL) {
|
---|
| 196 | *out << "Ion_Type" << ElementNo[type->Z] << "_" << AtomNo[type->Z] << "\t" << fixed << setprecision(9) << showpoint;
|
---|
[0a4f7f] | 197 | *out << Trajectory.R.at(step)[0] << "\t" << Trajectory.R.at(step)[1] << "\t" << Trajectory.R.at(step)[2];
|
---|
[fcd7b6] | 198 | *out << "\t" << FixedIon;
|
---|
| 199 | if (Trajectory.U.at(step).Norm() > MYEPSILON)
|
---|
[0a4f7f] | 200 | *out << "\t" << scientific << setprecision(6) << Trajectory.U.at(step)[0] << "\t" << Trajectory.U.at(step)[1] << "\t" << Trajectory.U.at(step)[2] << "\t";
|
---|
[fcd7b6] | 201 | if (Trajectory.F.at(step).Norm() > MYEPSILON)
|
---|
[0a4f7f] | 202 | *out << "\t" << scientific << setprecision(6) << Trajectory.F.at(step)[0] << "\t" << Trajectory.F.at(step)[1] << "\t" << Trajectory.F.at(step)[2] << "\t";
|
---|
[fcd7b6] | 203 | *out << "\t# Number in molecule " << nr << endl;
|
---|
| 204 | return true;
|
---|
| 205 | } else
|
---|
| 206 | return false;
|
---|
| 207 | };
|
---|
| 208 |
|
---|
[681a8a] | 209 | /** Output of a single atom as one lin in xyz file.
|
---|
| 210 | * \param *out stream to output to
|
---|
[e41951] | 211 | * \param step Trajectory time step to output
|
---|
| 212 | * \return true - \a *out present, false - \a *out is NULL
|
---|
[681a8a] | 213 | */
|
---|
[e138de] | 214 | bool atom::OutputTrajectoryXYZ(ofstream * const out, const int step) const
|
---|
[681a8a] | 215 | {
|
---|
| 216 | if (out != NULL) {
|
---|
| 217 | *out << type->symbol << "\t";
|
---|
[0a4f7f] | 218 | *out << Trajectory.R.at(step)[0] << "\t";
|
---|
| 219 | *out << Trajectory.R.at(step)[1] << "\t";
|
---|
| 220 | *out << Trajectory.R.at(step)[2] << endl;
|
---|
[681a8a] | 221 | return true;
|
---|
| 222 | } else
|
---|
| 223 | return false;
|
---|
| 224 | };
|
---|
| 225 |
|
---|
[4455f4] | 226 | /** Outputs the MPQC configuration line for this atom.
|
---|
| 227 | * \param *out output stream
|
---|
| 228 | * \param *center center of molecule subtracted from position
|
---|
| 229 | * \param *AtomNo pointer to atom counter that is increased by one
|
---|
| 230 | */
|
---|
[e138de] | 231 | void atom::OutputMPQCLine(ofstream * const out, const Vector *center, int *AtomNo = NULL) const
|
---|
[4455f4] | 232 | {
|
---|
[0a4f7f] | 233 | *out << "\t\t" << type->symbol << " [ " << x[0]-center->at(0) << "\t" << x[1]-center->at(1) << "\t" << x[2]-center->at(2) << " ]" << endl;
|
---|
[4455f4] | 234 | if (AtomNo != NULL)
|
---|
| 235 | *AtomNo++;
|
---|
| 236 | };
|
---|
| 237 |
|
---|
| 238 | /** Compares the indices of \a this atom with a given \a ptr.
|
---|
| 239 | * \param ptr atom to compare index against
|
---|
| 240 | * \return true - this one's is smaller, false - not
|
---|
| 241 | */
|
---|
[b453f9] | 242 | bool atom::Compare(const atom &ptr) const
|
---|
[4455f4] | 243 | {
|
---|
| 244 | if (nr < ptr.nr)
|
---|
| 245 | return true;
|
---|
| 246 | else
|
---|
| 247 | return false;
|
---|
| 248 | };
|
---|
| 249 |
|
---|
| 250 | /** Returns squared distance to a given vector.
|
---|
| 251 | * \param origin vector to calculate distance to
|
---|
| 252 | * \return distance squared
|
---|
| 253 | */
|
---|
[b453f9] | 254 | double atom::DistanceSquaredToVector(const Vector &origin) const
|
---|
[4455f4] | 255 | {
|
---|
[273382] | 256 | return origin.DistanceSquared(x);
|
---|
[4455f4] | 257 | };
|
---|
| 258 |
|
---|
| 259 | /** Returns distance to a given vector.
|
---|
| 260 | * \param origin vector to calculate distance to
|
---|
| 261 | * \return distance
|
---|
| 262 | */
|
---|
[b453f9] | 263 | double atom::DistanceToVector(const Vector &origin) const
|
---|
[4455f4] | 264 | {
|
---|
[1513a74] | 265 | return origin.distance(x);
|
---|
[4455f4] | 266 | };
|
---|
| 267 |
|
---|
| 268 | /** Initialises the component number array.
|
---|
| 269 | * Size is set to atom::ListOfBonds.size()+1 (last is th encode end by -1)
|
---|
| 270 | */
|
---|
| 271 | void atom::InitComponentNr()
|
---|
| 272 | {
|
---|
| 273 | if (ComponentNr != NULL)
|
---|
| 274 | Free(&ComponentNr);
|
---|
| 275 | ComponentNr = Malloc<int>(ListOfBonds.size()+1, "atom::InitComponentNumbers: *ComponentNr");
|
---|
| 276 | for (int i=ListOfBonds.size()+1;i--;)
|
---|
| 277 | ComponentNr[i] = -1;
|
---|
| 278 | };
|
---|
| 279 |
|
---|
| 280 |
|
---|
| 281 | bool operator < (atom &a, atom &b)
|
---|
| 282 | {
|
---|
| 283 | return a.Compare(b);
|
---|
| 284 | };
|
---|
| 285 |
|
---|
[46d958] | 286 | World *atom::getWorld(){
|
---|
| 287 | return world;
|
---|
| 288 | }
|
---|
| 289 |
|
---|
| 290 | void atom::setWorld(World* _world){
|
---|
| 291 | world = _world;
|
---|
| 292 | }
|
---|
| 293 |
|
---|
[88d586] | 294 | bool atom::changeId(atomId_t newId){
|
---|
| 295 | // first we move ourselves in the world
|
---|
| 296 | // the world lets us know if that succeeded
|
---|
| 297 | if(world->changeAtomId(id,newId,this)){
|
---|
| 298 | id = newId;
|
---|
| 299 | return true;
|
---|
| 300 | }
|
---|
| 301 | else{
|
---|
| 302 | return false;
|
---|
| 303 | }
|
---|
| 304 | }
|
---|
| 305 |
|
---|
| 306 | void atom::setId(atomId_t _id) {
|
---|
[46d958] | 307 | id=_id;
|
---|
| 308 | }
|
---|
| 309 |
|
---|
[57adc7] | 310 | atomId_t atom::getId() {
|
---|
[46d958] | 311 | return id;
|
---|
| 312 | }
|
---|
| 313 |
|
---|
[88d586] | 314 | atom* NewAtom(atomId_t _id){
|
---|
| 315 | atom * res =new atom();
|
---|
| 316 | res->setId(_id);
|
---|
| 317 | return res;
|
---|
[46d958] | 318 | }
|
---|
| 319 |
|
---|
[88d586] | 320 | void DeleteAtom(atom* atom){
|
---|
[46d958] | 321 | delete atom;
|
---|
| 322 | }
|
---|