[bcf653] | 1 | /*
|
---|
| 2 | * Project: MoleCuilder
|
---|
| 3 | * Description: creates and alters molecular systems
|
---|
[0aa122] | 4 | * Copyright (C) 2010-2012 University of Bonn. All rights reserved.
|
---|
[5aaa43] | 5 | * Copyright (C) 2013 Frederik Heber. All rights reserved.
|
---|
[94d5ac6] | 6 | *
|
---|
| 7 | *
|
---|
| 8 | * This file is part of MoleCuilder.
|
---|
| 9 | *
|
---|
| 10 | * MoleCuilder is free software: you can redistribute it and/or modify
|
---|
| 11 | * it under the terms of the GNU General Public License as published by
|
---|
| 12 | * the Free Software Foundation, either version 2 of the License, or
|
---|
| 13 | * (at your option) any later version.
|
---|
| 14 | *
|
---|
| 15 | * MoleCuilder is distributed in the hope that it will be useful,
|
---|
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 18 | * GNU General Public License for more details.
|
---|
| 19 | *
|
---|
| 20 | * You should have received a copy of the GNU General Public License
|
---|
| 21 | * along with MoleCuilder. If not, see <http://www.gnu.org/licenses/>.
|
---|
[bcf653] | 22 | */
|
---|
| 23 |
|
---|
[14de469] | 24 | /** \file atom.cpp
|
---|
[1907a7] | 25 | *
|
---|
[14de469] | 26 | * Function implementations for the class atom.
|
---|
[1907a7] | 27 | *
|
---|
[14de469] | 28 | */
|
---|
| 29 |
|
---|
[bf3817] | 30 | // include config.h
|
---|
| 31 | #ifdef HAVE_CONFIG_H
|
---|
| 32 | #include <config.h>
|
---|
| 33 | #endif
|
---|
| 34 |
|
---|
[ad011c] | 35 | #include "CodePatterns/MemDebug.hpp"
|
---|
[112b09] | 36 |
|
---|
[357fba] | 37 | #include "atom.hpp"
|
---|
[708277] | 38 | #include "AtomObserver.hpp"
|
---|
[129204] | 39 | #include "Bond/bond.hpp"
|
---|
[e2373df] | 40 | #include "CodePatterns/Log.hpp"
|
---|
[4a7776a] | 41 | #include "config.hpp"
|
---|
[3bdb6d] | 42 | #include "Element/element.hpp"
|
---|
[57f243] | 43 | #include "LinearAlgebra/Vector.hpp"
|
---|
[d346b6] | 44 | #include "World.hpp"
|
---|
[11f0fa] | 45 | #include "WorldTime.hpp"
|
---|
[6cfa36] | 46 | #include "molecule.hpp"
|
---|
[c550dd] | 47 | #include "Shapes/Shape.hpp"
|
---|
[a0064e] | 48 |
|
---|
[36166d] | 49 | #include <iomanip>
|
---|
[0ba410] | 50 | #include <iostream>
|
---|
[36166d] | 51 |
|
---|
[14de469] | 52 | /************************************* Functions for class atom *************************************/
|
---|
| 53 |
|
---|
[70ff32] | 54 |
|
---|
[46d958] | 55 | atom::atom() :
|
---|
[97b825] | 56 | father(this),
|
---|
[5309ba] | 57 | sort(&Nr),
|
---|
[97b825] | 58 | mol(0)
|
---|
[708277] | 59 | {
|
---|
| 60 | // sign on to global atom change tracker
|
---|
| 61 | AtomObserver::getInstance().AtomInserted(this);
|
---|
| 62 | }
|
---|
[14de469] | 63 |
|
---|
[ea0c8b] | 64 | atom::atom(atom *pointer) :
|
---|
| 65 | ParticleInfo(*pointer),
|
---|
[c742fe] | 66 | AtomInfo(*pointer),
|
---|
[97b825] | 67 | father(pointer),
|
---|
[5309ba] | 68 | sort(&Nr),
|
---|
[9df680] | 69 | mol(0)
|
---|
[2319ed] | 70 | {
|
---|
[708277] | 71 | // sign on to global atom change tracker
|
---|
| 72 | AtomObserver::getInstance().AtomInserted(this);
|
---|
[b453f9] | 73 | };
|
---|
[2319ed] | 74 |
|
---|
[46d958] | 75 | atom *atom::clone(){
|
---|
[68f03d] | 76 | atom *res = new atom(this);
|
---|
[23b547] | 77 | World::getInstance().registerAtom(res);
|
---|
[46d958] | 78 | return res;
|
---|
| 79 | }
|
---|
| 80 |
|
---|
[2319ed] | 81 |
|
---|
[14de469] | 82 | /** Destructor of class atom.
|
---|
| 83 | */
|
---|
[1907a7] | 84 | atom::~atom()
|
---|
[14de469] | 85 | {
|
---|
[6cfa36] | 86 | removeFromMolecule();
|
---|
[708277] | 87 | // sign off from global atom change tracker
|
---|
| 88 | AtomObserver::getInstance().AtomRemoved(this);
|
---|
| 89 | }
|
---|
[e2373df] | 90 |
|
---|
| 91 |
|
---|
[8cc22f] | 92 | void atom::UpdateStep(const unsigned int _step)
|
---|
[e2373df] | 93 | {
|
---|
[8cc22f] | 94 | LOG(4,"atom::UpdateStep() called.");
|
---|
[e2373df] | 95 | // append to position, velocity and force vector
|
---|
[8cc22f] | 96 | AtomInfo::AppendTrajectoryStep(WorldTime::getTime()+1);
|
---|
[1e6249] | 97 | // append to ListOfBonds vector
|
---|
[8cc22f] | 98 | BondedParticleInfo::AppendTrajectoryStep(WorldTime::getTime()+1);
|
---|
[e2373df] | 99 | }
|
---|
| 100 |
|
---|
[8cc22f] | 101 | void atom::removeStep(const unsigned int _step)
|
---|
[7e51e1] | 102 | {
|
---|
[8cc22f] | 103 | LOG(4,"atom::removeStep() called.");
|
---|
[7e51e1] | 104 | // append to position, velocity and force vector
|
---|
[8cc22f] | 105 | AtomInfo::removeTrajectoryStep(_step);
|
---|
[7e51e1] | 106 | // append to ListOfBonds vector
|
---|
[8cc22f] | 107 | BondedParticleInfo::removeTrajectoryStep(_step);
|
---|
[7e51e1] | 108 | }
|
---|
| 109 |
|
---|
[59fff1] | 110 | atom *atom::GetTrueFather()
|
---|
| 111 | {
|
---|
| 112 | const atom *father = const_cast<const atom *>(this)->GetTrueFather();
|
---|
| 113 | return const_cast<atom *>(father);
|
---|
| 114 | }
|
---|
| 115 |
|
---|
| 116 | const atom *atom::GetTrueFather() const
|
---|
[14de469] | 117 | {
|
---|
[215df0] | 118 | if(father == this){ // top most father is the one that points on itself
|
---|
| 119 | return this;
|
---|
| 120 | }
|
---|
| 121 | else if(!father) {
|
---|
| 122 | return 0;
|
---|
| 123 | }
|
---|
| 124 | else {
|
---|
| 125 | return father->GetTrueFather();
|
---|
| 126 | }
|
---|
[14de469] | 127 | };
|
---|
| 128 |
|
---|
[e65246] | 129 | /** Sets father to itself or its father in case of copying a molecule.
|
---|
| 130 | */
|
---|
| 131 | void atom::CorrectFather()
|
---|
| 132 | {
|
---|
[2e352f] | 133 | if (father->father != father) // same atom in copy's father points to itself
|
---|
| 134 | // father = this; // set father to itself (copy of a whole molecule)
|
---|
| 135 | // else
|
---|
[e65246] | 136 | father = father->father; // set father to original's father
|
---|
| 137 |
|
---|
| 138 | };
|
---|
| 139 |
|
---|
[b453f9] | 140 | void atom::EqualsFather ( const atom *ptr, const atom **res ) const
|
---|
[e65246] | 141 | {
|
---|
| 142 | if ( ptr == father )
|
---|
| 143 | *res = this;
|
---|
| 144 | };
|
---|
| 145 |
|
---|
[00abfc] | 146 | bool atom::isFather(const atom *ptr){
|
---|
| 147 | return ptr==father;
|
---|
| 148 | }
|
---|
| 149 |
|
---|
[e138de] | 150 | bool atom::OutputIndexed(ofstream * const out, const int ElementNo, const int AtomNo, const char *comment) const
|
---|
[14de469] | 151 | {
|
---|
| 152 | if (out != NULL) {
|
---|
| 153 | *out << "Ion_Type" << ElementNo << "_" << AtomNo << "\t" << fixed << setprecision(9) << showpoint;
|
---|
[d74077] | 154 | *out << at(0) << "\t" << at(1) << "\t" << at(2);
|
---|
[6625c3] | 155 | *out << "\t" << (int)(getFixedIon());
|
---|
[bce72c] | 156 | if (getAtomicVelocity().Norm() > MYEPSILON)
|
---|
| 157 | *out << "\t" << scientific << setprecision(6) << getAtomicVelocity()[0] << "\t" << getAtomicVelocity()[1] << "\t" << getAtomicVelocity()[2] << "\t";
|
---|
[437922] | 158 | if (comment != NULL)
|
---|
| 159 | *out << " # " << comment << endl;
|
---|
[e9f8f9] | 160 | else
|
---|
[735b1c] | 161 | *out << " # molecule nr " << getNr() << endl;
|
---|
[e9f8f9] | 162 | return true;
|
---|
| 163 | } else
|
---|
| 164 | return false;
|
---|
| 165 | };
|
---|
[b453f9] | 166 |
|
---|
[0ba410] | 167 | bool atom::OutputArrayIndexed(ostream * const out,const enumeration<const element*> &elementLookup, int *AtomNo, const char *comment) const
|
---|
[e9f8f9] | 168 | {
|
---|
[83f176] | 169 | AtomNo[getType()->getAtomicNumber()]++; // increment number
|
---|
[e9f8f9] | 170 | if (out != NULL) {
|
---|
[8f4df1] | 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");
|
---|
[83f176] | 173 | *out << "Ion_Type" << elementLookup.there.find(elemental)->second << "_" << AtomNo[elemental->getAtomicNumber()] << "\t" << fixed << setprecision(9) << showpoint;
|
---|
[d74077] | 174 | *out << at(0) << "\t" << at(1) << "\t" << at(2);
|
---|
[6625c3] | 175 | *out << "\t" << getFixedIon();
|
---|
[bce72c] | 176 | if (getAtomicVelocity().Norm() > MYEPSILON)
|
---|
| 177 | *out << "\t" << scientific << setprecision(6) << getAtomicVelocity()[0] << "\t" << getAtomicVelocity()[1] << "\t" << getAtomicVelocity()[2] << "\t";
|
---|
[e9f8f9] | 178 | if (comment != NULL)
|
---|
| 179 | *out << " # " << comment << endl;
|
---|
[437922] | 180 | else
|
---|
[735b1c] | 181 | *out << " # molecule nr " << getNr() << endl;
|
---|
[14de469] | 182 | return true;
|
---|
| 183 | } else
|
---|
| 184 | return false;
|
---|
| 185 | };
|
---|
| 186 |
|
---|
[b453f9] | 187 | bool atom::Compare(const atom &ptr) const
|
---|
[4455f4] | 188 | {
|
---|
[735b1c] | 189 | if (getNr() < ptr.getNr())
|
---|
[4455f4] | 190 | return true;
|
---|
| 191 | else
|
---|
| 192 | return false;
|
---|
| 193 | };
|
---|
| 194 |
|
---|
[b453f9] | 195 | double atom::DistanceSquaredToVector(const Vector &origin) const
|
---|
[4455f4] | 196 | {
|
---|
[d74077] | 197 | return DistanceSquared(origin);
|
---|
[4455f4] | 198 | };
|
---|
| 199 |
|
---|
[b453f9] | 200 | double atom::DistanceToVector(const Vector &origin) const
|
---|
[4455f4] | 201 | {
|
---|
[d74077] | 202 | return distance(origin);
|
---|
[4455f4] | 203 | };
|
---|
| 204 |
|
---|
| 205 | void atom::InitComponentNr()
|
---|
| 206 | {
|
---|
| 207 | if (ComponentNr != NULL)
|
---|
[920c70] | 208 | delete[](ComponentNr);
|
---|
[9d83b6] | 209 | const BondList& ListOfBonds = getListOfBonds();
|
---|
[920c70] | 210 | ComponentNr = new int[ListOfBonds.size()+1];
|
---|
[4455f4] | 211 | for (int i=ListOfBonds.size()+1;i--;)
|
---|
| 212 | ComponentNr[i] = -1;
|
---|
[14b65e] | 213 | };
|
---|
| 214 |
|
---|
| 215 | void atom::resetGraphNr(){
|
---|
| 216 | GraphNr=-1;
|
---|
| 217 | }
|
---|
[4455f4] | 218 |
|
---|
[d74077] | 219 | std::ostream & atom::operator << (std::ostream &ost) const
|
---|
| 220 | {
|
---|
| 221 | ParticleInfo::operator<<(ost);
|
---|
| 222 | ost << "," << getPosition();
|
---|
| 223 | return ost;
|
---|
| 224 | }
|
---|
| 225 |
|
---|
| 226 | std::ostream & operator << (std::ostream &ost, const atom &a)
|
---|
| 227 | {
|
---|
| 228 | a.ParticleInfo::operator<<(ost);
|
---|
| 229 | ost << "," << a.getPosition();
|
---|
| 230 | return ost;
|
---|
| 231 | }
|
---|
[4455f4] | 232 |
|
---|
| 233 | bool operator < (atom &a, atom &b)
|
---|
| 234 | {
|
---|
| 235 | return a.Compare(b);
|
---|
| 236 | };
|
---|
| 237 |
|
---|
[46d958] | 238 | World *atom::getWorld(){
|
---|
| 239 | return world;
|
---|
| 240 | }
|
---|
| 241 |
|
---|
| 242 | void atom::setWorld(World* _world){
|
---|
| 243 | world = _world;
|
---|
| 244 | }
|
---|
| 245 |
|
---|
[88d586] | 246 | bool atom::changeId(atomId_t newId){
|
---|
| 247 | // first we move ourselves in the world
|
---|
| 248 | // the world lets us know if that succeeded
|
---|
[4f7f0bf] | 249 | if(world->changeAtomId(id,newId,this)){
|
---|
| 250 | OBSERVE;
|
---|
| 251 | id = newId;
|
---|
| 252 | NOTIFY(IndexChanged);
|
---|
[88d586] | 253 | return true;
|
---|
| 254 | }
|
---|
| 255 | else{
|
---|
| 256 | return false;
|
---|
| 257 | }
|
---|
| 258 | }
|
---|
| 259 |
|
---|
| 260 | void atom::setId(atomId_t _id) {
|
---|
[46d958] | 261 | id=_id;
|
---|
| 262 | }
|
---|
| 263 |
|
---|
[ad2b411] | 264 | atomId_t atom::getId() const {
|
---|
[46d958] | 265 | return id;
|
---|
| 266 | }
|
---|
| 267 |
|
---|
[6cfa36] | 268 | void atom::setMolecule(molecule *_mol){
|
---|
| 269 | // take this atom from the old molecule
|
---|
| 270 | removeFromMolecule();
|
---|
[3867a7] | 271 | mol = _mol;
|
---|
[c32d21] | 272 | if ((mol) && (!mol->containsAtom(this))) {
|
---|
| 273 | signOn(mol, AtomObservable::PositionChanged);
|
---|
| 274 | mol->insert(this);
|
---|
| 275 | }
|
---|
[6cfa36] | 276 | }
|
---|
| 277 |
|
---|
[0d9546] | 278 | void atom::unsetMolecule()
|
---|
| 279 | {
|
---|
| 280 | // take this atom from the old molecule
|
---|
| 281 | ASSERT(!mol->containsAtom(this),
|
---|
| 282 | "atom::unsetMolecule() - old molecule "+toString(mol)+" still contains us!");
|
---|
[c32d21] | 283 | signOff(mol, AtomObservable::PositionChanged);
|
---|
[0d9546] | 284 | mol = NULL;
|
---|
| 285 | }
|
---|
| 286 |
|
---|
[e41c48] | 287 | molecule* atom::getMolecule() const {
|
---|
[c084cc] | 288 | return mol;
|
---|
| 289 | }
|
---|
| 290 |
|
---|
[6cfa36] | 291 | void atom::removeFromMolecule(){
|
---|
| 292 | if(mol){
|
---|
[c32d21] | 293 | if(mol->containsAtom(this)){
|
---|
| 294 | signOff(mol, AtomObservable::PositionChanged);
|
---|
[6cfa36] | 295 | mol->erase(this);
|
---|
| 296 | }
|
---|
| 297 | mol=0;
|
---|
| 298 | }
|
---|
[1f8337] | 299 | }
|
---|
| 300 |
|
---|
[560bbe] | 301 | bool atom::changeNr(const int newNr)
|
---|
| 302 | {
|
---|
| 303 | if ((mol) && (mol->changeAtomNr(getNr(),newNr,this))) {
|
---|
| 304 | return true;
|
---|
| 305 | } else{
|
---|
| 306 | return false;
|
---|
| 307 | }
|
---|
| 308 | }
|
---|
| 309 |
|
---|
[e8a21f] | 310 | int atom::getNr() const{
|
---|
[735b1c] | 311 | return ParticleInfo::getNr();
|
---|
[e8a21f] | 312 | }
|
---|
[6cfa36] | 313 |
|
---|
[88d586] | 314 | atom* NewAtom(atomId_t _id){
|
---|
[11f0fa] | 315 | atom * res = new atom();
|
---|
[88d586] | 316 | res->setId(_id);
|
---|
| 317 | return res;
|
---|
[46d958] | 318 | }
|
---|
| 319 |
|
---|
[88d586] | 320 | void DeleteAtom(atom* atom){
|
---|
[46d958] | 321 | delete atom;
|
---|
[e5f64de] | 322 | }
|
---|
| 323 |
|
---|
| 324 | bool compareAtomElements(atom* atom1,atom* atom2){
|
---|
[ed26ae] | 325 | return atom1->getType()->getAtomicNumber() < atom2->getType()->getAtomicNumber();
|
---|
[46d958] | 326 | }
|
---|