| [bcf653] | 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 |  | 
|---|
| [b70721] | 8 | /* | 
|---|
|  | 9 | * bondgraph.cpp | 
|---|
|  | 10 | * | 
|---|
|  | 11 | *  Created on: Oct 29, 2009 | 
|---|
|  | 12 | *      Author: heber | 
|---|
|  | 13 | */ | 
|---|
|  | 14 |  | 
|---|
| [bf3817] | 15 | // include config.h | 
|---|
|  | 16 | #ifdef HAVE_CONFIG_H | 
|---|
|  | 17 | #include <config.h> | 
|---|
|  | 18 | #endif | 
|---|
|  | 19 |  | 
|---|
| [ad011c] | 20 | #include "CodePatterns/MemDebug.hpp" | 
|---|
| [112b09] | 21 |  | 
|---|
| [b70721] | 22 | #include <iostream> | 
|---|
|  | 23 |  | 
|---|
|  | 24 | #include "atom.hpp" | 
|---|
| [129204] | 25 | #include "Bond/bond.hpp" | 
|---|
| [632508] | 26 | #include "Graph/BondGraph.hpp" | 
|---|
| [3738f0] | 27 | #include "Box.hpp" | 
|---|
| [3bdb6d] | 28 | #include "Element/element.hpp" | 
|---|
| [ad011c] | 29 | #include "CodePatterns/Info.hpp" | 
|---|
|  | 30 | #include "CodePatterns/Log.hpp" | 
|---|
| [3738f0] | 31 | #include "CodePatterns/Range.hpp" | 
|---|
|  | 32 | #include "CodePatterns/Verbose.hpp" | 
|---|
| [b70721] | 33 | #include "molecule.hpp" | 
|---|
| [3bdb6d] | 34 | #include "Element/periodentafel.hpp" | 
|---|
| [a9b86d] | 35 | #include "Fragmentation/MatrixContainer.hpp" | 
|---|
| [57f243] | 36 | #include "LinearAlgebra/Vector.hpp" | 
|---|
| [3738f0] | 37 | #include "World.hpp" | 
|---|
|  | 38 | #include "WorldTime.hpp" | 
|---|
| [b70721] | 39 |  | 
|---|
| [88b400] | 40 | const double BondGraph::BondThreshold = 0.4;   //!< CSD threshold in bond check which is the width of the interval whose center is the sum of the covalent radii | 
|---|
|  | 41 |  | 
|---|
| [f007a1] | 42 | BondGraph::BondGraph() : | 
|---|
|  | 43 | BondLengthMatrix(NULL), | 
|---|
|  | 44 | IsAngstroem(true) | 
|---|
|  | 45 | {} | 
|---|
|  | 46 |  | 
|---|
| [97b825] | 47 | BondGraph::BondGraph(bool IsA) : | 
|---|
|  | 48 | BondLengthMatrix(NULL), | 
|---|
|  | 49 | IsAngstroem(IsA) | 
|---|
| [3738f0] | 50 | {} | 
|---|
| [b70721] | 51 |  | 
|---|
|  | 52 | BondGraph::~BondGraph() | 
|---|
| [829761] | 53 | { | 
|---|
|  | 54 | CleanupBondLengthTable(); | 
|---|
|  | 55 | } | 
|---|
|  | 56 |  | 
|---|
|  | 57 | void BondGraph::CleanupBondLengthTable() | 
|---|
| [b70721] | 58 | { | 
|---|
|  | 59 | if (BondLengthMatrix != NULL) { | 
|---|
|  | 60 | delete(BondLengthMatrix); | 
|---|
|  | 61 | } | 
|---|
| [3738f0] | 62 | } | 
|---|
| [b70721] | 63 |  | 
|---|
| [111f4a] | 64 | bool BondGraph::LoadBondLengthTable( | 
|---|
|  | 65 | std::istream &input) | 
|---|
| [b70721] | 66 | { | 
|---|
| [244a84] | 67 | Info FunctionInfo(__func__); | 
|---|
| [b70721] | 68 | bool status = true; | 
|---|
| [34e0013] | 69 | MatrixContainer *TempContainer = NULL; | 
|---|
| [b70721] | 70 |  | 
|---|
|  | 71 | // allocate MatrixContainer | 
|---|
|  | 72 | if (BondLengthMatrix != NULL) { | 
|---|
| [3738f0] | 73 | LOG(1, "MatrixContainer for Bond length already present, removing."); | 
|---|
| [b70721] | 74 | delete(BondLengthMatrix); | 
|---|
| [829761] | 75 | BondLengthMatrix = NULL; | 
|---|
| [b70721] | 76 | } | 
|---|
| [34e0013] | 77 | TempContainer = new MatrixContainer; | 
|---|
| [b70721] | 78 |  | 
|---|
|  | 79 | // parse in matrix | 
|---|
| [4e855e] | 80 | if ((input.good()) && (status = TempContainer->ParseMatrix(input, 0, 1, 0))) { | 
|---|
| [3738f0] | 81 | LOG(1, "Parsing bond length matrix successful."); | 
|---|
| [244a84] | 82 | } else { | 
|---|
| [47d041] | 83 | ELOG(1, "Parsing bond length matrix failed."); | 
|---|
| [4e855e] | 84 | status = false; | 
|---|
| [244a84] | 85 | } | 
|---|
| [b70721] | 86 |  | 
|---|
| [34e0013] | 87 | if (status) // set to not NULL only if matrix was parsed | 
|---|
|  | 88 | BondLengthMatrix = TempContainer; | 
|---|
|  | 89 | else { | 
|---|
|  | 90 | BondLengthMatrix = NULL; | 
|---|
|  | 91 | delete(TempContainer); | 
|---|
|  | 92 | } | 
|---|
| [b70721] | 93 | return status; | 
|---|
| [3738f0] | 94 | } | 
|---|
| [b70721] | 95 |  | 
|---|
| [300220] | 96 | double BondGraph::GetBondLength( | 
|---|
|  | 97 | int firstZ, | 
|---|
|  | 98 | int secondZ) const | 
|---|
| [b70721] | 99 | { | 
|---|
| [4e855e] | 100 | std::cout << "Request for length between " << firstZ << " and " << secondZ << ": "; | 
|---|
|  | 101 | if (BondLengthMatrix == NULL) { | 
|---|
|  | 102 | std::cout << "-1." << std::endl; | 
|---|
| [34e0013] | 103 | return( -1. ); | 
|---|
| [4e855e] | 104 | } else { | 
|---|
|  | 105 | std::cout << BondLengthMatrix->Matrix[0][firstZ][secondZ] << std::endl; | 
|---|
| [34e0013] | 106 | return (BondLengthMatrix->Matrix[0][firstZ][secondZ]); | 
|---|
| [4e855e] | 107 | } | 
|---|
| [3738f0] | 108 | } | 
|---|
| [ae38fb] | 109 |  | 
|---|
| [607eab] | 110 | range<double> BondGraph::CovalentMinMaxDistance( | 
|---|
| [300220] | 111 | const element * const Walker, | 
|---|
| [607eab] | 112 | const element * const OtherWalker) const | 
|---|
| [b70721] | 113 | { | 
|---|
| [607eab] | 114 | range<double> MinMaxDistance(0.,0.); | 
|---|
| [300220] | 115 | MinMaxDistance.first = OtherWalker->getCovalentRadius() + Walker->getCovalentRadius(); | 
|---|
|  | 116 | MinMaxDistance.first *= (IsAngstroem) ? 1. : 1. / AtomicLengthToAngstroem; | 
|---|
|  | 117 | MinMaxDistance.last = MinMaxDistance.first + BondThreshold; | 
|---|
|  | 118 | MinMaxDistance.first -= BondThreshold; | 
|---|
| [607eab] | 119 | return MinMaxDistance; | 
|---|
| [3738f0] | 120 | } | 
|---|
| [b70721] | 121 |  | 
|---|
| [607eab] | 122 | range<double> BondGraph::BondLengthMatrixMinMaxDistance( | 
|---|
| [300220] | 123 | const element * const Walker, | 
|---|
| [607eab] | 124 | const element * const OtherWalker) const | 
|---|
| [72d90e] | 125 | { | 
|---|
| [300220] | 126 | ASSERT(BondLengthMatrix, "BondGraph::BondLengthMatrixMinMaxDistance() called without NULL BondLengthMatrix."); | 
|---|
|  | 127 | ASSERT(Walker, "BondGraph::BondLengthMatrixMinMaxDistance() - illegal element given."); | 
|---|
|  | 128 | ASSERT(OtherWalker, "BondGraph::BondLengthMatrixMinMaxDistance() - illegal other element given."); | 
|---|
| [607eab] | 129 | range<double> MinMaxDistance(0.,0.); | 
|---|
| [300220] | 130 | MinMaxDistance.first = GetBondLength(Walker->getAtomicNumber()-1, OtherWalker->getAtomicNumber()-1); | 
|---|
|  | 131 | MinMaxDistance.first *= (IsAngstroem) ? 1. : 1. / AtomicLengthToAngstroem; | 
|---|
|  | 132 | MinMaxDistance.last = MinMaxDistance.first + BondThreshold; | 
|---|
|  | 133 | MinMaxDistance.first -= BondThreshold; | 
|---|
| [607eab] | 134 | return MinMaxDistance; | 
|---|
| [3738f0] | 135 | } | 
|---|
| [72d90e] | 136 |  | 
|---|
| [607eab] | 137 | range<double> BondGraph::getMinMaxDistance( | 
|---|
| [300220] | 138 | const element * const Walker, | 
|---|
| [607eab] | 139 | const element * const OtherWalker) const | 
|---|
| [b70721] | 140 | { | 
|---|
| [607eab] | 141 | range<double> MinMaxDistance(0.,0.); | 
|---|
| [34e0013] | 142 | if (BondLengthMatrix == NULL) {// safety measure if no matrix has been parsed yet | 
|---|
| [300220] | 143 | LOG(2, "INFO: Using Covalent radii criterion for [min,max) distances."); | 
|---|
| [607eab] | 144 | MinMaxDistance = CovalentMinMaxDistance(Walker, OtherWalker); | 
|---|
| [b21a64] | 145 | } else { | 
|---|
| [300220] | 146 | LOG(2, "INFO: Using Covalent radii criterion for [min,max) distances."); | 
|---|
| [607eab] | 147 | MinMaxDistance = BondLengthMatrixMinMaxDistance(Walker, OtherWalker); | 
|---|
| [b21a64] | 148 | } | 
|---|
| [607eab] | 149 | return MinMaxDistance; | 
|---|
| [72d90e] | 150 | } | 
|---|
| [3738f0] | 151 |  | 
|---|
| [607eab] | 152 | range<double> BondGraph::getMinMaxDistance( | 
|---|
| [300220] | 153 | const BondedParticle * const Walker, | 
|---|
| [607eab] | 154 | const BondedParticle * const OtherWalker) const | 
|---|
| [300220] | 155 | { | 
|---|
| [607eab] | 156 | return getMinMaxDistance(Walker->getType(), OtherWalker->getType()); | 
|---|
| [300220] | 157 | } | 
|---|
|  | 158 |  | 
|---|
| [607eab] | 159 | range<double> BondGraph::getMinMaxDistanceSquared( | 
|---|
| [300220] | 160 | const BondedParticle * const Walker, | 
|---|
| [607eab] | 161 | const BondedParticle * const OtherWalker) const | 
|---|
| [300220] | 162 | { | 
|---|
|  | 163 | // use non-squared version | 
|---|
| [607eab] | 164 | range<double> MinMaxDistance(getMinMaxDistance(Walker, OtherWalker)); | 
|---|
| [300220] | 165 | // and square | 
|---|
|  | 166 | MinMaxDistance.first *= MinMaxDistance.first; | 
|---|
|  | 167 | MinMaxDistance.last *= MinMaxDistance.last; | 
|---|
| [607eab] | 168 | return MinMaxDistance; | 
|---|
| [300220] | 169 | } | 
|---|
|  | 170 |  | 
|---|
| [111f4a] | 171 | void BondGraph::CreateAdjacency(LinkedCell &LC) const | 
|---|
| [3738f0] | 172 | { | 
|---|
|  | 173 | atom *Walker = NULL; | 
|---|
|  | 174 | atom *OtherWalker = NULL; | 
|---|
|  | 175 | int n[NDIM]; | 
|---|
|  | 176 | Box &domain = World::getInstance().getDomain(); | 
|---|
| [539f32] | 177 | size_t CurrentTime = WorldTime::getTime(); | 
|---|
| [3738f0] | 178 |  | 
|---|
|  | 179 | unsigned int BondCount = 0; | 
|---|
|  | 180 | // 3a. go through every cell | 
|---|
|  | 181 | LOG(3, "INFO: Celling ... "); | 
|---|
|  | 182 | for (LC.n[0] = 0; LC.n[0] < LC.N[0]; LC.n[0]++) | 
|---|
|  | 183 | for (LC.n[1] = 0; LC.n[1] < LC.N[1]; LC.n[1]++) | 
|---|
|  | 184 | for (LC.n[2] = 0; LC.n[2] < LC.N[2]; LC.n[2]++) { | 
|---|
|  | 185 | const TesselPointSTLList *List = LC.GetCurrentCell(); | 
|---|
|  | 186 | LOG(2, "Current cell is " << LC.n[0] << ", " << LC.n[1] << ", " << LC.n[2] << " with No. " << LC.index << " containing " << List->size() << " points."); | 
|---|
|  | 187 | if (List != NULL) { | 
|---|
|  | 188 | for (TesselPointSTLList::const_iterator Runner = List->begin(); Runner != List->end(); Runner++) { | 
|---|
|  | 189 | Walker = dynamic_cast<atom*>(*Runner); | 
|---|
|  | 190 | ASSERT(Walker != NULL, | 
|---|
|  | 191 | "BondGraph::CreateAdjacency() - Tesselpoint that was not an atom retrieved from LinkedNode"); | 
|---|
|  | 192 | LOG(2, "INFO: Current Atom is " << *Walker << "."); | 
|---|
|  | 193 | // 3c. check for possible bond between each atom in this and every one in the 27 cells | 
|---|
|  | 194 | for (n[0] = -1; n[0] <= 1; n[0]++) | 
|---|
|  | 195 | for (n[1] = -1; n[1] <= 1; n[1]++) | 
|---|
|  | 196 | for (n[2] = -1; n[2] <= 1; n[2]++) { | 
|---|
|  | 197 | const TesselPointSTLList *OtherList = LC.GetRelativeToCurrentCell(n); | 
|---|
|  | 198 | if (OtherList != NULL) { | 
|---|
|  | 199 | LOG(3, "INFO: Current relative cell is " << LC.n[0] << ", " << LC.n[1] << ", " << LC.n[2] << " with No. " << LC.index << " containing " << List->size() << " points."); | 
|---|
|  | 200 | for (TesselPointSTLList::const_iterator OtherRunner = OtherList->begin(); OtherRunner != OtherList->end(); OtherRunner++) { | 
|---|
|  | 201 | if ((*OtherRunner) > Walker) {  // just to not add bonds from both sides | 
|---|
|  | 202 | OtherWalker = dynamic_cast<atom*>(*OtherRunner); | 
|---|
|  | 203 | ASSERT(OtherWalker != NULL, | 
|---|
|  | 204 | "BondGraph::CreateAdjacency() - TesselPoint that was not an atom retrieved from LinkedNode"); | 
|---|
|  | 205 | if (OtherWalker->father > Walker->father ) { // just to not add bonds from both sides | 
|---|
| [539f32] | 206 | const range<double> MinMaxDistanceSquared( | 
|---|
|  | 207 | getMinMaxDistanceSquared(Walker, OtherWalker)); | 
|---|
|  | 208 | const double distance = domain.periodicDistanceSquared(OtherWalker->getPosition(),Walker->getPosition()); | 
|---|
|  | 209 | LOG(3, "INFO: Checking squared distance " << distance << " against typical bond length of " << MinMaxDistanceSquared << "."); | 
|---|
|  | 210 | const bool status = MinMaxDistanceSquared.isInRange(distance); | 
|---|
| [3738f0] | 211 | if (status) { // create bond if distance is smaller | 
|---|
|  | 212 | LOG(1, "ACCEPT: Adding Bond between " << *Walker << " and " << *OtherWalker << " in distance " << sqrt(distance) << "."); | 
|---|
| [db7e6d] | 213 | //const bond * Binder = | 
|---|
| [539f32] | 214 | Walker->father->addBond(CurrentTime, OtherWalker->father); | 
|---|
| [3738f0] | 215 | BondCount++; | 
|---|
|  | 216 | } else { | 
|---|
| [539f32] | 217 | LOG(2, "REJECT: Squared distance " | 
|---|
| [300220] | 218 | << distance << " is out of squared covalent bounds " | 
|---|
|  | 219 | << MinMaxDistanceSquared << "."); | 
|---|
| [3738f0] | 220 | } | 
|---|
|  | 221 | } else { | 
|---|
|  | 222 | LOG(5, "REJECT: Not Adding: Wrong order of father's."); | 
|---|
|  | 223 | } | 
|---|
|  | 224 | } else { | 
|---|
|  | 225 | LOG(5, "REJECT: Not Adding: Wrong order."); | 
|---|
|  | 226 | } | 
|---|
|  | 227 | } | 
|---|
|  | 228 | } | 
|---|
|  | 229 | } | 
|---|
|  | 230 | } | 
|---|
|  | 231 | } | 
|---|
|  | 232 | } | 
|---|
|  | 233 | LOG(1, "I detected " << BondCount << " bonds in the molecule."); | 
|---|
|  | 234 | } | 
|---|
| [0cbad2] | 235 |  | 
|---|
| [9b6663] | 236 | bool BondGraph::operator==(const BondGraph &other) const | 
|---|
|  | 237 | { | 
|---|
|  | 238 | if (IsAngstroem != other.IsAngstroem) | 
|---|
|  | 239 | return false; | 
|---|
|  | 240 | if (((BondLengthMatrix != NULL) && (other.BondLengthMatrix == NULL)) | 
|---|
|  | 241 | || ((BondLengthMatrix == NULL) && (other.BondLengthMatrix != NULL))) | 
|---|
|  | 242 | return false; | 
|---|
|  | 243 | if ((BondLengthMatrix != NULL) && (other.BondLengthMatrix != NULL)) | 
|---|
|  | 244 | if (*BondLengthMatrix != *other.BondLengthMatrix) | 
|---|
|  | 245 | return false; | 
|---|
|  | 246 | return true; | 
|---|
|  | 247 | } | 
|---|