| 1 | /*
 | 
|---|
| 2 |  * Project: MoleCuilder
 | 
|---|
| 3 |  * Description: creates and alters molecular systems
 | 
|---|
| 4 |  * Copyright (C)  2010 University of Bonn. All rights reserved.
 | 
|---|
| 5 |  * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.
 | 
|---|
| 6 |  */
 | 
|---|
| 7 | 
 | 
|---|
| 8 | /** \file atom.cpp
 | 
|---|
| 9 |  *
 | 
|---|
| 10 |  * Function implementations for the class atom.
 | 
|---|
| 11 |  *
 | 
|---|
| 12 |  */
 | 
|---|
| 13 | 
 | 
|---|
| 14 | // include config.h
 | 
|---|
| 15 | #ifdef HAVE_CONFIG_H
 | 
|---|
| 16 | #include <config.h>
 | 
|---|
| 17 | #endif
 | 
|---|
| 18 | 
 | 
|---|
| 19 | #include "CodePatterns/MemDebug.hpp"
 | 
|---|
| 20 | 
 | 
|---|
| 21 | #include "atom.hpp"
 | 
|---|
| 22 | #include "bond.hpp"
 | 
|---|
| 23 | #include "CodePatterns/Log.hpp"
 | 
|---|
| 24 | #include "config.hpp"
 | 
|---|
| 25 | #include "element.hpp"
 | 
|---|
| 26 | #include "parser.hpp"
 | 
|---|
| 27 | #include "LinearAlgebra/Vector.hpp"
 | 
|---|
| 28 | #include "World.hpp"
 | 
|---|
| 29 | #include "molecule.hpp"
 | 
|---|
| 30 | #include "Shapes/Shape.hpp"
 | 
|---|
| 31 | 
 | 
|---|
| 32 | #include <iomanip>
 | 
|---|
| 33 | #include <iostream>
 | 
|---|
| 34 | 
 | 
|---|
| 35 | /************************************* Functions for class atom *************************************/
 | 
|---|
| 36 | 
 | 
|---|
| 37 | 
 | 
|---|
| 38 | /** Constructor of class atom.
 | 
|---|
| 39 |  */
 | 
|---|
| 40 | atom::atom() :
 | 
|---|
| 41 |   father(this),
 | 
|---|
| 42 |   sort(&Nr),
 | 
|---|
| 43 |   mol(0)
 | 
|---|
| 44 | {};
 | 
|---|
| 45 | 
 | 
|---|
| 46 | /** Constructor of class atom.
 | 
|---|
| 47 |  */
 | 
|---|
| 48 | atom::atom(atom *pointer) :
 | 
|---|
| 49 |     ParticleInfo(pointer),
 | 
|---|
| 50 |     father(pointer),
 | 
|---|
| 51 |     sort(&Nr),
 | 
|---|
| 52 |     mol(0)
 | 
|---|
| 53 | {
 | 
|---|
| 54 |   setType(pointer->getType());  // copy element of atom
 | 
|---|
| 55 |   AtomicPosition = pointer->AtomicPosition; // copy trajectory of coordination
 | 
|---|
| 56 |   AtomicVelocity = pointer->AtomicVelocity; // copy trajectory of velocity
 | 
|---|
| 57 |   AtomicForce = pointer->AtomicForce;
 | 
|---|
| 58 |   setFixedIon(pointer->getFixedIon());
 | 
|---|
| 59 | };
 | 
|---|
| 60 | 
 | 
|---|
| 61 | atom *atom::clone(){
 | 
|---|
| 62 |   atom *res = new atom(this);
 | 
|---|
| 63 |   World::getInstance().registerAtom(res);
 | 
|---|
| 64 |   return res;
 | 
|---|
| 65 | }
 | 
|---|
| 66 | 
 | 
|---|
| 67 | 
 | 
|---|
| 68 | /** Destructor of class atom.
 | 
|---|
| 69 |  */
 | 
|---|
| 70 | atom::~atom()
 | 
|---|
| 71 | {
 | 
|---|
| 72 |   removeFromMolecule();
 | 
|---|
| 73 | };
 | 
|---|
| 74 | 
 | 
|---|
| 75 | 
 | 
|---|
| 76 | void atom::UpdateSteps()
 | 
