[bcf653] | 1 | /*
|
---|
| 2 | * Project: MoleCuilder
|
---|
| 3 | * Description: creates and alters molecular systems
|
---|
[0aa122] | 4 | * Copyright (C) 2010-2012 University of Bonn. All rights reserved.
|
---|
[94d5ac6] | 5 | *
|
---|
| 6 | *
|
---|
| 7 | * This file is part of MoleCuilder.
|
---|
| 8 | *
|
---|
| 9 | * MoleCuilder is free software: you can redistribute it and/or modify
|
---|
| 10 | * it under the terms of the GNU General Public License as published by
|
---|
| 11 | * the Free Software Foundation, either version 2 of the License, or
|
---|
| 12 | * (at your option) any later version.
|
---|
| 13 | *
|
---|
| 14 | * MoleCuilder is distributed in the hope that it will be useful,
|
---|
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 17 | * GNU General Public License for more details.
|
---|
| 18 | *
|
---|
| 19 | * You should have received a copy of the GNU General Public License
|
---|
| 20 | * along with MoleCuilder. If not, see <http://www.gnu.org/licenses/>.
|
---|
[bcf653] | 21 | */
|
---|
| 22 |
|
---|
[14de469] | 23 | /** \file molecules.cpp
|
---|
[69eb71] | 24 | *
|
---|
[14de469] | 25 | * Functions for the class molecule.
|
---|
[69eb71] | 26 | *
|
---|
[14de469] | 27 | */
|
---|
| 28 |
|
---|
[bf3817] | 29 | // include config.h
|
---|
[aafd77] | 30 | #ifdef HAVE_CONFIG_H
|
---|
| 31 | #include <config.h>
|
---|
| 32 | #endif
|
---|
| 33 |
|
---|
[ad011c] | 34 | #include "CodePatterns/MemDebug.hpp"
|
---|
[112b09] | 35 |
|
---|
[49e1ae] | 36 | #include <cstring>
|
---|
[ac9b56] | 37 | #include <boost/bind.hpp>
|
---|
[9df5c6] | 38 | #include <boost/foreach.hpp>
|
---|
[49e1ae] | 39 |
|
---|
[aafd77] | 40 | #include <gsl/gsl_inline.h>
|
---|
| 41 | #include <gsl/gsl_heapsort.h>
|
---|
| 42 |
|
---|
[560bbe] | 43 | #include "molecule.hpp"
|
---|
| 44 |
|
---|
[6f0841] | 45 | #include "Atom/atom.hpp"
|
---|
[129204] | 46 | #include "Bond/bond.hpp"
|
---|
[9d83b6] | 47 | #include "Box.hpp"
|
---|
| 48 | #include "CodePatterns/enumeration.hpp"
|
---|
| 49 | #include "CodePatterns/Log.hpp"
|
---|
[a80fbdf] | 50 | #include "config.hpp"
|
---|
[560bbe] | 51 | #include "Descriptors/AtomIdDescriptor.hpp"
|
---|
[3bdb6d] | 52 | #include "Element/element.hpp"
|
---|
[129204] | 53 | #include "Graph/BondGraph.hpp"
|
---|
[783e88] | 54 | #include "LinearAlgebra/Exceptions.hpp"
|
---|
[13d150] | 55 | #include "LinearAlgebra/leastsquaremin.hpp"
|
---|
[9d83b6] | 56 | #include "LinearAlgebra/Plane.hpp"
|
---|
| 57 | #include "LinearAlgebra/RealSpaceMatrix.hpp"
|
---|
| 58 | #include "LinearAlgebra/Vector.hpp"
|
---|
[53c7fc] | 59 | #include "LinkedCell/linkedcell.hpp"
|
---|
[560bbe] | 60 | #include "IdPool_impl.hpp"
|
---|
[c67ff9] | 61 | #include "Shapes/BaseShapes.hpp"
|
---|
[d127c8] | 62 | #include "Tesselation/tesselation.hpp"
|
---|
[b34306] | 63 | #include "World.hpp"
|
---|
[9d83b6] | 64 | #include "WorldTime.hpp"
|
---|
[14de469] | 65 |
|
---|
| 66 |
|
---|
| 67 | /************************************* Functions for class molecule *********************************/
|
---|
| 68 |
|
---|
| 69 | /** Constructor of class molecule.
|
---|
| 70 | * Initialises molecule list with correctly referenced start and end, and sets molecule::last_atom to zero.
|
---|
| 71 | */
|
---|
[4d2b33] | 72 | molecule::molecule() :
|
---|
[cd5047] | 73 | Observable("molecule"),
|
---|
[458c31] | 74 | MDSteps(0),
|
---|
| 75 | NoNonBonds(0),
|
---|
| 76 | NoCyclicBonds(0),
|
---|
| 77 | ActiveFlag(false),
|
---|
| 78 | IndexNr(-1),
|
---|
[e791dc] | 79 | NoNonHydrogen(this,boost::bind(&molecule::doCountNoNonHydrogen,this),"NoNonHydrogen"),
|
---|
[458c31] | 80 | BondCount(this,boost::bind(&molecule::doCountBonds,this),"BondCount"),
|
---|
[52ed5b] | 81 | atomIdPool(1, 20, 100),
|
---|
[458c31] | 82 | last_atom(0)
|
---|
[69eb71] | 83 | {
|
---|
[6a3c83] | 84 | // add specific channels
|
---|
| 85 | Channels *OurChannel = new Channels;
|
---|
[708277] | 86 | NotificationChannels.insert( std::make_pair( static_cast<Observable *>(this), OurChannel) );
|
---|
[6a3c83] | 87 | for (size_t type = 0; type < (size_t)NotificationType_MAX; ++type)
|
---|
| 88 | OurChannel->addChannel(type);
|
---|
[fa649a] | 89 |
|
---|
[387b36] | 90 | strcpy(name,World::getInstance().getDefaultName().c_str());
|
---|
[14de469] | 91 | };
|
---|
| 92 |
|
---|
[cbc5fb] | 93 | molecule *NewMolecule(){
|
---|
[4d2b33] | 94 | return new molecule();
|
---|
[cbc5fb] | 95 | }
|
---|
| 96 |
|
---|
[14de469] | 97 | /** Destructor of class molecule.
|
---|
| 98 | * Initialises molecule list with correctly referenced start and end, and sets molecule::last_atom to zero.
|
---|
| 99 | */
|
---|
[69eb71] | 100 | molecule::~molecule()
|
---|
[14de469] | 101 | {
|
---|
[042f82] | 102 | CleanupMolecule();
|
---|
[14de469] | 103 | };
|
---|
| 104 |
|
---|
[357fba] | 105 |
|
---|
[cbc5fb] | 106 | void DeleteMolecule(molecule *mol){
|
---|
| 107 | delete mol;
|
---|
| 108 | }
|
---|
| 109 |
|
---|
[520c8b] | 110 | // getter and setter
|
---|
[73a857] | 111 | const std::string molecule::getName() const{
|
---|
[520c8b] | 112 | return std::string(name);
|
---|
| 113 | }
|
---|
| 114 |
|
---|
[ea7176] | 115 | int molecule::getAtomCount() const{
|
---|
[e791dc] | 116 | return atomIds.size();
|
---|
| 117 | }
|
---|
| 118 |
|
---|
| 119 | size_t molecule::getNoNonHydrogen() const{
|
---|
| 120 | return *NoNonHydrogen;
|
---|
[ea7176] | 121 | }
|
---|
| 122 |
|
---|
[458c31] | 123 | int molecule::getBondCount() const{
|
---|
| 124 | return *BondCount;
|
---|
| 125 | }
|
---|
| 126 |
|
---|
[520c8b] | 127 | void molecule::setName(const std::string _name){
|
---|
[2ba827] | 128 | OBSERVE;
|
---|
[6a3c83] | 129 | NOTIFY(MoleculeNameChanged);
|
---|
[35b698] | 130 | cout << "Set name of molecule " << getId() << " to " << _name << endl;
|
---|
[520c8b] | 131 | strncpy(name,_name.c_str(),MAXSTRINGSIZE);
|
---|
| 132 | }
|
---|
| 133 |
|
---|
[c6ab91] | 134 | void molecule::InsertLocalToGlobalId(atom * const pointer)
|
---|
| 135 | {
|
---|
| 136 | #ifndef NDEBUG
|
---|
| 137 | std::pair< LocalToGlobalId_t::iterator, bool > inserter =
|
---|
| 138 | #endif
|
---|
| 139 | LocalToGlobalId.insert( std::make_pair(pointer->getNr(), pointer) );
|
---|
| 140 | ASSERT( inserter.second,
|
---|
| 141 | "molecule::AddAtom() - local number "+toString(pointer->getNr())+" appears twice.");
|
---|
| 142 | }
|
---|
| 143 |
|
---|
[560bbe] | 144 | bool molecule::changeAtomNr(int oldNr, int newNr, atom* target){
|
---|
| 145 | OBSERVE;
|
---|
| 146 | if(atomIdPool.reserveId(newNr)){
|
---|
[6a3c83] | 147 | NOTIFY(AtomNrChanged);
|
---|
[560bbe] | 148 | if (oldNr != -1) // -1 is reserved and indicates no number
|
---|
| 149 | atomIdPool.releaseId(oldNr);
|
---|
[c6ab91] | 150 | LocalToGlobalId.erase(oldNr);
|
---|
[560bbe] | 151 | ASSERT (target,
|
---|
| 152 | "molecule::changeAtomNr() - given target is NULL, cannot set Nr or name.");
|
---|
| 153 | target->setNr(newNr);
|
---|
[c6ab91] | 154 | InsertLocalToGlobalId(target);
|
---|
[560bbe] | 155 | setAtomName(target);
|
---|
| 156 | return true;
|
---|
| 157 | } else{
|
---|
| 158 | return false;
|
---|
| 159 | }
|
---|
| 160 | }
|
---|
| 161 |
|
---|
[a7a087] | 162 | bool molecule::changeId(moleculeId_t newId){
|
---|
| 163 | // first we move ourselves in the world
|
---|
| 164 | // the world lets us know if that succeeded
|
---|
| 165 | if(World::getInstance().changeMoleculeId(id,newId,this)){
|
---|
| 166 | id = newId;
|
---|
| 167 | return true;
|
---|
| 168 | }
|
---|
| 169 | else{
|
---|
| 170 | return false;
|
---|
| 171 | }
|
---|
| 172 | }
|
---|
| 173 |
|
---|
| 174 |
|
---|
[73a857] | 175 | moleculeId_t molecule::getId() const {
|
---|
[cbc5fb] | 176 | return id;
|
---|
| 177 | }
|
---|
| 178 |
|
---|
| 179 | void molecule::setId(moleculeId_t _id){
|
---|
| 180 | id =_id;
|
---|
| 181 | }
|
---|
| 182 |
|
---|
[73a857] | 183 | const Formula &molecule::getFormula() const {
|
---|
[f17e1c] | 184 | return formula;
|
---|
[ac9b56] | 185 | }
|
---|
| 186 |
|
---|
[73a857] | 187 | unsigned int molecule::getElementCount() const{
|
---|
[389cc8] | 188 | return formula.getElementCount();
|
---|
| 189 | }
|
---|
| 190 |
|
---|
| 191 | bool molecule::hasElement(const element *element) const{
|
---|
| 192 | return formula.hasElement(element);
|
---|
| 193 | }
|
---|
| 194 |
|
---|
| 195 | bool molecule::hasElement(atomicNumber_t Z) const{
|
---|
| 196 | return formula.hasElement(Z);
|
---|
| 197 | }
|
---|
| 198 |
|
---|
| 199 | bool molecule::hasElement(const string &shorthand) const{
|
---|
| 200 | return formula.hasElement(shorthand);
|
---|
| 201 | }
|
---|
| 202 |
|
---|
[bd58fb] | 203 | /************************** Access to the List of Atoms ****************/
|
---|
| 204 |
|
---|
[9879f6] | 205 | molecule::const_iterator molecule::erase( const_iterator loc )
|
---|
| 206 | {
|
---|
[bf8e20] | 207 | OBSERVE;
|
---|
[6a3c83] | 208 | NOTIFY(AtomRemoved);
|
---|
[59fff1] | 209 | const_iterator iter = loc;
|
---|
[30c753] | 210 | ++iter;
|
---|
[59fff1] | 211 | atom * const _atom = const_cast<atom *>(*loc);
|
---|
| 212 | atomIds.erase( _atom->getId() );
|
---|
[6a3c83] | 213 | {
|
---|
| 214 | NOTIFY(AtomNrChanged);
|
---|
| 215 | atomIdPool.releaseId(_atom->getNr());
|
---|
[c6ab91] | 216 | LocalToGlobalId.erase(_atom->getNr());
|
---|
[6a3c83] | 217 | _atom->setNr(-1);
|
---|
| 218 | }
|
---|
[59fff1] | 219 | formula-=_atom->getType();
|
---|
| 220 | _atom->removeFromMolecule();
|
---|
[9879f6] | 221 | return iter;
|
---|
| 222 | }
|
---|
| 223 |
|
---|
[6cfa36] | 224 | molecule::const_iterator molecule::erase( atom * key )
|
---|
[9879f6] | 225 | {
|
---|
[bf8e20] | 226 | OBSERVE;
|
---|
[6a3c83] | 227 | NOTIFY(AtomRemoved);
|
---|
[59fff1] | 228 | const_iterator iter = find(key);
|
---|
[a7b761b] | 229 | if (iter != end()){
|
---|
[30c753] | 230 | ++iter;
|
---|
[274d45] | 231 | atomIds.erase( key->getId() );
|
---|
[6a3c83] | 232 | {
|
---|
| 233 | NOTIFY(AtomNrChanged);
|
---|
| 234 | atomIdPool.releaseId(key->getNr());
|
---|
[c6ab91] | 235 | LocalToGlobalId.erase(key->getNr());
|
---|
[6a3c83] | 236 | key->setNr(-1);
|
---|
| 237 | }
|
---|
[8f4df1] | 238 | formula-=key->getType();
|
---|
[6cfa36] | 239 | key->removeFromMolecule();
|
---|
[a7b761b] | 240 | }
|
---|
| 241 | return iter;
|
---|
[9879f6] | 242 | }
|
---|
| 243 |
|
---|
| 244 | pair<molecule::iterator,bool> molecule::insert ( atom * const key )
|
---|
| 245 | {
|
---|
[bf8e20] | 246 | OBSERVE;
|
---|
[6a3c83] | 247 | NOTIFY(AtomInserted);
|
---|
[8e1f901] | 248 | std::pair<iterator,bool> res = atomIds.insert(key->getId());
|
---|
[274d45] | 249 | if (res.second) { // push atom if went well
|
---|
[6a3c83] | 250 | NOTIFY(AtomNrChanged);
|
---|
[560bbe] | 251 | key->setNr(atomIdPool.getNextId());
|
---|
[c6ab91] | 252 | InsertLocalToGlobalId(key);
|
---|
[560bbe] | 253 | setAtomName(key);
|
---|
[8f4df1] | 254 | formula+=key->getType();
|
---|
[8e1f901] | 255 | return res;
|
---|
[274d45] | 256 | } else {
|
---|
[30c753] | 257 | return pair<iterator,bool>(end(),res.second);
|
---|
[274d45] | 258 | }
|
---|
[9879f6] | 259 | }
|
---|
[520c8b] | 260 |
|
---|
[560bbe] | 261 | void molecule::setAtomName(atom *_atom) const
|
---|
| 262 | {
|
---|
| 263 | std::stringstream sstr;
|
---|
[52ed5b] | 264 | sstr << _atom->getType()->getSymbol() << _atom->getNr();
|
---|
[560bbe] | 265 | _atom->setName(sstr.str());
|
---|
| 266 | }
|
---|
| 267 |
|
---|
[9317be] | 268 | World::AtomComposite molecule::getAtomSet() const
|
---|
[3738f0] | 269 | {
|
---|
[9317be] | 270 | World::AtomComposite vector_of_atoms;
|
---|
[59fff1] | 271 | for (molecule::iterator iter = begin(); iter != end(); ++iter)
|
---|
[30c753] | 272 | vector_of_atoms.push_back(*iter);
|
---|
[3738f0] | 273 | return vector_of_atoms;
|
---|
| 274 | }
|
---|
| 275 |
|
---|
[14de469] | 276 | /** Adds given atom \a *pointer from molecule list.
|
---|
[69eb71] | 277 | * Increases molecule::last_atom and gives last number to added atom and names it according to its element::abbrev and molecule::AtomCount
|
---|
[14de469] | 278 | * \param *pointer allocated and set atom
|
---|
| 279 | * \return true - succeeded, false - atom not found in list
|
---|
| 280 | */
|
---|
| 281 | bool molecule::AddAtom(atom *pointer)
|
---|
[69eb71] | 282 | {
|
---|
[042f82] | 283 | if (pointer != NULL) {
|
---|
[356ae4] | 284 | // molecule::insert() is called by setMolecule()
|
---|
[6cfa36] | 285 | pointer->setMolecule(this);
|
---|
[f721c6] | 286 | }
|
---|
[9879f6] | 287 | return true;
|
---|
[14de469] | 288 | };
|
---|
| 289 |
|
---|
| 290 | /** Adds a copy of the given atom \a *pointer from molecule list.
|
---|
| 291 | * Increases molecule::last_atom and gives last number to added atom.
|
---|
| 292 | * \param *pointer allocated and set atom
|
---|
[89c8b2] | 293 | * \return pointer to the newly added atom
|
---|
[14de469] | 294 | */
|
---|
| 295 | atom * molecule::AddCopyAtom(atom *pointer)
|
---|
[69eb71] | 296 | {
|
---|
[f721c6] | 297 | atom *retval = NULL;
|
---|
[042f82] | 298 | if (pointer != NULL) {
|
---|
[46d958] | 299 | atom *walker = pointer->clone();
|
---|
[c6ab91] | 300 | AddAtom(walker);
|
---|
[f721c6] | 301 | retval=walker;
|
---|
| 302 | }
|
---|
| 303 | return retval;
|
---|
[14de469] | 304 | };
|
---|
| 305 |
|
---|
| 306 | /** Adds a Hydrogen atom in replacement for the given atom \a *partner in bond with a *origin.
|
---|
| 307 | * Here, we have to distinguish between single, double or triple bonds as stated by \a BondDegree, that each demand
|
---|
| 308 | * a different scheme when adding \a *replacement atom for the given one.
|
---|
| 309 | * -# Single Bond: Simply add new atom with bond distance rescaled to typical hydrogen one
|
---|
| 310 | * -# Double Bond: Here, we need the **BondList of the \a *origin atom, by scanning for the other bonds instead of
|
---|
[042f82] | 311 | * *Bond, we use the through these connected atoms to determine the plane they lie in, vector::MakeNormalvector().
|
---|
| 312 | * The orthonormal vector to this plane along with the vector in *Bond direction determines the plane the two
|
---|
| 313 | * replacing hydrogens shall lie in. Now, all remains to do is take the usual hydrogen double bond angle for the
|
---|
| 314 | * element of *origin and form the sin/cos admixture of both plane vectors for the new coordinates of the two
|
---|
| 315 | * hydrogens forming this angle with *origin.
|
---|
[14de469] | 316 | * -# Triple Bond: The idea is to set up a tetraoid (C1-H1-H2-H3) (however the lengths \f$b\f$ of the sides of the base
|
---|
[042f82] | 317 | * triangle formed by the to be added hydrogens are not equal to the typical bond distance \f$l\f$ but have to be
|
---|
| 318 | * determined from the typical angle \f$\alpha\f$ for a hydrogen triple connected to the element of *origin):
|
---|
| 319 | * We have the height \f$d\f$ as the vector in *Bond direction (from triangle C1-H1-H2).
|
---|
| 320 | * \f[ h = l \cdot \cos{\left (\frac{\alpha}{2} \right )} \qquad b = 2l \cdot \sin{\left (\frac{\alpha}{2} \right)} \quad \rightarrow \quad d = l \cdot \sqrt{\cos^2{\left (\frac{\alpha}{2} \right)}-\frac{1}{3}\cdot\sin^2{\left (\frac{\alpha}{2}\right )}}
|
---|
| 321 | * \f]
|
---|
| 322 | * vector::GetNormalvector() creates one orthonormal vector from this *Bond vector and vector::MakeNormalvector creates
|
---|
| 323 | * the third one from the former two vectors. The latter ones form the plane of the base triangle mentioned above.
|
---|
| 324 | * The lengths for these are \f$f\f$ and \f$g\f$ (from triangle H1-H2-(center of H1-H2-H3)) with knowledge that
|
---|
| 325 | * the median lines in an isosceles triangle meet in the center point with a ratio 2:1.
|
---|
| 326 | * \f[ f = \frac{b}{\sqrt{3}} \qquad g = \frac{b}{2}
|
---|
| 327 | * \f]
|
---|
| 328 | * as the coordination of all three atoms in the coordinate system of these three vectors:
|
---|
| 329 | * \f$\pmatrix{d & f & 0}\f$, \f$\pmatrix{d & -0.5 \cdot f & g}\f$ and \f$\pmatrix{d & -0.5 \cdot f & -g}\f$.
|
---|
[69eb71] | 330 | *
|
---|
[14de469] | 331 | * \param *out output stream for debugging
|
---|
[69eb71] | 332 | * \param *Bond pointer to bond between \a *origin and \a *replacement
|
---|
| 333 | * \param *TopOrigin son of \a *origin of upper level molecule (the atom added to this molecule as a copy of \a *origin)
|
---|
[14de469] | 334 | * \param *origin pointer to atom which acts as the origin for scaling the added hydrogen to correct bond length
|
---|
| 335 | * \param *replacement pointer to the atom which shall be copied as a hydrogen atom in this molecule
|
---|
| 336 | * \param isAngstroem whether the coordination of the given atoms is in AtomicLength (false) or Angstrom(true)
|
---|
| 337 | * \return number of atoms added, if < bond::BondDegree then something went wrong
|
---|
| 338 | * \todo double and triple bonds splitting (always use the tetraeder angle!)
|
---|
| 339 | */
|
---|
[88c8ec] | 340 | bool molecule::AddHydrogenReplacementAtom(bond::ptr TopBond, atom *BottomOrigin, atom *TopOrigin, atom *TopReplacement, bool IsAngstroem)
|
---|
[14de469] | 341 | {
|
---|
[47d041] | 342 | // Info info(__func__);
|
---|
[f721c6] | 343 | bool AllWentWell = true; // flag gathering the boolean return value of molecule::AddAtom and other functions, as return value on exit
|
---|
[042f82] | 344 | double bondlength; // bond length of the bond to be replaced/cut
|
---|
| 345 | double bondangle; // bond angle of the bond to be replaced/cut
|
---|
| 346 | double BondRescale; // rescale value for the hydrogen bond length
|
---|
[7d82a5] | 347 | bond::ptr FirstBond;
|
---|
| 348 | bond::ptr SecondBond; // Other bonds in double bond case to determine "other" plane
|
---|
[042f82] | 349 | atom *FirstOtherAtom = NULL, *SecondOtherAtom = NULL, *ThirdOtherAtom = NULL; // pointer to hydrogen atoms to be added
|
---|
| 350 | double b,l,d,f,g, alpha, factors[NDIM]; // hold temporary values in triple bond case for coordination determination
|
---|
| 351 | Vector Orthovector1, Orthovector2; // temporary vectors in coordination construction
|
---|
| 352 | Vector InBondvector; // vector in direction of *Bond
|
---|
[cca9ef] | 353 | const RealSpaceMatrix &matrix = World::getInstance().getDomain().getM();
|
---|
[7d82a5] | 354 | bond::ptr Binder;
|
---|
[042f82] | 355 |
|
---|
| 356 | // create vector in direction of bond
|
---|
[d74077] | 357 | InBondvector = TopReplacement->getPosition() - TopOrigin->getPosition();
|
---|
[042f82] | 358 | bondlength = InBondvector.Norm();
|
---|
| 359 |
|
---|
| 360 | // is greater than typical bond distance? Then we have to correct periodically
|
---|
| 361 | // the problem is not the H being out of the box, but InBondvector have the wrong direction
|
---|
| 362 | // due to TopReplacement or Origin being on the wrong side!
|
---|
[300220] | 363 | const BondGraph * const BG = World::getInstance().getBondGraph();
|
---|
[607eab] | 364 | const range<double> MinMaxBondDistance(
|
---|
| 365 | BG->getMinMaxDistance(TopOrigin,TopReplacement));
|
---|
[300220] | 366 | if (!MinMaxBondDistance.isInRange(bondlength)) {
|
---|
[47d041] | 367 | // LOG(4, "InBondvector is: " << InBondvector << ".");
|
---|
[042f82] | 368 | Orthovector1.Zero();
|
---|
| 369 | for (int i=NDIM;i--;) {
|
---|
[d74077] | 370 | l = TopReplacement->at(i) - TopOrigin->at(i);
|
---|
[300220] | 371 | if (fabs(l) > MinMaxBondDistance.last) { // is component greater than bond distance (check against min not useful here)
|
---|
[0a4f7f] | 372 | Orthovector1[i] = (l < 0) ? -1. : +1.;
|
---|
[042f82] | 373 | } // (signs are correct, was tested!)
|
---|
| 374 | }
|
---|
[5108e1] | 375 | Orthovector1 *= matrix;
|
---|
[1bd79e] | 376 | InBondvector -= Orthovector1; // subtract just the additional translation
|
---|
[042f82] | 377 | bondlength = InBondvector.Norm();
|
---|
[47d041] | 378 | // LOG(4, "INFO: Corrected InBondvector is now: " << InBondvector << ".");
|
---|
[042f82] | 379 | } // periodic correction finished
|
---|
| 380 |
|
---|
| 381 | InBondvector.Normalize();
|
---|
| 382 | // get typical bond length and store as scale factor for later
|
---|
[d74077] | 383 | ASSERT(TopOrigin->getType() != NULL, "AddHydrogenReplacementAtom: element of TopOrigin is not given.");
|
---|
[83f176] | 384 | BondRescale = TopOrigin->getType()->getHBondDistance(TopBond->BondDegree-1);
|
---|
[042f82] | 385 | if (BondRescale == -1) {
|
---|
[47d041] | 386 | ELOG(1, "There is no typical hydrogen bond distance in replacing bond (" << TopOrigin->getName() << "<->" << TopReplacement->getName() << ") of degree " << TopBond->BondDegree << "!");
|
---|
[2ba827] | 387 | return false;
|
---|
[042f82] | 388 | BondRescale = bondlength;
|
---|
| 389 | } else {
|
---|
| 390 | if (!IsAngstroem)
|
---|
| 391 | BondRescale /= (1.*AtomicLengthToAngstroem);
|
---|
| 392 | }
|
---|
| 393 |
|
---|
| 394 | // discern single, double and triple bonds
|
---|
| 395 | switch(TopBond->BondDegree) {
|
---|
| 396 | case 1:
|
---|
[23b547] | 397 | FirstOtherAtom = World::getInstance().createAtom(); // new atom
|
---|
[d74077] | 398 | FirstOtherAtom->setType(1); // element is Hydrogen
|
---|
[bce72c] | 399 | FirstOtherAtom->setAtomicVelocity(TopReplacement->getAtomicVelocity()); // copy velocity
|
---|
[6625c3] | 400 | FirstOtherAtom->setFixedIon(TopReplacement->getFixedIon());
|
---|
[83f176] | 401 | if (TopReplacement->getType()->getAtomicNumber() == 1) { // neither rescale nor replace if it's already hydrogen
|
---|
[042f82] | 402 | FirstOtherAtom->father = TopReplacement;
|
---|
| 403 | BondRescale = bondlength;
|
---|
| 404 | } else {
|
---|
| 405 | FirstOtherAtom->father = NULL; // if we replace hydrogen, we mark it as our father, otherwise we are just an added hydrogen with no father
|
---|
| 406 | }
|
---|
[1bd79e] | 407 | InBondvector *= BondRescale; // rescale the distance vector to Hydrogen bond length
|
---|
[d74077] | 408 | FirstOtherAtom->setPosition(TopOrigin->getPosition() + InBondvector); // set coordination to origin and add distance vector to replacement atom
|
---|
[042f82] | 409 | AllWentWell = AllWentWell && AddAtom(FirstOtherAtom);
|
---|
[47d041] | 410 | // LOG(4, "INFO: Added " << *FirstOtherAtom << " at: " << FirstOtherAtom->x << ".");
|
---|
[042f82] | 411 | Binder = AddBond(BottomOrigin, FirstOtherAtom, 1);
|
---|
| 412 | Binder->Cyclic = false;
|
---|
[129204] | 413 | Binder->Type = GraphEdge::TreeEdge;
|
---|
[042f82] | 414 | break;
|
---|
| 415 | case 2:
|
---|
[9d83b6] | 416 | {
|
---|
| 417 | // determine two other bonds (warning if there are more than two other) plus valence sanity check
|
---|
| 418 | const BondList& ListOfBonds = TopOrigin->getListOfBonds();
|
---|
| 419 | for (BondList::const_iterator Runner = ListOfBonds.begin();
|
---|
| 420 | Runner != ListOfBonds.end();
|
---|
| 421 | ++Runner) {
|
---|
| 422 | if ((*Runner) != TopBond) {
|
---|
| 423 | if (FirstBond == NULL) {
|
---|
| 424 | FirstBond = (*Runner);
|
---|
| 425 | FirstOtherAtom = (*Runner)->GetOtherAtom(TopOrigin);
|
---|
| 426 | } else if (SecondBond == NULL) {
|
---|
| 427 | SecondBond = (*Runner);
|
---|
| 428 | SecondOtherAtom = (*Runner)->GetOtherAtom(TopOrigin);
|
---|
| 429 | } else {
|
---|
[47d041] | 430 | ELOG(2, "Detected more than four bonds for atom " << TopOrigin->getName());
|
---|
[9d83b6] | 431 | }
|
---|
[042f82] | 432 | }
|
---|
| 433 | }
|
---|
| 434 | }
|
---|
| 435 | if (SecondOtherAtom == NULL) { // then we have an atom with valence four, but only 3 bonds: one to replace and one which is TopBond (third is FirstBond)
|
---|
| 436 | SecondBond = TopBond;
|
---|
| 437 | SecondOtherAtom = TopReplacement;
|
---|
| 438 | }
|
---|
| 439 | if (FirstOtherAtom != NULL) { // then we just have this double bond and the plane does not matter at all
|
---|
[47d041] | 440 | // LOG(3, "Regarding the double bond (" << TopOrigin->Name << "<->" << TopReplacement->Name << ") to be constructed: Taking " << FirstOtherAtom->Name << " and " << SecondOtherAtom->Name << " along with " << TopOrigin->Name << " to determine orthogonal plane.");
|
---|
[042f82] | 441 |
|
---|
| 442 | // determine the plane of these two with the *origin
|
---|
[0a4f7f] | 443 | try {
|
---|
[783e88] | 444 | Orthovector1 = Plane(TopOrigin->getPosition(), FirstOtherAtom->getPosition(), SecondOtherAtom->getPosition()).getNormal();
|
---|
[0a4f7f] | 445 | }
|
---|
| 446 | catch(LinearDependenceException &excp){
|
---|
[47d041] | 447 | LOG(0, boost::diagnostic_information(excp));
|
---|
[0a4f7f] | 448 | // TODO: figure out what to do with the Orthovector in this case
|
---|
| 449 | AllWentWell = false;
|
---|
| 450 | }
|
---|
[042f82] | 451 | } else {
|
---|
[273382] | 452 | Orthovector1.GetOneNormalVector(InBondvector);
|
---|
[042f82] | 453 | }
|
---|
[47d041] | 454 | //LOG(3, "INFO: Orthovector1: " << Orthovector1 << ".");
|
---|
[042f82] | 455 | // orthogonal vector and bond vector between origin and replacement form the new plane
|
---|
[0a4f7f] | 456 | Orthovector1.MakeNormalTo(InBondvector);
|
---|
[042f82] | 457 | Orthovector1.Normalize();
|
---|
[47d041] | 458 | //LOG(3, "ReScaleCheck: " << Orthovector1.Norm() << " and " << InBondvector.Norm() << ".");
|
---|
[042f82] | 459 |
|
---|
| 460 | // create the two Hydrogens ...
|
---|
[23b547] | 461 | FirstOtherAtom = World::getInstance().createAtom();
|
---|
| 462 | SecondOtherAtom = World::getInstance().createAtom();
|
---|
[d74077] | 463 | FirstOtherAtom->setType(1);
|
---|
| 464 | SecondOtherAtom->setType(1);
|
---|
[bce72c] | 465 | FirstOtherAtom->setAtomicVelocity(TopReplacement->getAtomicVelocity()); // copy velocity
|
---|
[6625c3] | 466 | FirstOtherAtom->setFixedIon(TopReplacement->getFixedIon());
|
---|
[bce72c] | 467 | SecondOtherAtom->setAtomicVelocity(TopReplacement->getAtomicVelocity()); // copy velocity
|
---|
[6625c3] | 468 | SecondOtherAtom->setFixedIon(TopReplacement->getFixedIon());
|
---|
[042f82] | 469 | FirstOtherAtom->father = NULL; // we are just an added hydrogen with no father
|
---|
| 470 | SecondOtherAtom->father = NULL; // we are just an added hydrogen with no father
|
---|
[83f176] | 471 | bondangle = TopOrigin->getType()->getHBondAngle(1);
|
---|
[042f82] | 472 | if (bondangle == -1) {
|
---|
[47d041] | 473 | ELOG(1, "There is no typical hydrogen bond angle in replacing bond (" << TopOrigin->getName() << "<->" << TopReplacement->getName() << ") of degree " << TopBond->BondDegree << "!");
|
---|
[2ba827] | 474 | return false;
|
---|
[042f82] | 475 | bondangle = 0;
|
---|
| 476 | }
|
---|
| 477 | bondangle *= M_PI/180./2.;
|
---|
[47d041] | 478 | // LOG(3, "INFO: ReScaleCheck: InBondvector " << InBondvector << ", " << Orthovector1 << ".");
|
---|
| 479 | // LOG(3, "Half the bond angle is " << bondangle << ", sin and cos of it: " << sin(bondangle) << ", " << cos(bondangle));
|
---|
[d74077] | 480 | FirstOtherAtom->Zero();
|
---|
| 481 | SecondOtherAtom->Zero();
|
---|
[042f82] | 482 | for(int i=NDIM;i--;) { // rotate by half the bond angle in both directions (InBondvector is bondangle = 0 direction)
|
---|
[d74077] | 483 | FirstOtherAtom->set(i, InBondvector[i] * cos(bondangle) + Orthovector1[i] * (sin(bondangle)));
|
---|
| 484 | SecondOtherAtom->set(i, InBondvector[i] * cos(bondangle) + Orthovector1[i] * (-sin(bondangle)));
|
---|
[042f82] | 485 | }
|
---|
[d74077] | 486 | FirstOtherAtom->Scale(BondRescale); // rescale by correct BondDistance
|
---|
| 487 | SecondOtherAtom->Scale(BondRescale);
|
---|
[47d041] | 488 | //LOG(3, "ReScaleCheck: " << FirstOtherAtom->x.Norm() << " and " << SecondOtherAtom->x.Norm() << ".");
|
---|
[d74077] | 489 | *FirstOtherAtom += TopOrigin->getPosition();
|
---|
| 490 | *SecondOtherAtom += TopOrigin->getPosition();
|
---|
[042f82] | 491 | // ... and add to molecule
|
---|
| 492 | AllWentWell = AllWentWell && AddAtom(FirstOtherAtom);
|
---|
| 493 | AllWentWell = AllWentWell && AddAtom(SecondOtherAtom);
|
---|
[47d041] | 494 | // LOG(4, "INFO: Added " << *FirstOtherAtom << " at: " << FirstOtherAtom->x << ".");
|
---|
| 495 | // LOG(4, "INFO: Added " << *SecondOtherAtom << " at: " << SecondOtherAtom->x << ".");
|
---|
[042f82] | 496 | Binder = AddBond(BottomOrigin, FirstOtherAtom, 1);
|
---|
| 497 | Binder->Cyclic = false;
|
---|
[129204] | 498 | Binder->Type = GraphEdge::TreeEdge;
|
---|
[042f82] | 499 | Binder = AddBond(BottomOrigin, SecondOtherAtom, 1);
|
---|
| 500 | Binder->Cyclic = false;
|
---|
[129204] | 501 | Binder->Type = GraphEdge::TreeEdge;
|
---|
[042f82] | 502 | break;
|
---|
| 503 | case 3:
|
---|
| 504 | // take the "usual" tetraoidal angle and add the three Hydrogen in direction of the bond (height of the tetraoid)
|
---|
[23b547] | 505 | FirstOtherAtom = World::getInstance().createAtom();
|
---|
| 506 | SecondOtherAtom = World::getInstance().createAtom();
|
---|
| 507 | ThirdOtherAtom = World::getInstance().createAtom();
|
---|
[d74077] | 508 | FirstOtherAtom->setType(1);
|
---|
| 509 | SecondOtherAtom->setType(1);
|
---|
| 510 | ThirdOtherAtom->setType(1);
|
---|
[bce72c] | 511 | FirstOtherAtom->setAtomicVelocity(TopReplacement->getAtomicVelocity()); // copy velocity
|
---|
[6625c3] | 512 | FirstOtherAtom->setFixedIon(TopReplacement->getFixedIon());
|
---|
[bce72c] | 513 | SecondOtherAtom->setAtomicVelocity(TopReplacement->getAtomicVelocity()); // copy velocity
|
---|
[6625c3] | 514 | SecondOtherAtom->setFixedIon(TopReplacement->getFixedIon());
|
---|
[bce72c] | 515 | ThirdOtherAtom->setAtomicVelocity(TopReplacement->getAtomicVelocity()); // copy velocity
|
---|
[6625c3] | 516 | ThirdOtherAtom->setFixedIon(TopReplacement->getFixedIon());
|
---|
[042f82] | 517 | FirstOtherAtom->father = NULL; // we are just an added hydrogen with no father
|
---|
| 518 | SecondOtherAtom->father = NULL; // we are just an added hydrogen with no father
|
---|
| 519 | ThirdOtherAtom->father = NULL; // we are just an added hydrogen with no father
|
---|
| 520 |
|
---|
| 521 | // we need to vectors orthonormal the InBondvector
|
---|
[273382] | 522 | AllWentWell = AllWentWell && Orthovector1.GetOneNormalVector(InBondvector);
|
---|
[47d041] | 523 | // LOG(3, "INFO: Orthovector1: " << Orthovector1 << ".");
|
---|
[0a4f7f] | 524 | try{
|
---|
| 525 | Orthovector2 = Plane(InBondvector, Orthovector1,0).getNormal();
|
---|
| 526 | }
|
---|
| 527 | catch(LinearDependenceException &excp) {
|
---|
[47d041] | 528 | LOG(0, boost::diagnostic_information(excp));
|
---|
[0a4f7f] | 529 | AllWentWell = false;
|
---|
| 530 | }
|
---|
[47d041] | 531 | // LOG(3, "INFO: Orthovector2: " << Orthovector2 << ".")
|
---|
[042f82] | 532 |
|
---|
| 533 | // create correct coordination for the three atoms
|
---|
[83f176] | 534 | alpha = (TopOrigin->getType()->getHBondAngle(2))/180.*M_PI/2.; // retrieve triple bond angle from database
|
---|
[042f82] | 535 | l = BondRescale; // desired bond length
|
---|
| 536 | b = 2.*l*sin(alpha); // base length of isosceles triangle
|
---|
| 537 | d = l*sqrt(cos(alpha)*cos(alpha) - sin(alpha)*sin(alpha)/3.); // length for InBondvector
|
---|
| 538 | f = b/sqrt(3.); // length for Orthvector1
|
---|
| 539 | g = b/2.; // length for Orthvector2
|
---|
[47d041] | 540 | // LOG(3, "Bond length and half-angle: " << l << ", " << alpha << "\t (b,d,f,g) = " << b << ", " << d << ", " << f << ", " << g << ", ");
|
---|
| 541 | // LOG(3, "The three Bond lengths: " << sqrt(d*d+f*f) << ", " << sqrt(d*d+(-0.5*f)*(-0.5*f)+g*g) << ", " << sqrt(d*d+(-0.5*f)*(-0.5*f)+g*g));
|
---|
[042f82] | 542 | factors[0] = d;
|
---|
| 543 | factors[1] = f;
|
---|
| 544 | factors[2] = 0.;
|
---|
[d74077] | 545 | FirstOtherAtom->LinearCombinationOfVectors(InBondvector, Orthovector1, Orthovector2, factors);
|
---|
[042f82] | 546 | factors[1] = -0.5*f;
|
---|
| 547 | factors[2] = g;
|
---|
[d74077] | 548 | SecondOtherAtom->LinearCombinationOfVectors(InBondvector, Orthovector1, Orthovector2, factors);
|
---|
[042f82] | 549 | factors[2] = -g;
|
---|
[d74077] | 550 | ThirdOtherAtom->LinearCombinationOfVectors(InBondvector, Orthovector1, Orthovector2, factors);
|
---|
[042f82] | 551 |
|
---|
| 552 | // rescale each to correct BondDistance
|
---|
| 553 | // FirstOtherAtom->x.Scale(&BondRescale);
|
---|
| 554 | // SecondOtherAtom->x.Scale(&BondRescale);
|
---|
| 555 | // ThirdOtherAtom->x.Scale(&BondRescale);
|
---|
| 556 |
|
---|
| 557 | // and relative to *origin atom
|
---|
[d74077] | 558 | *FirstOtherAtom += TopOrigin->getPosition();
|
---|
| 559 | *SecondOtherAtom += TopOrigin->getPosition();
|
---|
| 560 | *ThirdOtherAtom += TopOrigin->getPosition();
|
---|
[042f82] | 561 |
|
---|
| 562 | // ... and add to molecule
|
---|
| 563 | AllWentWell = AllWentWell && AddAtom(FirstOtherAtom);
|
---|
| 564 | AllWentWell = AllWentWell && AddAtom(SecondOtherAtom);
|
---|
| 565 | AllWentWell = AllWentWell && AddAtom(ThirdOtherAtom);
|
---|
[47d041] | 566 | // LOG(4, "INFO: Added " << *FirstOtherAtom << " at: " << FirstOtherAtom->x << ".");
|
---|
| 567 | // LOG(4, "INFO: Added " << *SecondOtherAtom << " at: " << SecondOtherAtom->x << ".");
|
---|
| 568 | // LOG(4, "INFO: Added " << *ThirdOtherAtom << " at: " << ThirdOtherAtom->x << ".");
|
---|
[042f82] | 569 | Binder = AddBond(BottomOrigin, FirstOtherAtom, 1);
|
---|
| 570 | Binder->Cyclic = false;
|
---|
[129204] | 571 | Binder->Type = GraphEdge::TreeEdge;
|
---|
[042f82] | 572 | Binder = AddBond(BottomOrigin, SecondOtherAtom, 1);
|
---|
| 573 | Binder->Cyclic = false;
|
---|
[129204] | 574 | Binder->Type = GraphEdge::TreeEdge;
|
---|
[042f82] | 575 | Binder = AddBond(BottomOrigin, ThirdOtherAtom, 1);
|
---|
| 576 | Binder->Cyclic = false;
|
---|
[129204] | 577 | Binder->Type = GraphEdge::TreeEdge;
|
---|
[042f82] | 578 | break;
|
---|
| 579 | default:
|
---|
[47d041] | 580 | ELOG(1, "BondDegree does not state single, double or triple bond!");
|
---|
[042f82] | 581 | AllWentWell = false;
|
---|
| 582 | break;
|
---|
| 583 | }
|
---|
| 584 |
|
---|
| 585 | return AllWentWell;
|
---|
[14de469] | 586 | };
|
---|
| 587 |
|
---|
| 588 | /** Creates a copy of this molecule.
|
---|
[c67ff9] | 589 | * \param offset translation Vector for the new molecule relative to old one
|
---|
[14de469] | 590 | * \return copy of molecule
|
---|
| 591 | */
|
---|
[c67ff9] | 592 | molecule *molecule::CopyMolecule(const Vector &offset) const
|
---|
[14de469] | 593 | {
|
---|
[5f612ee] | 594 | molecule *copy = World::getInstance().createMolecule();
|
---|
[042f82] | 595 |
|
---|
| 596 | // copy all atoms
|
---|
[30c753] | 597 | std::map< const atom *, atom *> FatherFinder;
|
---|
[59fff1] | 598 | for (iterator iter = begin(); iter != end(); ++iter) {
|
---|
| 599 | atom * const copy_atom = copy->AddCopyAtom(*iter);
|
---|
[c67ff9] | 600 | copy_atom->setPosition(copy_atom->getPosition() + offset);
|
---|
[30c753] | 601 | FatherFinder.insert( std::make_pair( *iter, copy_atom ) );
|
---|
| 602 | }
|
---|
[042f82] | 603 |
|
---|
| 604 | // copy all bonds
|
---|
[30c753] | 605 | for(const_iterator AtomRunner = begin(); AtomRunner != end(); ++AtomRunner) {
|
---|
[9d83b6] | 606 | const BondList& ListOfBonds = (*AtomRunner)->getListOfBonds();
|
---|
| 607 | for(BondList::const_iterator BondRunner = ListOfBonds.begin();
|
---|
| 608 | BondRunner != ListOfBonds.end();
|
---|
| 609 | ++BondRunner)
|
---|
[e08c46] | 610 | if ((*BondRunner)->leftatom == *AtomRunner) {
|
---|
[88c8ec] | 611 | bond::ptr Binder = (*BondRunner);
|
---|
[e08c46] | 612 | // get the pendant atoms of current bond in the copy molecule
|
---|
[30c753] | 613 | ASSERT(FatherFinder.count(Binder->leftatom),
|
---|
[59fff1] | 614 | "molecule::CopyMolecule() - No copy of original left atom "
|
---|
| 615 | +toString(Binder->leftatom)+" for bond copy found");
|
---|
[30c753] | 616 | ASSERT(FatherFinder.count(Binder->rightatom),
|
---|
[59fff1] | 617 | "molecule::CopyMolecule() - No copy of original right atom "
|
---|
| 618 | +toString(Binder->rightatom)+" for bond copy found");
|
---|
[30c753] | 619 | atom * const LeftAtom = FatherFinder[Binder->leftatom];
|
---|
| 620 | atom * const RightAtom = FatherFinder[Binder->rightatom];
|
---|
| 621 |
|
---|
[88c8ec] | 622 | bond::ptr const NewBond = copy->AddBond(LeftAtom, RightAtom, Binder->BondDegree);
|
---|
[e08c46] | 623 | NewBond->Cyclic = Binder->Cyclic;
|
---|
| 624 | if (Binder->Cyclic)
|
---|
| 625 | copy->NoCyclicBonds++;
|
---|
| 626 | NewBond->Type = Binder->Type;
|
---|
| 627 | }
|
---|
[9d83b6] | 628 | }
|
---|
[042f82] | 629 | // correct fathers
|
---|
[30c753] | 630 | //for_each(begin(),end(),mem_fun(&atom::CorrectFather));
|
---|
[cee0b57] | 631 |
|
---|
[042f82] | 632 | return copy;
|
---|
[14de469] | 633 | };
|
---|
| 634 |
|
---|
[89c8b2] | 635 |
|
---|
[9df680] | 636 | /** Destroys all atoms inside this molecule.
|
---|
| 637 | */
|
---|
| 638 | void molecule::removeAtomsinMolecule()
|
---|
| 639 | {
|
---|
| 640 | // remove each atom from world
|
---|
[59fff1] | 641 | for(iterator AtomRunner = begin(); !empty(); AtomRunner = begin())
|
---|
[9df680] | 642 | World::getInstance().destroyAtom(*AtomRunner);
|
---|
| 643 | };
|
---|
| 644 |
|
---|
| 645 |
|
---|
[89c8b2] | 646 | /**
|
---|
| 647 | * Copies all atoms of a molecule which are within the defined parallelepiped.
|
---|
| 648 | *
|
---|
| 649 | * @param offest for the origin of the parallelepiped
|
---|
| 650 | * @param three vectors forming the matrix that defines the shape of the parallelpiped
|
---|
| 651 | */
|
---|
[c550dd] | 652 | molecule* molecule::CopyMoleculeFromSubRegion(const Shape ®ion) const {
|
---|
[5f612ee] | 653 | molecule *copy = World::getInstance().createMolecule();
|
---|
[89c8b2] | 654 |
|
---|
[30c753] | 655 | // copy all atoms
|
---|
| 656 | std::map< const atom *, atom *> FatherFinder;
|
---|
[59fff1] | 657 | for (iterator iter = begin(); iter != end(); ++iter) {
|
---|
[4e904b] | 658 | if (region.isInside((*iter)->getPosition())) {
|
---|
[59fff1] | 659 | atom * const copy_atom = copy->AddCopyAtom(*iter);
|
---|
[30c753] | 660 | FatherFinder.insert( std::make_pair( *iter, copy_atom ) );
|
---|
[9df5c6] | 661 | }
|
---|
| 662 | }
|
---|
[89c8b2] | 663 |
|
---|
[30c753] | 664 | // copy all bonds
|
---|
| 665 | for(molecule::const_iterator AtomRunner = begin(); AtomRunner != end(); ++AtomRunner) {
|
---|
| 666 | const BondList& ListOfBonds = (*AtomRunner)->getListOfBonds();
|
---|
| 667 | for(BondList::const_iterator BondRunner = ListOfBonds.begin();
|
---|
| 668 | BondRunner != ListOfBonds.end();
|
---|
| 669 | ++BondRunner)
|
---|
| 670 | if ((*BondRunner)->leftatom == *AtomRunner) {
|
---|
[88c8ec] | 671 | bond::ptr Binder = (*BondRunner);
|
---|
[30c753] | 672 | if ((FatherFinder.count(Binder->leftatom))
|
---|
| 673 | && (FatherFinder.count(Binder->rightatom))) {
|
---|
| 674 | // if copy present, then it must be from subregion
|
---|
| 675 | atom * const LeftAtom = FatherFinder[Binder->leftatom];
|
---|
| 676 | atom * const RightAtom = FatherFinder[Binder->rightatom];
|
---|
| 677 |
|
---|
[88c8ec] | 678 | bond::ptr const NewBond = copy->AddBond(LeftAtom, RightAtom, Binder->BondDegree);
|
---|
[30c753] | 679 | NewBond->Cyclic = Binder->Cyclic;
|
---|
| 680 | if (Binder->Cyclic)
|
---|
| 681 | copy->NoCyclicBonds++;
|
---|
| 682 | NewBond->Type = Binder->Type;
|
---|
| 683 | }
|
---|
| 684 | }
|
---|
| 685 | }
|
---|
| 686 | // correct fathers
|
---|
| 687 | //for_each(begin(),end(),mem_fun(&atom::CorrectFather));
|
---|
| 688 |
|
---|
[e138de] | 689 | //TODO: copy->BuildInducedSubgraph(this);
|
---|
[89c8b2] | 690 |
|
---|
| 691 | return copy;
|
---|
| 692 | }
|
---|
| 693 |
|
---|
[14de469] | 694 | /** Adds a bond to a the molecule specified by two atoms, \a *first and \a *second.
|
---|
| 695 | * Also updates molecule::BondCount and molecule::NoNonBonds.
|
---|
| 696 | * \param *first first atom in bond
|
---|
| 697 | * \param *second atom in bond
|
---|
| 698 | * \return pointer to bond or NULL on failure
|
---|
| 699 | */
|
---|
[88c8ec] | 700 | bond::ptr molecule::AddBond(atom *atom1, atom *atom2, int degree)
|
---|
[14de469] | 701 | {
|
---|
[7d82a5] | 702 | bond::ptr Binder;
|
---|
[05a97c] | 703 |
|
---|
| 704 | // some checks to make sure we are able to create the bond
|
---|
[59fff1] | 705 | ASSERT(atom1,
|
---|
| 706 | "molecule::AddBond() - First atom "+toString(atom1)
|
---|
| 707 | +" is not a invalid pointer");
|
---|
| 708 | ASSERT(atom2,
|
---|
| 709 | "molecule::AddBond() - Second atom "+toString(atom2)
|
---|
| 710 | +" is not a invalid pointer");
|
---|
| 711 | ASSERT(isInMolecule(atom1),
|
---|
| 712 | "molecule::AddBond() - First atom "+toString(atom1)
|
---|
| 713 | +" is not part of molecule");
|
---|
| 714 | ASSERT(isInMolecule(atom2),
|
---|
| 715 | "molecule::AddBond() - Second atom "+toString(atom2)
|
---|
| 716 | +" is not part of molecule");
|
---|
[05a97c] | 717 |
|
---|
[7d82a5] | 718 | Binder.reset(new bond(atom1, atom2, degree));
|
---|
[073a9e4] | 719 | atom1->RegisterBond(WorldTime::getTime(), Binder);
|
---|
| 720 | atom2->RegisterBond(WorldTime::getTime(), Binder);
|
---|
[59fff1] | 721 | if ((atom1->getType() != NULL)
|
---|
| 722 | && (atom1->getType()->getAtomicNumber() != 1)
|
---|
| 723 | && (atom2->getType() != NULL)
|
---|
| 724 | && (atom2->getType()->getAtomicNumber() != 1))
|
---|
[05a97c] | 725 | NoNonBonds++;
|
---|
| 726 |
|
---|
[042f82] | 727 | return Binder;
|
---|
[14de469] | 728 | };
|
---|
| 729 |
|
---|
[1907a7] | 730 | /** Set molecule::name from the basename without suffix in the given \a *filename.
|
---|
| 731 | * \param *filename filename
|
---|
| 732 | */
|
---|
[d67150] | 733 | void molecule::SetNameFromFilename(const char *filename)
|
---|
[1907a7] | 734 | {
|
---|
[575343] | 735 | OBSERVE;
|
---|
[1907a7] | 736 | int length = 0;
|
---|
[f7f7a4] | 737 | const char *molname = strrchr(filename, '/');
|
---|
| 738 | if (molname != NULL)
|
---|
| 739 | molname += sizeof(char); // search for filename without dirs
|
---|
| 740 | else
|
---|
| 741 | molname = filename; // contains no slashes
|
---|
[49e1ae] | 742 | const char *endname = strchr(molname, '.');
|
---|
[1907a7] | 743 | if ((endname == NULL) || (endname < molname))
|
---|
| 744 | length = strlen(molname);
|
---|
| 745 | else
|
---|
| 746 | length = strlen(molname) - strlen(endname);
|
---|
[35b698] | 747 | cout << "Set name of molecule " << getId() << " to " << molname << endl;
|
---|
[1907a7] | 748 | strncpy(name, molname, length);
|
---|
[d67150] | 749 | name[length]='\0';
|
---|
[1907a7] | 750 | };
|
---|
| 751 |
|
---|
[14de469] | 752 | /** Sets the molecule::cell_size to the components of \a *dim (rectangular box)
|
---|
| 753 | * \param *dim vector class
|
---|
| 754 | */
|
---|
[e9b8bb] | 755 | void molecule::SetBoxDimension(Vector *dim)
|
---|
[14de469] | 756 | {
|
---|
[cca9ef] | 757 | RealSpaceMatrix domain;
|
---|
[84c494] | 758 | for(int i =0; i<NDIM;++i)
|
---|
| 759 | domain.at(i,i) = dim->at(i);
|
---|
| 760 | World::getInstance().setDomain(domain);
|
---|
[14de469] | 761 | };
|
---|
| 762 |
|
---|
[cee0b57] | 763 | /** Removes atom from molecule list, but does not delete it.
|
---|
| 764 | * \param *pointer atom to be removed
|
---|
| 765 | * \return true - succeeded, false - atom not found in list
|
---|
[f3278b] | 766 | */
|
---|
[cee0b57] | 767 | bool molecule::UnlinkAtom(atom *pointer)
|
---|
[f3278b] | 768 | {
|
---|
[cee0b57] | 769 | if (pointer == NULL)
|
---|
| 770 | return false;
|
---|
[2e4105] | 771 | pointer->removeFromMolecule();
|
---|
[cee0b57] | 772 | return true;
|
---|
[f3278b] | 773 | };
|
---|
| 774 |
|
---|
[cee0b57] | 775 | /** Removes every atom from molecule list.
|
---|
| 776 | * \return true - succeeded, false - atom not found in list
|
---|
[14de469] | 777 | */
|
---|
[cee0b57] | 778 | bool molecule::CleanupMolecule()
|
---|
[14de469] | 779 | {
|
---|
[9879f6] | 780 | for (molecule::iterator iter = begin(); !empty(); iter = begin())
|
---|
[2e4105] | 781 | (*iter)->removeFromMolecule();
|
---|
[274d45] | 782 | return empty();
|
---|
[69eb71] | 783 | };
|
---|
[14de469] | 784 |
|
---|
[cee0b57] | 785 | /** Finds an atom specified by its continuous number.
|
---|
| 786 | * \param Nr number of atom withim molecule
|
---|
| 787 | * \return pointer to atom or NULL
|
---|
[14de469] | 788 | */
|
---|
[9879f6] | 789 | atom * molecule::FindAtom(int Nr) const
|
---|
| 790 | {
|
---|
[c6ab91] | 791 | LocalToGlobalId_t::const_iterator iter = LocalToGlobalId.find(Nr);
|
---|
| 792 | if (iter != LocalToGlobalId.end()) {
|
---|
[47d041] | 793 | //LOG(0, "Found Atom Nr. " << walker->getNr());
|
---|
[c6ab91] | 794 | return iter->second;
|
---|
[cee0b57] | 795 | } else {
|
---|
[ca8bea] | 796 | ELOG(1, "Atom with Nr " << Nr << " not found in molecule " << getName() << "'s list.");
|
---|
[cee0b57] | 797 | return NULL;
|
---|
[042f82] | 798 | }
|
---|
[59fff1] | 799 | }
|
---|
| 800 |
|
---|
| 801 | /** Checks whether the given atom is a member of this molecule.
|
---|
| 802 | *
|
---|
| 803 | * We make use here of molecule::atomIds to get a result on
|
---|
| 804 | *
|
---|
| 805 | * @param _atom atom to check
|
---|
| 806 | * @return true - is member, false - is not
|
---|
| 807 | */
|
---|
| 808 | bool molecule::isInMolecule(const atom * const _atom)
|
---|
| 809 | {
|
---|
| 810 | ASSERT(_atom->getMolecule() == this,
|
---|
| 811 | "molecule::isInMolecule() - atom is not designated to be in molecule '"
|
---|
| 812 | +toString(this->getName())+"'.");
|
---|
[8e1f901] | 813 | molecule::const_iterator iter = atomIds.find(_atom->getId());
|
---|
[59fff1] | 814 | return (iter != atomIds.end());
|
---|
| 815 | }
|
---|
[14de469] | 816 |
|
---|
[cee0b57] | 817 | /** Asks for atom number, and checks whether in list.
|
---|
| 818 | * \param *text question before entering
|
---|
[a6b7fb] | 819 | */
|
---|
[955b91] | 820 | atom * molecule::AskAtom(std::string text)
|
---|
[a6b7fb] | 821 | {
|
---|
[cee0b57] | 822 | int No;
|
---|
| 823 | atom *ion = NULL;
|
---|
| 824 | do {
|
---|
[47d041] | 825 | //std::cout << "============Atom list==========================" << std::endl;
|
---|
[cee0b57] | 826 | //mol->Output((ofstream *)&cout);
|
---|
[47d041] | 827 | //std::cout << "===============================================" << std::endl;
|
---|
| 828 | std::cout << text;
|
---|
[cee0b57] | 829 | cin >> No;
|
---|
| 830 | ion = this->FindAtom(No);
|
---|
| 831 | } while (ion == NULL);
|
---|
| 832 | return ion;
|
---|
[a6b7fb] | 833 | };
|
---|
| 834 |
|
---|
[cee0b57] | 835 | /** Checks if given coordinates are within cell volume.
|
---|
| 836 | * \param *x array of coordinates
|
---|
| 837 | * \return true - is within, false - out of cell
|
---|
[14de469] | 838 | */
|
---|
[cee0b57] | 839 | bool molecule::CheckBounds(const Vector *x) const
|
---|
[14de469] | 840 | {
|
---|
[cca9ef] | 841 | const RealSpaceMatrix &domain = World::getInstance().getDomain().getM();
|
---|
[cee0b57] | 842 | bool result = true;
|
---|
| 843 | for (int i=0;i<NDIM;i++) {
|
---|
[84c494] | 844 | result = result && ((x->at(i) >= 0) && (x->at(i) < domain.at(i,i)));
|
---|
[042f82] | 845 | }
|
---|
[cee0b57] | 846 | //return result;
|
---|
| 847 | return true; /// probably not gonna use the check no more
|
---|
[69eb71] | 848 | };
|
---|
[14de469] | 849 |
|
---|
[cee0b57] | 850 | /** Prints molecule to *out.
|
---|
| 851 | * \param *out output stream
|
---|
[14de469] | 852 | */
|
---|
[e4afb4] | 853 | bool molecule::Output(ostream * const output) const
|
---|
[14de469] | 854 | {
|
---|
[e138de] | 855 | if (output == NULL) {
|
---|
[cee0b57] | 856 | return false;
|
---|
| 857 | } else {
|
---|
[0ba410] | 858 | int AtomNo[MAX_ELEMENTS];
|
---|
| 859 | memset(AtomNo,0,(MAX_ELEMENTS-1)*sizeof(*AtomNo));
|
---|
| 860 | enumeration<const element*> elementLookup = formula.enumerateElements();
|
---|
| 861 | *output << "#Ion_TypeNr._Nr.R[0] R[1] R[2] MoveType (0 MoveIon, 1 FixedIon)" << endl;
|
---|
[30c753] | 862 | for_each(begin(),end(),boost::bind(&atom::OutputArrayIndexed,_1,output,elementLookup,AtomNo,(const char*)0));
|
---|
[cee0b57] | 863 | return true;
|
---|
[042f82] | 864 | }
|
---|
[14de469] | 865 | };
|
---|
| 866 |
|
---|
[266237] | 867 | /** Outputs contents of each atom::ListOfBonds.
|
---|
[cee0b57] | 868 | * \param *out output stream
|
---|
[14de469] | 869 | */
|
---|
[e138de] | 870 | void molecule::OutputListOfBonds() const
|
---|
[14de469] | 871 | {
|
---|
[4b5cf8] | 872 | std::stringstream output;
|
---|
| 873 | LOG(2, "From Contents of ListOfBonds, all atoms:");
|
---|
| 874 | for (molecule::const_iterator iter = begin();
|
---|
| 875 | iter != end();
|
---|
| 876 | ++iter) {
|
---|
| 877 | (*iter)->OutputBondOfAtom(output);
|
---|
| 878 | output << std::endl << "\t\t";
|
---|
| 879 | }
|
---|
| 880 | LOG(2, output.str());
|
---|
| 881 | }
|
---|
[14de469] | 882 |
|
---|
[cee0b57] | 883 | /** Brings molecule::AtomCount and atom::*Name up-to-date.
|
---|
[14de469] | 884 | * \param *out output stream for debugging
|
---|
| 885 | */
|
---|
[e791dc] | 886 | size_t molecule::doCountNoNonHydrogen() const
|
---|
[14de469] | 887 | {
|
---|
[e791dc] | 888 | int temp = 0;
|
---|
[560bbe] | 889 | // go through atoms and look for new ones
|
---|
| 890 | for (molecule::const_iterator iter = begin(); iter != end(); ++iter)
|
---|
[83f176] | 891 | if ((*iter)->getType()->getAtomicNumber() != 1) // count non-hydrogen atoms whilst at it
|
---|
[e791dc] | 892 | ++temp;
|
---|
| 893 | return temp;
|
---|
[cee0b57] | 894 | };
|
---|
[042f82] | 895 |
|
---|
[458c31] | 896 | /** Counts the number of present bonds.
|
---|
| 897 | * \return number of bonds
|
---|
| 898 | */
|
---|
| 899 | int molecule::doCountBonds() const
|
---|
| 900 | {
|
---|
| 901 | unsigned int counter = 0;
|
---|
| 902 | for(molecule::const_iterator AtomRunner = begin(); AtomRunner != end(); ++AtomRunner) {
|
---|
| 903 | const BondList& ListOfBonds = (*AtomRunner)->getListOfBonds();
|
---|
| 904 | for(BondList::const_iterator BondRunner = ListOfBonds.begin();
|
---|
| 905 | BondRunner != ListOfBonds.end();
|
---|
| 906 | ++BondRunner)
|
---|
| 907 | if ((*BondRunner)->leftatom == *AtomRunner)
|
---|
| 908 | counter++;
|
---|
| 909 | }
|
---|
| 910 | return counter;
|
---|
| 911 | }
|
---|
| 912 |
|
---|
| 913 |
|
---|
[14de469] | 914 | /** Returns an index map for two father-son-molecules.
|
---|
| 915 | * The map tells which atom in this molecule corresponds to which one in the other molecul with their fathers.
|
---|
| 916 | * \param *out output stream for debugging
|
---|
| 917 | * \param *OtherMolecule corresponding molecule with fathers
|
---|
| 918 | * \return allocated map of size molecule::AtomCount with map
|
---|
| 919 | * \todo make this with a good sort O(n), not O(n^2)
|
---|
| 920 | */
|
---|
[e138de] | 921 | int * molecule::GetFatherSonAtomicMap(molecule *OtherMolecule)
|
---|
[14de469] | 922 | {
|
---|
[47d041] | 923 | LOG(3, "Begin of GetFatherAtomicMap.");
|
---|
[1024cb] | 924 | int *AtomicMap = new int[getAtomCount()];
|
---|
[ea7176] | 925 | for (int i=getAtomCount();i--;)
|
---|
[042f82] | 926 | AtomicMap[i] = -1;
|
---|
| 927 | if (OtherMolecule == this) { // same molecule
|
---|
[ea7176] | 928 | for (int i=getAtomCount();i--;) // no need as -1 means already that there is trivial correspondence
|
---|
[042f82] | 929 | AtomicMap[i] = i;
|
---|
[47d041] | 930 | LOG(4, "Map is trivial.");
|
---|
[042f82] | 931 | } else {
|
---|
[47d041] | 932 | std::stringstream output;
|
---|
| 933 | output << "Map is ";
|
---|
[9879f6] | 934 | for (molecule::const_iterator iter = begin(); iter != end(); ++iter) {
|
---|
| 935 | if ((*iter)->father == NULL) {
|
---|
[735b1c] | 936 | AtomicMap[(*iter)->getNr()] = -2;
|
---|
[042f82] | 937 | } else {
|
---|
[9879f6] | 938 | for (molecule::const_iterator runner = OtherMolecule->begin(); runner != OtherMolecule->end(); ++runner) {
|
---|
[042f82] | 939 | //for (int i=0;i<AtomCount;i++) { // search atom
|
---|
[1024cb] | 940 | //for (int j=0;j<OtherMolecule->getAtomCount();j++) {
|
---|
[47d041] | 941 | //LOG(4, "Comparing father " << (*iter)->father << " with the other one " << (*runner)->father << ".");
|
---|
[9879f6] | 942 | if ((*iter)->father == (*runner))
|
---|
[735b1c] | 943 | AtomicMap[(*iter)->getNr()] = (*runner)->getNr();
|
---|
[042f82] | 944 | }
|
---|
| 945 | }
|
---|
[47d041] | 946 | output << AtomicMap[(*iter)->getNr()] << "\t";
|
---|
[042f82] | 947 | }
|
---|
[47d041] | 948 | LOG(4, output.str());
|
---|
[042f82] | 949 | }
|
---|
[47d041] | 950 | LOG(3, "End of GetFatherAtomicMap.");
|
---|
[042f82] | 951 | return AtomicMap;
|
---|
[14de469] | 952 | };
|
---|
| 953 |
|
---|
[4a7776a] | 954 |
|
---|
[c68025] | 955 | void molecule::flipActiveFlag(){
|
---|
| 956 | ActiveFlag = !ActiveFlag;
|
---|
| 957 | }
|
---|
[560bbe] | 958 |
|
---|
[55feea1] | 959 | Shape molecule::getBoundingShape(const double boundary) const
|
---|
[c67ff9] | 960 | {
|
---|
| 961 | // get center and radius
|
---|
| 962 | Vector center;
|
---|
| 963 | double radius = 0.;
|
---|
| 964 | {
|
---|
| 965 | center.Zero();
|
---|
| 966 | for(const_iterator iter = begin(); iter != end(); ++iter)
|
---|
| 967 | center += (*iter)->getPosition();
|
---|
| 968 | center *= 1./(double)size();
|
---|
| 969 | for(const_iterator iter = begin(); iter != end(); ++iter) {
|
---|
| 970 | const Vector &position = (*iter)->getPosition();
|
---|
| 971 | const double temp_distance = position.DistanceSquared(center);
|
---|
| 972 | if (temp_distance > radius)
|
---|
| 973 | radius = temp_distance;
|
---|
| 974 | }
|
---|
| 975 | }
|
---|
| 976 | // convert radius to true value and add some small boundary
|
---|
[55feea1] | 977 | radius = sqrt(radius) + boundary + 1e+6*std::numeric_limits<double>::epsilon();
|
---|
[c67ff9] | 978 | LOG(1, "INFO: The " << size() << " atoms of the molecule are contained in a sphere at "
|
---|
| 979 | << center << " with radius " << radius << ".");
|
---|
| 980 |
|
---|
[f24af7] | 981 | // TODO: When we do not use a Sphere here anymore, then FillRegularGridAction will
|
---|
| 982 | // will not work as it expects a sphere due to possible random rotations.
|
---|
[c67ff9] | 983 | Shape BoundingShape(Sphere(center, radius));
|
---|
| 984 | LOG(1, "INFO: Created sphere at " << BoundingShape.getCenter() << " and radius "
|
---|
| 985 | << BoundingShape.getRadius() << ".");
|
---|
| 986 | return BoundingShape;
|
---|
| 987 | }
|
---|
| 988 |
|
---|
[560bbe] | 989 | // construct idpool
|
---|
| 990 | CONSTRUCT_IDPOOL(atomId_t, continuousId)
|
---|
[c67ff9] | 991 |
|
---|