|---|
| 77 | {
 | 
|---|
| 78 |   LOG(4,"atom::UpdateSteps() called.");
 | 
|---|
| 79 |   // append to position, velocity and force vector
 | 
|---|
| 80 |   AtomInfo::AppendTrajectoryStep();
 | 
|---|
| 81 |   // append to ListOfBonds vector
 | 
|---|
| 82 |   BondedParticleInfo::AppendTrajectoryStep();
 | 
|---|
| 83 | }
 | 
|---|
| 84 | 
 | 
|---|
| 85 | /** Climbs up the father list until NULL, last is returned.
 | 
|---|
| 86 |  * \return true father, i.e. whose father points to itself, NULL if it could not be found or has none (added hydrogen)
 | 
|---|
| 87 |  */
 | 
|---|
| 88 | atom *atom::GetTrueFather()
 | 
|---|
| 89 | {
 | 
|---|
| 90 |   if(father == this){ // top most father is the one that points on itself
 | 
|---|
| 91 |     return this;
 | 
|---|
| 92 |   }
 | 
|---|
| 93 |   else if(!father) {
 | 
|---|
| 94 |     return 0;
 | 
|---|
| 95 |   }
 | 
|---|
| 96 |   else {
 | 
|---|
| 97 |     return father->GetTrueFather();
 | 
|---|
| 98 |   }
 | 
|---|
| 99 | };
 | 
|---|
| 100 | 
 | 
|---|
| 101 | /** Sets father to itself or its father in case of copying a molecule.
 | 
|---|
| 102 |  */
 | 
|---|
| 103 | void atom::CorrectFather()
 | 
|---|
| 104 | {
 | 
|---|
| 105 |   if (father->father == father)   // same atom in copy's father points to itself
 | 
|---|
| 106 |     father = this;  // set father to itself (copy of a whole molecule)
 | 
|---|
| 107 |   else
 | 
|---|
| 108 |    father = father->father;  // set father to original's father
 | 
|---|
| 109 | 
 | 
|---|
| 110 | };
 | 
|---|
| 111 | 
 | 
|---|
| 112 | /** Check whether father is equal to given atom.
 | 
|---|
| 113 |  * \param *ptr atom to compare father to
 | 
|---|
| 114 |  * \param **res return value (only set if atom::father is equal to \a *ptr)
 | 
|---|
| 115 |  */
 | 
|---|
| 116 | void atom::EqualsFather ( const atom *ptr, const atom **res ) const
 | 
|---|
| 117 | {
 | 
|---|
| 118 |   if ( ptr == father )
 | 
|---|
| 119 |     *res = this;
 | 
|---|
| 120 | };
 | 
|---|
| 121 | 
 | 
|---|
| 122 | bool atom::isFather(const atom *ptr){
 | 
|---|
| 123 |   return ptr==father;
 | 
|---|
| 124 | }
 | 
|---|
| 125 | 
 | 
|---|
| 126 | /** Checks whether atom is within the given box.
 | 
|---|
| 127 |  * \param offset offset to box origin
 | 
|---|
| 128 |  * \param *parallelepiped box matrix
 | 
|---|
| 129 |  * \return true - is inside, false - is not
 | 
|---|
| 130 |  */
 | 
|---|
| 131 | bool atom::IsInShape(const Shape& shape) const
 | 
|---|
| 132 | {
 | 
|---|
| 133 |   return shape.isInside(getPosition());
 | 
|---|
| 134 | };
 | 
|---|
| 135 | 
 | 
|---|
| 136 | /** Output of a single atom with given numbering.
 | 
|---|
| 137 |  * \param ElementNo cardinal number of the element
 | 
|---|
| 138 |  * \param AtomNo cardinal number among these atoms of the same element
 | 
|---|
| 139 |  * \param *out stream to output to
 | 
|---|
| 140 |  * \param *comment commentary after '#' sign
 | 
|---|
| 141 |   * \return true - \a *out present, false - \a *out is NULL
 | 
|---|
| 142 |  */
 | 
|---|
| 143 | bool atom::OutputIndexed(ofstream * const out, const int ElementNo, const int AtomNo, const char *comment) const
 | 
|---|
| 144 | {
 | 
|---|
| 145 |   if (out != NULL) {
 | 
|---|
| 146 |     *out << "Ion_Type" << ElementNo << "_" << AtomNo << "\t"  << fixed << setprecision(9) << showpoint;
 | 
|---|
| 147 |     *out << at(0) << "\t" << at(1) << "\t" << at(2);
 | 
|---|
| 148 |     *out << "\t" << (int)(getFixedIon());
 | 
|---|
| 149 |     if (getAtomicVelocity().Norm() > MYEPSILON)
 | 
|---|
| 150 |       *out << "\t" << scientific << setprecision(6) << getAtomicVelocity()[0] << "\t" << getAtomicVelocity()[1] << "\t" << getAtomicVelocity()[2] << "\t";
 | 
|---|
| 151 |     if (comment != NULL)
 | 
|---|
| 152 |       *out << " # " << comment << endl;
 | 
|---|
| 153 |     else
 | 
|---|
| 154 |       *out << " # molecule nr " << getNr() << endl;
 | 
|---|
| 155 |     return true;
 | 
|---|
| 156 |   } else
 | 
|---|
| 157 |     return false;
 | 
|---|
| 158 | };
 | 
|---|
| 159 | 
 | 
|---|
| 160 | /** Output of a single atom with numbering from array according to atom::type.
 | 
|---|
| 161 |  * \param *ElementNo cardinal number of the element
 | 
|---|
| 162 |  * \param *AtomNo cardinal number among these atoms of the same element
 | 
|---|
| 163 |  * \param *out stream to output to
 | 
|---|
| 164 |  * \param *comment commentary after '#' sign
 | 
|---|
| 165 |   * \return true - \a *out present, false - \a *out is NULL
 | 
|---|
| 166 |  */
 | 
|---|
| 167 | bool atom::OutputArrayIndexed(ostream * const out,const enumeration<const element*> &elementLookup, int *AtomNo, const char *comment) const
 | 
|---|
| 168 | {
 | 
|---|
| 169 |   AtomNo[getType()->getAtomicNumber()]++;  // increment number
 | 
|---|
| 170 |   if (out != NULL) {
 | 
|---|
| 171 |     const element *elemental = getType();
 | 
|---|
| 172 |     ASSERT(elementLookup.there.find(elemental)!=elementLookup.there.end(),"Type of this atom was not in the formula upon enumeration");
 | 
|---|
| 173 |     *out << "Ion_Type" << elementLookup.there.find(elemental)->second << "_" << AtomNo[elemental->getAtomicNumber()] << "\t"  << fixed << setprecision(9) << showpoint;
 | 
|---|
| 174 |     *out << at(0) << "\t" << at(1) << "\t" << at(2);
 | 
|---|
| 175 |     *out << "\t" << getFixedIon();
 | 
|---|
| 176 |     if (getAtomicVelocity().Norm() > MYEPSILON)
 | 
|---|
| 177 |       *out << "\t" << scientific << setprecision(6) << getAtomicVelocity()[0] << "\t" << getAtomicVelocity()[1] << "\t" << getAtomicVelocity()[2] << "\t";
 | 
|---|
| 178 |     if (comment != NULL)
 | 
|---|
| 179 |       *out << " # " << comment << endl;
 | 
|---|
| 180 |     else
 | 
|---|
| 181 |       *out << " # molecule nr " << getNr() << endl;
 | 
|---|
| 182 |     return true;
 | 
|---|
| 183 |   } else
 | 
|---|
| 184 |     return false;
 | 
|---|
| 185 | };
 | 
|---|
| 186 | 
 | 
|---|
| 187 | /** Output of a single atom as one line in xyz file.
 | 
|---|
| 188 |  * \param *out stream to output to
 | 
|---|
| 189 |   * \return true - \a *out present, false - \a *out is NULL
 | 
|---|
| 190 |  */
 | 
|---|
| 191 | bool atom::OutputXYZLine(ofstream *out) const
 | 
|---|
| 192 | {
 | 
|---|
| 193 |   if (out != NULL) {
 | 
|---|
| 194 |     *out << getType()->getSymbol() << "\t" << at(0) << "\t" << at(1) << "\t" << at(2) << "\t" << endl;
 | 
|---|
| 195 |     return true;
 | 
|---|
| 196 |   } else
 | 
|---|
| 197 |     return false;
 | 
|---|
| 198 | };
 | 
|---|
| 199 | 
 | 
|---|
| 200 | /** Output of a single atom as one line in xyz file.
 | 
|---|
| 201 |  * \param *out stream to output to
 | 
|---|
| 202 |  * \param *ElementNo array with ion type number in the config file this atom's element shall have
 | 
|---|
| 203 |  * \param *AtomNo array with atom number in the config file this atom shall have, is increase by one automatically
 | 
|---|
| 204 |  * \param step Trajectory time step to output
 | 
|---|
| 205 |   * \return true - \a *out present, false - \a *out is NULL
 | 
|---|
| 206 |  */
 | 
|---|
| 207 | bool atom::OutputTrajectory(ofstream * const out, const enumeration<const element*> &elementLookup, int *AtomNo, const int step) const
 | 
|---|
| 208 | {
 | 
|---|
| 209 |   AtomNo[getType()->getAtomicNumber()]++;
 | 
|---|
| 210 |   if (out != NULL) {
 | 
|---|
| 211 |     const element *elemental = getType();
 | 
|---|
| 212 |     ASSERT(elementLookup.there.find(elemental)!=elementLookup.there.end(),"Type of this atom was not in the formula upon enumeration");
 | 
|---|
| 213 |     *out << "Ion_Type" << elementLookup.there.find(elemental)->second << "_" << AtomNo[getType()->getAtomicNumber()] << "\t"  << fixed << setprecision(9) << showpoint;
 | 
|---|
| 214 |     *out << getPositionAtStep(step)[0] << "\t" << getPositionAtStep(step)[1] << "\t" << getPositionAtStep(step)[2];
 | 
|---|
| 215 |     *out << "\t" << (int)(getFixedIon());
 | 
|---|
| 216 |     if (getAtomicVelocityAtStep(step).Norm() > MYEPSILON)
 | 
|---|
| 217 |       *out << "\t" << scientific << setprecision(6) << getAtomicVelocityAtStep(step)[0] << "\t" << getAtomicVelocityAtStep(step)[1] << "\t" << getAtomicVelocityAtStep(step)[2] << "\t";
 | 
|---|
| 218 |     if (getAtomicForceAtStep(step).Norm() > MYEPSILON)
 | 
|---|
| 219 |       *out << "\t" << scientific << setprecision(6) << getAtomicForceAtStep(step)[0] << "\t" << getAtomicForceAtStep(step)[1] << "\t" << getAtomicForceAtStep(step)[2] << "\t";
 | 
|---|
| 220 |     *out << "\t# Number in molecule " << getNr() << endl;
 | 
|---|
| 221 |     return true;
 | 
|---|
| 222 |   } else
 | 
|---|
| 223 |     return false;
 | 
|---|
| 224 | };
 | 
|---|
| 225 | 
 | 
|---|
| 226 | /** Output of a single atom as one lin in xyz file.
 | 
|---|
| 227 |  * \param *out stream to output to
 | 
|---|
| 228 |  * \param step Trajectory time step to output
 | 
|---|
| 229 |  * \return true - \a *out present, false - \a *out is NULL
 | 
|---|
| 230 |  */
 | 
|---|
| 231 | bool atom::OutputTrajectoryXYZ(ofstream * const out, const int step) const
 | 
|---|
| 232 | {
 | 
|---|
| 233 |   if (out != NULL) {
 | 
|---|
| 234 |     *out << getType()->getSymbol() << "\t";
 | 
|---|
| 235 |     *out << getPositionAtStep(step)[0] << "\t";
 | 
|---|
| 236 |     *out << getPositionAtStep(step)[1] << "\t";
 | 
|---|
| 237 |     *out << getPositionAtStep(step)[2] << endl;
 | 
|---|
| 238 |     return true;
 | 
|---|
| 239 |   } else
 | 
|---|
| 240 |     return false;
 | 
|---|
| 241 | };
 | 
|---|
| 242 | 
 | 
|---|
| 243 | /** Outputs the MPQC configuration line for this atom.
 | 
|---|
| 244 |  * \param *out output stream
 | 
|---|
| 245 |  * \param *center center of molecule subtracted from position
 | 
|---|
| 246 |  * \param *AtomNo pointer to atom counter that is increased by one
 | 
|---|
| 247 |  */
 | 
|---|
| 248 | void atom::OutputMPQCLine(ostream * const out, const Vector *center) const
 | 
|---|
| 249 | {
 | 
|---|
| 250 |   Vector recentered(getPosition());
 | 
|---|
| 251 |   recentered -= *center;
 | 
|---|
| 252 |   *out << "\t\t" << getType()->getSymbol() << " [ " << recentered[0] << "\t" << recentered[1] << "\t" << recentered[2] << " ]" << endl;
 | 
|---|
| 253 | };
 | 
|---|
| 254 | 
 | 
|---|
| 255 | /** Compares the indices of \a this atom with a given \a ptr.
 | 
|---|
| 256 |  * \param ptr atom to compare index against
 | 
|---|
| 257 |  * \return true - this one's is smaller, false - not
 | 
|---|
| 258 |  */
 | 
|---|
| 259 | bool atom::Compare(const atom &ptr) const
 | 
|---|
| 260 | {
 | 
|---|
| 261 |   if (getNr() < ptr.getNr())
 | 
|---|
| 262 |     return true;
 | 
|---|
| 263 |   else
 | 
|---|
| 264 |     return false;
 | 
|---|
| 265 | };
 | 
|---|
| 266 | 
 | 
|---|
| 267 | /** Returns squared distance to a given vector.
 | 
|---|
| 268 |  * \param origin vector to calculate distance to
 | 
|---|
| 269 |  * \return distance squared
 | 
|---|
| 270 |  */
 | 
|---|
| 271 | double atom::DistanceSquaredToVector(const Vector &origin) const
 | 
|---|
| 272 | {
 | 
|---|
| 273 |   return DistanceSquared(origin);
 | 
|---|
| 274 | };
 | 
|---|
| 275 | 
 | 
|---|
| 276 | /** Returns distance to a given vector.
 | 
|---|
| 277 |  * \param origin vector to calculate distance to
 | 
|---|
| 278 |  * \return distance
 | 
|---|
| 279 |  */
 | 
|---|
| 280 | double atom::DistanceToVector(const Vector &origin) const
 | 
|---|
| 281 | {
 | 
|---|
| 282 |   return distance(origin);
 | 
|---|
| 283 | };
 | 
|---|
| 284 | 
 | 
|---|
| 285 | /** Initialises the component number array.
 | 
|---|
| 286 |  * Size is set to atom::ListOfBonds.size()+1 (last is th encode end by -1)
 | 
|---|
| 287 |  */
 | 
|---|
| 288 | void atom::InitComponentNr()
 | 
|---|
| 289 | {
 | 
|---|
| 290 |   if (ComponentNr != NULL)
 | 
|---|
| 291 |     delete[](ComponentNr);
 | 
|---|
| 292 |   const BondList& ListOfBonds = getListOfBonds();
 | 
|---|
| 293 |   ComponentNr = new int[ListOfBonds.size()+1];
 | 
|---|
| 294 |   for (int i=ListOfBonds.size()+1;i--;)
 | 
|---|
| 295 |     ComponentNr[i] = -1;
 | 
|---|
| 296 | };
 | 
|---|
| 297 | 
 | 
|---|
| 298 | void atom::resetGraphNr(){
 | 
|---|
| 299 |   GraphNr=-1;
 | 
|---|
| 300 | }
 | 
|---|
| 301 | 
 | 
|---|
| 302 | std::ostream & atom::operator << (std::ostream &ost) const
 | 
|---|
| 303 | {
 | 
|---|
| 304 |   ParticleInfo::operator<<(ost);
 | 
|---|
| 305 |   ost << "," << getPosition();
 | 
|---|
| 306 |   return ost;
 | 
|---|
| 307 | }
 | 
|---|
| 308 | 
 | 
|---|
| 309 | std::ostream & operator << (std::ostream &ost, const atom &a)
 | 
|---|
| 310 | {
 | 
|---|
| 311 |   a.ParticleInfo::operator<<(ost);
 | 
|---|
| 312 |   ost << "," << a.getPosition();
 | 
|---|
| 313 |   return ost;
 | 
|---|
| 314 | }
 | 
|---|
| 315 | 
 | 
|---|
| 316 | bool operator < (atom &a, atom &b)
 | 
|---|
| 317 | {
 | 
|---|
| 318 |   return a.Compare(b);
 | 
|---|
| 319 | };
 | 
|---|
| 320 | 
 | 
|---|
| 321 | World *atom::getWorld(){
 | 
|---|
| 322 |   return world;
 | 
|---|
| 323 | }
 | 
|---|
| 324 | 
 | 
|---|
| 325 | void atom::setWorld(World* _world){
 | 
|---|
| 326 |   world = _world;
 | 
|---|
| 327 | }
 | 
|---|
| 328 | 
 | 
|---|
| 329 | bool atom::changeId(atomId_t newId){
 | 
|---|
| 330 |   // first we move ourselves in the world
 | 
|---|
| 331 |   // the world lets us know if that succeeded
 | 
|---|
| 332 |   if(world->changeAtomId(id,newId,this)){
 | 
|---|
| 333 |     id = newId;
 | 
|---|
| 334 |     return true;
 | 
|---|
| 335 |   }
 | 
|---|
| 336 |   else{
 | 
|---|
| 337 |     return false;
 | 
|---|
| 338 |   }
 | 
|---|
| 339 | }
 | 
|---|
| 340 | 
 | 
|---|
| 341 | void atom::setId(atomId_t _id) {
 | 
|---|
| 342 |   id=_id;
 | 
|---|
| 343 | }
 | 
|---|
| 344 | 
 | 
|---|
| 345 | atomId_t atom::getId() const {
 | 
|---|
| 346 |   return id;
 | 
|---|
| 347 | }
 | 
|---|
| 348 | 
 | 
|---|
| 349 | /** Makes the atom be contained in the new molecule \a *_mol.
 | 
|---|
| 350 |  * Uses atom::removeFromMolecule() to delist from old molecule.
 | 
|---|
| 351 |  * \param *_mol pointer to new molecule
 | 
|---|
| 352 |  */
 | 
|---|
| 353 | void atom::setMolecule(molecule *_mol){
 | 
|---|
| 354 |   // take this atom from the old molecule
 | 
|---|
| 355 |   removeFromMolecule();
 | 
|---|
| 356 |   mol = _mol;
 | 
|---|
| 357 |   if(!mol->containsAtom(this)){
 | 
|---|
| 358 |     mol->insert(this);
 | 
|---|
| 359 |   }
 | 
|---|
| 360 | }
 | 
|---|
| 361 | 
 | 
|---|
| 362 | /** Returns pointer to the molecule which atom belongs to.
 | 
|---|
| 363 |  * \return containing molecule
 | 
|---|
| 364 |  */
 | 
|---|
| 365 | molecule* atom::getMolecule() const {
 | 
|---|
| 366 |   return mol;
 | 
|---|
| 367 | }
 | 
|---|
| 368 | 
 | 
|---|
| 369 | /** Erases the atom in atom::mol's list of atoms and sets it to zero.
 | 
|---|
| 370 |  */
 | 
|---|
| 371 | void atom::removeFromMolecule(){
 | 
|---|
| 372 |   if(mol){
 | 
|---|
| 373 |     if(mol->containsAtom(this)){
 | 
|---|
| 374 |       mol->erase(this);
 | 
|---|
| 375 |     }
 | 
|---|
| 376 |     mol=0;
 | 
|---|
| 377 |   }
 | 
|---|
| 378 | }
 | 
|---|
| 379 | 
 | 
|---|
| 380 | int atom::getNr() const{
 | 
|---|
| 381 |   return ParticleInfo::getNr();
 | 
|---|
| 382 | }
 | 
|---|
| 383 | 
 | 
|---|
| 384 | atom* NewAtom(atomId_t _id){
 | 
|---|
| 385 |   atom * res =new atom();
 | 
|---|
| 386 |   res->setId(_id);
 | 
|---|
| 387 |   return res;
 | 
|---|
| 388 | }
 | 
|---|
| 389 | 
 | 
|---|
| 390 | void DeleteAtom(atom* atom){
 | 
|---|
| 391 |   delete atom;
 | 
|---|
| 392 | }
 | 
|---|
| 393 | 
 | 
|---|
| 394 | bool compareAtomElements(atom* atom1,atom* atom2){
 | 
|---|
| 395 |   return atom1->getType()->getNumber() < atom2->getType()->getNumber();
 | 
|---|
| 396 | }
 | 
|---|