| [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 |  | 
|---|
| [e138de] | 23 | /** \file MoleculeListClass.cpp | 
|---|
|  | 24 | * | 
|---|
|  | 25 | * Function implementations for the class MoleculeListClass. | 
|---|
|  | 26 | * | 
|---|
|  | 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 |  | 
|---|
| [42127c] | 36 | #include <iostream> | 
|---|
| [49e1ae] | 37 |  | 
|---|
| [d3abb1] | 38 | //#include <gsl/gsl_inline.h> | 
|---|
| [aafd77] | 39 | #include <gsl/gsl_heapsort.h> | 
|---|
|  | 40 |  | 
|---|
| [42127c] | 41 | #include "MoleculeListClass.hpp" | 
|---|
| [d3abb1] | 42 |  | 
|---|
|  | 43 | #include "CodePatterns/Log.hpp" | 
|---|
|  | 44 |  | 
|---|
| [6f0841] | 45 | #include "Atom/atom.hpp" | 
|---|
| [129204] | 46 | #include "Bond/bond.hpp" | 
|---|
| [583081] | 47 | #include "Box.hpp" | 
|---|
| [e138de] | 48 | #include "config.hpp" | 
|---|
| [3bdb6d] | 49 | #include "Element/element.hpp" | 
|---|
| [d3abb1] | 50 | #include "Element/periodentafel.hpp" | 
|---|
| [dadc74] | 51 | #include "Fragmentation/Graph.hpp" | 
|---|
| [f0674a] | 52 | #include "Fragmentation/KeySet.hpp" | 
|---|
| [dcbb5d] | 53 | #include "Fragmentation/SortIndex.hpp" | 
|---|
| [129204] | 54 | #include "Graph/BondGraph.hpp" | 
|---|
| [952f38] | 55 | #include "Helpers/helpers.hpp" | 
|---|
| [42127c] | 56 | #include "molecule.hpp" | 
|---|
| [583081] | 57 | #include "LinearAlgebra/RealSpaceMatrix.hpp" | 
|---|
| [f7c19e] | 58 | #include "Parser/FormatParserStorage.hpp" | 
|---|
| [583081] | 59 | #include "World.hpp" | 
|---|
| [920c70] | 60 |  | 
|---|
| [e138de] | 61 |  | 
|---|
|  | 62 | /** Constructor for MoleculeListClass. | 
|---|
|  | 63 | */ | 
|---|
| [cbc5fb] | 64 | MoleculeListClass::MoleculeListClass(World *_world) : | 
|---|
| [cd5047] | 65 | Observable("MoleculeListClass"), | 
|---|
| [81a9bc] | 66 | MaxIndex(1), | 
|---|
|  | 67 | world(_world) | 
|---|
| [97b825] | 68 | {}; | 
|---|
| [e138de] | 69 |  | 
|---|
|  | 70 | /** Destructor for MoleculeListClass. | 
|---|
|  | 71 | */ | 
|---|
|  | 72 | MoleculeListClass::~MoleculeListClass() | 
|---|
|  | 73 | { | 
|---|
| [47d041] | 74 | LOG(4, "Clearing ListOfMolecules."); | 
|---|
| [bd6bfa] | 75 | for(MoleculeList::iterator MolRunner = ListOfMolecules.begin(); MolRunner != ListOfMolecules.end(); ++MolRunner) | 
|---|
|  | 76 | (*MolRunner)->signOff(this); | 
|---|
| [e138de] | 77 | ListOfMolecules.clear(); // empty list | 
|---|
|  | 78 | }; | 
|---|
|  | 79 |  | 
|---|
|  | 80 | /** Insert a new molecule into the list and set its number. | 
|---|
|  | 81 | * \param *mol molecule to add to list. | 
|---|
|  | 82 | */ | 
|---|
|  | 83 | void MoleculeListClass::insert(molecule *mol) | 
|---|
|  | 84 | { | 
|---|
| [2ba827] | 85 | OBSERVE; | 
|---|
| [e138de] | 86 | mol->IndexNr = MaxIndex++; | 
|---|
|  | 87 | ListOfMolecules.push_back(mol); | 
|---|
| [520c8b] | 88 | mol->signOn(this); | 
|---|
| [e138de] | 89 | }; | 
|---|
|  | 90 |  | 
|---|
| [bd6bfa] | 91 | /** Erases a molecule from the list. | 
|---|
|  | 92 | * \param *mol molecule to add to list. | 
|---|
|  | 93 | */ | 
|---|
|  | 94 | void MoleculeListClass::erase(molecule *mol) | 
|---|
|  | 95 | { | 
|---|
|  | 96 | OBSERVE; | 
|---|
|  | 97 | mol->signOff(this); | 
|---|
|  | 98 | ListOfMolecules.remove(mol); | 
|---|
|  | 99 | }; | 
|---|
|  | 100 |  | 
|---|
| [a0064e] | 101 | /** Comparison function for two values. | 
|---|
|  | 102 | * \param *a | 
|---|
|  | 103 | * \param *b | 
|---|
|  | 104 | * \return <0, \a *a less than \a *b, ==0 if equal, >0 \a *a greater than \a *b | 
|---|
|  | 105 | */ | 
|---|
|  | 106 | int CompareDoubles (const void * a, const void * b) | 
|---|
|  | 107 | { | 
|---|
|  | 108 | if (*(double *)a > *(double *)b) | 
|---|
|  | 109 | return -1; | 
|---|
|  | 110 | else if (*(double *)a < *(double *)b) | 
|---|
|  | 111 | return 1; | 
|---|
|  | 112 | else | 
|---|
|  | 113 | return 0; | 
|---|
|  | 114 | }; | 
|---|
|  | 115 |  | 
|---|
|  | 116 |  | 
|---|
| [e138de] | 117 | /** Compare whether two molecules are equal. | 
|---|
|  | 118 | * \param *a molecule one | 
|---|
|  | 119 | * \param *n molecule two | 
|---|
|  | 120 | * \return lexical value (-1, 0, +1) | 
|---|
|  | 121 | */ | 
|---|
|  | 122 | int MolCompare(const void *a, const void *b) | 
|---|
|  | 123 | { | 
|---|
|  | 124 | int *aList = NULL, *bList = NULL; | 
|---|
|  | 125 | int Count, Counter, aCounter, bCounter; | 
|---|
|  | 126 | int flag; | 
|---|
|  | 127 |  | 
|---|
|  | 128 | // sort each atom list and put the numbers into a list, then go through | 
|---|
| [47d041] | 129 | //LOG(0, "Comparing fragment no. " << *(molecule **)a << " to " << *(molecule **)b << "."); | 
|---|
| [ea7176] | 130 | // Yes those types are awkward... but check it for yourself it checks out this way | 
|---|
|  | 131 | molecule *const *mol1_ptr= static_cast<molecule *const *>(a); | 
|---|
|  | 132 | molecule *mol1 = *mol1_ptr; | 
|---|
|  | 133 | molecule *const *mol2_ptr= static_cast<molecule *const *>(b); | 
|---|
|  | 134 | molecule *mol2 = *mol2_ptr; | 
|---|
|  | 135 | if (mol1->getAtomCount() < mol2->getAtomCount()) { | 
|---|
| [e138de] | 136 | return -1; | 
|---|
|  | 137 | } else { | 
|---|
| [ea7176] | 138 | if (mol1->getAtomCount() > mol2->getAtomCount()) | 
|---|
| [e138de] | 139 | return +1; | 
|---|
|  | 140 | else { | 
|---|
| [ea7176] | 141 | Count = mol1->getAtomCount(); | 
|---|
| [e138de] | 142 | aList = new int[Count]; | 
|---|
|  | 143 | bList = new int[Count]; | 
|---|
|  | 144 |  | 
|---|
|  | 145 | // fill the lists | 
|---|
|  | 146 | Counter = 0; | 
|---|
|  | 147 | aCounter = 0; | 
|---|
|  | 148 | bCounter = 0; | 
|---|
| [ea7176] | 149 | molecule::const_iterator aiter = mol1->begin(); | 
|---|
|  | 150 | molecule::const_iterator biter = mol2->begin(); | 
|---|
|  | 151 | for (;(aiter != mol1->end()) && (biter != mol2->end()); | 
|---|
| [9879f6] | 152 | ++aiter, ++biter) { | 
|---|
|  | 153 | if ((*aiter)->GetTrueFather() == NULL) | 
|---|
| [e138de] | 154 | aList[Counter] = Count + (aCounter++); | 
|---|
|  | 155 | else | 
|---|
| [735b1c] | 156 | aList[Counter] = (*aiter)->GetTrueFather()->getNr(); | 
|---|
| [9879f6] | 157 | if ((*biter)->GetTrueFather() == NULL) | 
|---|
| [e138de] | 158 | bList[Counter] = Count + (bCounter++); | 
|---|
|  | 159 | else | 
|---|
| [735b1c] | 160 | bList[Counter] = (*biter)->GetTrueFather()->getNr(); | 
|---|
| [e138de] | 161 | Counter++; | 
|---|
|  | 162 | } | 
|---|
|  | 163 | // check if AtomCount was for real | 
|---|
|  | 164 | flag = 0; | 
|---|
| [ea7176] | 165 | if ((aiter == mol1->end()) && (biter != mol2->end())) { | 
|---|
| [e138de] | 166 | flag = -1; | 
|---|
|  | 167 | } else { | 
|---|
| [ea7176] | 168 | if ((aiter != mol1->end()) && (biter == mol2->end())) | 
|---|
| [e138de] | 169 | flag = 1; | 
|---|
|  | 170 | } | 
|---|
|  | 171 | if (flag == 0) { | 
|---|
|  | 172 | // sort the lists | 
|---|
|  | 173 | gsl_heapsort(aList, Count, sizeof(int), CompareDoubles); | 
|---|
|  | 174 | gsl_heapsort(bList, Count, sizeof(int), CompareDoubles); | 
|---|
|  | 175 | // compare the lists | 
|---|
|  | 176 |  | 
|---|
|  | 177 | flag = 0; | 
|---|
|  | 178 | for (int i = 0; i < Count; i++) { | 
|---|
|  | 179 | if (aList[i] < bList[i]) { | 
|---|
|  | 180 | flag = -1; | 
|---|
|  | 181 | } else { | 
|---|
|  | 182 | if (aList[i] > bList[i]) | 
|---|
|  | 183 | flag = 1; | 
|---|
|  | 184 | } | 
|---|
|  | 185 | if (flag != 0) | 
|---|
|  | 186 | break; | 
|---|
|  | 187 | } | 
|---|
|  | 188 | } | 
|---|
|  | 189 | delete[] (aList); | 
|---|
|  | 190 | delete[] (bList); | 
|---|
|  | 191 | return flag; | 
|---|
|  | 192 | } | 
|---|
|  | 193 | } | 
|---|
|  | 194 | return -1; | 
|---|
|  | 195 | }; | 
|---|
|  | 196 |  | 
|---|
|  | 197 | /** Output of a list of all molecules. | 
|---|
|  | 198 | * \param *out output stream | 
|---|
|  | 199 | */ | 
|---|
| [42127c] | 200 | void MoleculeListClass::Enumerate(std::ostream *out) | 
|---|
| [e138de] | 201 | { | 
|---|
| [ead4e6] | 202 | periodentafel *periode = World::getInstance().getPeriode(); | 
|---|
|  | 203 | std::map<atomicNumber_t,unsigned int> counts; | 
|---|
| [e138de] | 204 | double size=0; | 
|---|
|  | 205 | Vector Origin; | 
|---|
|  | 206 |  | 
|---|
|  | 207 | // header | 
|---|
| [835a0f] | 208 | (*out) << "Index\tName\t\tAtoms\tFormula\tCenter\tSize" << endl; | 
|---|
|  | 209 | (*out) << "-----------------------------------------------" << endl; | 
|---|
| [e138de] | 210 | if (ListOfMolecules.size() == 0) | 
|---|
| [835a0f] | 211 | (*out) << "\tNone" << endl; | 
|---|
| [e138de] | 212 | else { | 
|---|
|  | 213 | Origin.Zero(); | 
|---|
|  | 214 | for (MoleculeList::iterator ListRunner = ListOfMolecules.begin(); ListRunner != ListOfMolecules.end(); ListRunner++) { | 
|---|
|  | 215 | // count atoms per element and determine size of bounding sphere | 
|---|
|  | 216 | size=0.; | 
|---|
| [9879f6] | 217 | for (molecule::const_iterator iter = (*ListRunner)->begin(); iter != (*ListRunner)->end(); ++iter) { | 
|---|
| [ed26ae] | 218 | counts[(*iter)->getType()->getAtomicNumber()]++; | 
|---|
| [d74077] | 219 | if ((*iter)->DistanceSquared(Origin) > size) | 
|---|
|  | 220 | size = (*iter)->DistanceSquared(Origin); | 
|---|
| [e138de] | 221 | } | 
|---|
|  | 222 | // output Index, Name, number of atoms, chemical formula | 
|---|
| [ea7176] | 223 | (*out) << ((*ListRunner)->ActiveFlag ? "*" : " ") << (*ListRunner)->IndexNr << "\t" << (*ListRunner)->name << "\t\t" << (*ListRunner)->getAtomCount() << "\t"; | 
|---|
| [ead4e6] | 224 |  | 
|---|
|  | 225 | std::map<atomicNumber_t,unsigned int>::reverse_iterator iter; | 
|---|
|  | 226 | for(iter=counts.rbegin(); iter!=counts.rend();++iter){ | 
|---|
|  | 227 | atomicNumber_t Z =(*iter).first; | 
|---|
|  | 228 | (*out) << periode->FindElement(Z)->getSymbol() << (*iter).second; | 
|---|
| [e138de] | 229 | } | 
|---|
|  | 230 | // Center and size | 
|---|
| [1883f9] | 231 | Vector *Center = (*ListRunner)->DetermineCenterOfAll(); | 
|---|
|  | 232 | (*out) << "\t" << *Center << "\t" << sqrt(size) << endl; | 
|---|
|  | 233 | delete(Center); | 
|---|
| [e138de] | 234 | } | 
|---|
|  | 235 | } | 
|---|
|  | 236 | }; | 
|---|
|  | 237 |  | 
|---|
|  | 238 | /** Returns the molecule with the given index \a index. | 
|---|
|  | 239 | * \param index index of the desired molecule | 
|---|
| [1907a7] | 240 | * \return pointer to molecule structure, NULL if not found | 
|---|
| [e138de] | 241 | */ | 
|---|
|  | 242 | molecule * MoleculeListClass::ReturnIndex(int index) | 
|---|
|  | 243 | { | 
|---|
|  | 244 | for(MoleculeList::iterator ListRunner = ListOfMolecules.begin(); ListRunner != ListOfMolecules.end(); ListRunner++) | 
|---|
|  | 245 | if ((*ListRunner)->IndexNr == index) | 
|---|
|  | 246 | return (*ListRunner); | 
|---|
|  | 247 | return NULL; | 
|---|
|  | 248 | }; | 
|---|
|  | 249 |  | 
|---|
|  | 250 |  | 
|---|
|  | 251 | /** Simple output of the pointers in ListOfMolecules. | 
|---|
|  | 252 | * \param *out output stream | 
|---|
|  | 253 | */ | 
|---|
| [42127c] | 254 | void MoleculeListClass::Output(std::ostream *out) | 
|---|
| [e138de] | 255 | { | 
|---|
| [47d041] | 256 | if (DoLog(1)) { | 
|---|
|  | 257 | std::stringstream output; | 
|---|
|  | 258 | output << "MoleculeList: "; | 
|---|
|  | 259 | for (MoleculeList::iterator ListRunner = ListOfMolecules.begin(); ListRunner != ListOfMolecules.end(); ListRunner++) | 
|---|
|  | 260 | output << *ListRunner << "\t"; | 
|---|
|  | 261 | LOG(1, output.str()); | 
|---|
|  | 262 | } | 
|---|
| [e138de] | 263 | }; | 
|---|
|  | 264 |  | 
|---|
| [0d0316] | 265 | /** Returns a string with \a i prefixed with 0s to match order of total number of molecules in digits. | 
|---|
|  | 266 | * \param FragmentNumber total number of fragments to determine necessary number of digits | 
|---|
|  | 267 | * \param digits number to create with 0 prefixed | 
|---|
|  | 268 | * \return allocated(!) char array with number in digits, ten base. | 
|---|
|  | 269 | */ | 
|---|
|  | 270 | inline char *FixedDigitNumber(const int FragmentNumber, const int digits) | 
|---|
|  | 271 | { | 
|---|
|  | 272 | char *returnstring; | 
|---|
|  | 273 | int number = FragmentNumber; | 
|---|
|  | 274 | int order = 0; | 
|---|
|  | 275 | while (number != 0) { // determine number of digits needed | 
|---|
|  | 276 | number = (int)floor(((double)number / 10.)); | 
|---|
|  | 277 | order++; | 
|---|
| [47d041] | 278 | //LOG(0, "Number is " << number << ", order is " << order << "."); | 
|---|
| [0d0316] | 279 | } | 
|---|
|  | 280 | // allocate string | 
|---|
|  | 281 | returnstring = new char[order + 2]; | 
|---|
|  | 282 | // terminate  and fill string array from end backward | 
|---|
|  | 283 | returnstring[order] = '\0'; | 
|---|
|  | 284 | number = digits; | 
|---|
|  | 285 | for (int i=order;i--;) { | 
|---|
|  | 286 | returnstring[i] = '0' + (char)(number % 10); | 
|---|
|  | 287 | number = (int)floor(((double)number / 10.)); | 
|---|
|  | 288 | } | 
|---|
| [47d041] | 289 | //LOG(0, returnstring); | 
|---|
| [0d0316] | 290 | return returnstring; | 
|---|
|  | 291 | }; | 
|---|
|  | 292 |  | 
|---|
| [e138de] | 293 | /** Calculates necessary hydrogen correction due to unwanted interaction between saturated ones. | 
|---|
|  | 294 | * If for a pair of two hydrogen atoms a and b, at least is a saturated one, and a and b are not | 
|---|
|  | 295 | * bonded to the same atom, then we add for this pair a correction term constructed from a Morse | 
|---|
|  | 296 | * potential function fit to QM calculations with respecting to the interatomic hydrogen distance. | 
|---|
| [35b698] | 297 | * \param &path path to file | 
|---|
| [e138de] | 298 | */ | 
|---|
| [35b698] | 299 | bool MoleculeListClass::AddHydrogenCorrection(std::string &path) | 
|---|
| [e138de] | 300 | { | 
|---|
| [7d82a5] | 301 | bond::ptr Binder; | 
|---|
| [e138de] | 302 | double ***FitConstant = NULL, **correction = NULL; | 
|---|
|  | 303 | int a, b; | 
|---|
|  | 304 | ofstream output; | 
|---|
|  | 305 | ifstream input; | 
|---|
|  | 306 | string line; | 
|---|
|  | 307 | stringstream zeile; | 
|---|
|  | 308 | double distance; | 
|---|
|  | 309 | char ParsedLine[1023]; | 
|---|
|  | 310 | double tmp; | 
|---|
|  | 311 | char *FragmentNumber = NULL; | 
|---|
|  | 312 |  | 
|---|
| [47d041] | 313 | LOG(1, "Saving hydrogen saturation correction ... "); | 
|---|
| [e138de] | 314 | // 0. parse in fit constant files that should have the same dimension as the final energy files | 
|---|
|  | 315 | // 0a. find dimension of matrices with constants | 
|---|
|  | 316 | line = path; | 
|---|
|  | 317 | line += "1"; | 
|---|
|  | 318 | line += FITCONSTANTSUFFIX; | 
|---|
|  | 319 | input.open(line.c_str()); | 
|---|
| [35b698] | 320 | if (input.fail()) { | 
|---|
| [47d041] | 321 | LOG(1, endl << "Unable to open " << line << ", is the directory correct?"); | 
|---|
| [e138de] | 322 | return false; | 
|---|
|  | 323 | } | 
|---|
|  | 324 | a = 0; | 
|---|
|  | 325 | b = -1; // we overcount by one | 
|---|
|  | 326 | while (!input.eof()) { | 
|---|
|  | 327 | input.getline(ParsedLine, 1023); | 
|---|
|  | 328 | zeile.str(ParsedLine); | 
|---|
|  | 329 | int i = 0; | 
|---|
|  | 330 | while (!zeile.eof()) { | 
|---|
|  | 331 | zeile >> distance; | 
|---|
|  | 332 | i++; | 
|---|
|  | 333 | } | 
|---|
|  | 334 | if (i > a) | 
|---|
|  | 335 | a = i; | 
|---|
|  | 336 | b++; | 
|---|
|  | 337 | } | 
|---|
| [47d041] | 338 | LOG(0, "I recognized " << a << " columns and " << b << " rows, "); | 
|---|
| [e138de] | 339 | input.close(); | 
|---|
|  | 340 |  | 
|---|
|  | 341 | // 0b. allocate memory for constants | 
|---|
| [920c70] | 342 | FitConstant = new double**[3]; | 
|---|
| [e138de] | 343 | for (int k = 0; k < 3; k++) { | 
|---|
| [920c70] | 344 | FitConstant[k] = new double*[a]; | 
|---|
| [e138de] | 345 | for (int i = a; i--;) { | 
|---|
| [920c70] | 346 | FitConstant[k][i] = new double[b]; | 
|---|
|  | 347 | for (int j = b; j--;) { | 
|---|
|  | 348 | FitConstant[k][i][j] = 0.; | 
|---|
|  | 349 | } | 
|---|
| [e138de] | 350 | } | 
|---|
|  | 351 | } | 
|---|
|  | 352 | // 0c. parse in constants | 
|---|
|  | 353 | for (int i = 0; i < 3; i++) { | 
|---|
|  | 354 | line = path; | 
|---|
|  | 355 | line.append("/"); | 
|---|
|  | 356 | line += FRAGMENTPREFIX; | 
|---|
|  | 357 | sprintf(ParsedLine, "%d", i + 1); | 
|---|
|  | 358 | line += ParsedLine; | 
|---|
|  | 359 | line += FITCONSTANTSUFFIX; | 
|---|
|  | 360 | input.open(line.c_str()); | 
|---|
| [f7c19e] | 361 | if (input.fail()) { | 
|---|
| [47d041] | 362 | ELOG(0, endl << "Unable to open " << line << ", is the directory correct?"); | 
|---|
| [e359a8] | 363 | performCriticalExit(); | 
|---|
| [e138de] | 364 | return false; | 
|---|
|  | 365 | } | 
|---|
|  | 366 | int k = 0, l; | 
|---|
|  | 367 | while ((!input.eof()) && (k < b)) { | 
|---|
|  | 368 | input.getline(ParsedLine, 1023); | 
|---|
| [47d041] | 369 | //LOG(1, "INFO: Current Line: " << ParsedLine); | 
|---|
| [e138de] | 370 | zeile.str(ParsedLine); | 
|---|
|  | 371 | zeile.clear(); | 
|---|
|  | 372 | l = 0; | 
|---|
| [47d041] | 373 | //std::stringstream output; | 
|---|
| [e138de] | 374 | while ((!zeile.eof()) && (l < a)) { | 
|---|
|  | 375 | zeile >> FitConstant[i][l][k]; | 
|---|
| [47d041] | 376 | //output << FitConstant[i][l][k] << "\t"; | 
|---|
| [e138de] | 377 | l++; | 
|---|
|  | 378 | } | 
|---|
| [47d041] | 379 | //LOG(1, "INFO: fit constant are " << output.str()); | 
|---|
| [e138de] | 380 | k++; | 
|---|
|  | 381 | } | 
|---|
|  | 382 | input.close(); | 
|---|
|  | 383 | } | 
|---|
| [47d041] | 384 | if (DoLog(1)) { | 
|---|
|  | 385 | for (int k = 0; k < 3; k++) { | 
|---|
|  | 386 | std::stringstream output; | 
|---|
|  | 387 | output << "Constants " << k << ": "; | 
|---|
|  | 388 | for (int j = 0; j < b; j++) { | 
|---|
|  | 389 | for (int i = 0; i < a; i++) { | 
|---|
|  | 390 | output << FitConstant[k][i][j] << "\t"; | 
|---|
|  | 391 | } | 
|---|
|  | 392 | output << std::endl; | 
|---|
| [e138de] | 393 | } | 
|---|
| [47d041] | 394 | LOG(0, output.str()); | 
|---|
| [e138de] | 395 | } | 
|---|
|  | 396 | } | 
|---|
|  | 397 |  | 
|---|
|  | 398 | // 0d. allocate final correction matrix | 
|---|
| [920c70] | 399 | correction = new double*[a]; | 
|---|
| [e138de] | 400 | for (int i = a; i--;) | 
|---|
| [920c70] | 401 | correction[i] = new double[b]; | 
|---|
| [e138de] | 402 |  | 
|---|
|  | 403 | // 1a. go through every molecule in the list | 
|---|
|  | 404 | for (MoleculeList::iterator ListRunner = ListOfMolecules.begin(); ListRunner != ListOfMolecules.end(); ListRunner++) { | 
|---|
|  | 405 | // 1b. zero final correction matrix | 
|---|
|  | 406 | for (int k = a; k--;) | 
|---|
|  | 407 | for (int j = b; j--;) | 
|---|
|  | 408 | correction[k][j] = 0.; | 
|---|
|  | 409 | // 2. take every hydrogen that is a saturated one | 
|---|
| [9879f6] | 410 | for (molecule::const_iterator iter = (*ListRunner)->begin(); iter != (*ListRunner)->end(); ++iter) { | 
|---|
| [47d041] | 411 | //LOG(1, "(*iter): " << *(*iter) << " with first bond " << *((*iter)->getListOfBonds().begin()) << "."); | 
|---|
| [83f176] | 412 | if (((*iter)->getType()->getAtomicNumber() == 1) && (((*iter)->father == NULL) | 
|---|
|  | 413 | || ((*iter)->father->getType()->getAtomicNumber() != 1))) { // if it's a hydrogen | 
|---|
| [9879f6] | 414 | for (molecule::const_iterator runner = (*ListRunner)->begin(); runner != (*ListRunner)->end(); ++runner) { | 
|---|
| [47d041] | 415 | //LOG(2, "Runner: " << *(*runner) << " with first bond " << *((*iter)->getListOfBonds().begin()) << "."); | 
|---|
| [e138de] | 416 | // 3. take every other hydrogen that is the not the first and not bound to same bonding partner | 
|---|
| [5e2f80] | 417 | const BondList &bondlist = (*runner)->getListOfBonds(); | 
|---|
|  | 418 | Binder = *(bondlist.begin()); | 
|---|
| [735b1c] | 419 | if (((*runner)->getType()->getAtomicNumber() == 1) && ((*runner)->getNr() > (*iter)->getNr()) && (Binder->GetOtherAtom((*runner)) != Binder->GetOtherAtom((*iter)))) { // (hydrogens have only one bonding partner!) | 
|---|
| [e138de] | 420 | // 4. evaluate the morse potential for each matrix component and add up | 
|---|
| [d74077] | 421 | distance = (*runner)->distance(*(*iter)); | 
|---|
| [47d041] | 422 | //std::stringstream output; | 
|---|
|  | 423 | //output << "Fragment " << (*ListRunner)->name << ": " << *(*runner) << "<= " << distance << "=>" << *(*iter) << ":"; | 
|---|
| [e138de] | 424 | for (int k = 0; k < a; k++) { | 
|---|
|  | 425 | for (int j = 0; j < b; j++) { | 
|---|
|  | 426 | switch (k) { | 
|---|
|  | 427 | case 1: | 
|---|
|  | 428 | case 7: | 
|---|
|  | 429 | case 11: | 
|---|
|  | 430 | tmp = pow(FitConstant[0][k][j] * (1. - exp(-FitConstant[1][k][j] * (distance - FitConstant[2][k][j]))), 2); | 
|---|
|  | 431 | break; | 
|---|
|  | 432 | default: | 
|---|
|  | 433 | tmp = FitConstant[0][k][j] * pow(distance, FitConstant[1][k][j]) + FitConstant[2][k][j]; | 
|---|
| [47d041] | 434 | break; | 
|---|
| [e138de] | 435 | }; | 
|---|
|  | 436 | correction[k][j] -= tmp; // ground state is actually lower (disturbed by additional interaction) | 
|---|
| [47d041] | 437 | //output << tmp << "\t"; | 
|---|
| [e138de] | 438 | } | 
|---|
| [47d041] | 439 | //output << endl; | 
|---|
| [e138de] | 440 | } | 
|---|
| [47d041] | 441 | //LOG(0, output.str()); | 
|---|
| [e138de] | 442 | } | 
|---|
|  | 443 | } | 
|---|
|  | 444 | } | 
|---|
|  | 445 | } | 
|---|
|  | 446 | // 5. write final matrix to file | 
|---|
|  | 447 | line = path; | 
|---|
|  | 448 | line.append("/"); | 
|---|
|  | 449 | line += FRAGMENTPREFIX; | 
|---|
|  | 450 | FragmentNumber = FixedDigitNumber(ListOfMolecules.size(), (*ListRunner)->IndexNr); | 
|---|
|  | 451 | line += FragmentNumber; | 
|---|
| [920c70] | 452 | delete[] (FragmentNumber); | 
|---|
| [e138de] | 453 | line += HCORRECTIONSUFFIX; | 
|---|
|  | 454 | output.open(line.c_str()); | 
|---|
|  | 455 | output << "Time\t\tTotal\t\tKinetic\t\tNonLocal\tCorrelation\tExchange\tPseudo\t\tHartree\t\t-Gauss\t\tEwald\t\tIonKin\t\tETotal" << endl; | 
|---|
|  | 456 | for (int j = 0; j < b; j++) { | 
|---|
|  | 457 | for (int i = 0; i < a; i++) | 
|---|
|  | 458 | output << correction[i][j] << "\t"; | 
|---|
|  | 459 | output << endl; | 
|---|
|  | 460 | } | 
|---|
|  | 461 | output.close(); | 
|---|
|  | 462 | } | 
|---|
| [920c70] | 463 | for (int i = a; i--;) | 
|---|
|  | 464 | delete[](correction[i]); | 
|---|
|  | 465 | delete[](correction); | 
|---|
|  | 466 |  | 
|---|
| [e138de] | 467 | line = path; | 
|---|
|  | 468 | line.append("/"); | 
|---|
|  | 469 | line += HCORRECTIONSUFFIX; | 
|---|
|  | 470 | output.open(line.c_str()); | 
|---|
|  | 471 | output << "Time\t\tTotal\t\tKinetic\t\tNonLocal\tCorrelation\tExchange\tPseudo\t\tHartree\t\t-Gauss\t\tEwald\t\tIonKin\t\tETotal" << endl; | 
|---|
|  | 472 | for (int j = 0; j < b; j++) { | 
|---|
|  | 473 | for (int i = 0; i < a; i++) | 
|---|
|  | 474 | output << 0 << "\t"; | 
|---|
|  | 475 | output << endl; | 
|---|
|  | 476 | } | 
|---|
|  | 477 | output.close(); | 
|---|
|  | 478 | // 6. free memory of parsed matrices | 
|---|
|  | 479 | for (int k = 0; k < 3; k++) { | 
|---|
|  | 480 | for (int i = a; i--;) { | 
|---|
| [920c70] | 481 | delete[](FitConstant[k][i]); | 
|---|
| [e138de] | 482 | } | 
|---|
| [920c70] | 483 | delete[](FitConstant[k]); | 
|---|
| [e138de] | 484 | } | 
|---|
| [920c70] | 485 | delete[](FitConstant); | 
|---|
| [47d041] | 486 | LOG(0, "done."); | 
|---|
| [e138de] | 487 | return true; | 
|---|
|  | 488 | }; | 
|---|
|  | 489 |  | 
|---|
|  | 490 | /** Store force indices, i.e. the connection between the nuclear index in the total molecule config and the respective atom in fragment config. | 
|---|
| [35b698] | 491 | * \param &path path to file | 
|---|
| [d4d7a1] | 492 | * \param SortIndex Index to map from the BFS labeling to the sequence how of Ion_Type in the config | 
|---|
| [e138de] | 493 | * \return true - file written successfully, false - writing failed | 
|---|
|  | 494 | */ | 
|---|
| [dcbb5d] | 495 | bool MoleculeListClass::StoreForcesFile(std::string &path, const SortIndex_t &SortIndex) | 
|---|
| [e138de] | 496 | { | 
|---|
|  | 497 | bool status = true; | 
|---|
| [35b698] | 498 | string filename(path); | 
|---|
|  | 499 | filename += FORCESFILE; | 
|---|
|  | 500 | ofstream ForcesFile(filename.c_str()); | 
|---|
| [ead4e6] | 501 | periodentafel *periode=World::getInstance().getPeriode(); | 
|---|
| [e138de] | 502 |  | 
|---|
|  | 503 | // open file for the force factors | 
|---|
| [47d041] | 504 | LOG(1, "Saving  force factors ... "); | 
|---|
| [35b698] | 505 | if (!ForcesFile.fail()) { | 
|---|
| [e138de] | 506 | //output << prefix << "Forces" << endl; | 
|---|
|  | 507 | for (MoleculeList::iterator ListRunner = ListOfMolecules.begin(); ListRunner != ListOfMolecules.end(); ListRunner++) { | 
|---|
| [ead4e6] | 508 | periodentafel::const_iterator elemIter; | 
|---|
|  | 509 | for(elemIter=periode->begin();elemIter!=periode->end();++elemIter){ | 
|---|
| [389cc8] | 510 | if ((*ListRunner)->hasElement((*elemIter).first)) { // if this element got atoms | 
|---|
| [a7b761b] | 511 | for(molecule::iterator atomIter = (*ListRunner)->begin(); atomIter !=(*ListRunner)->end();++atomIter){ | 
|---|
| [ed26ae] | 512 | if ((*atomIter)->getType()->getAtomicNumber() == (*elemIter).first) { | 
|---|
| [a7b761b] | 513 | if (((*atomIter)->GetTrueFather() != NULL) && ((*atomIter)->GetTrueFather() != (*atomIter))) {// if there is a rea | 
|---|
| [d1ba0d] | 514 | const atomId_t fatherid = (*atomIter)->GetTrueFather()->getId(); | 
|---|
| [dcbb5d] | 515 | ForcesFile << SortIndex.find(fatherid) << "\t"; | 
|---|
| [e138de] | 516 | } else | 
|---|
|  | 517 | // otherwise a -1 to indicate an added saturation hydrogen | 
|---|
|  | 518 | ForcesFile << "-1\t"; | 
|---|
|  | 519 | } | 
|---|
|  | 520 | } | 
|---|
|  | 521 | } | 
|---|
|  | 522 | } | 
|---|
|  | 523 | ForcesFile << endl; | 
|---|
|  | 524 | } | 
|---|
|  | 525 | ForcesFile.close(); | 
|---|
| [47d041] | 526 | LOG(1, "done."); | 
|---|
| [e138de] | 527 | } else { | 
|---|
|  | 528 | status = false; | 
|---|
| [47d041] | 529 | LOG(1, "failed to open file " << filename << "."); | 
|---|
| [e138de] | 530 | } | 
|---|
|  | 531 | ForcesFile.close(); | 
|---|
|  | 532 |  | 
|---|
|  | 533 | return status; | 
|---|
|  | 534 | }; | 
|---|
|  | 535 |  | 
|---|
|  | 536 | /** Writes a config file for each molecule in the given \a **FragmentList. | 
|---|
|  | 537 | * \param *out output stream for debugging | 
|---|
| [35b698] | 538 | * \param &prefix path and prefix to the fragment config files | 
|---|
| [d4d7a1] | 539 | * \param SortIndex Index to map from the BFS labeling to the sequence how of Ion_Type in the config | 
|---|
| [babcc1] | 540 | * \param type desired type to store | 
|---|
| [e138de] | 541 | * \return true - success (each file was written), false - something went wrong. | 
|---|
|  | 542 | */ | 
|---|
| [e554d0] | 543 | bool MoleculeListClass::OutputConfigForListOfFragments(std::string &prefix, ParserTypes type) | 
|---|
| [e138de] | 544 | { | 
|---|
|  | 545 | ofstream outputFragment; | 
|---|
| [35b698] | 546 | std::string FragmentName; | 
|---|
| [e138de] | 547 | bool result = true; | 
|---|
|  | 548 | bool intermediateResult = true; | 
|---|
|  | 549 | Vector BoxDimension; | 
|---|
|  | 550 | char *FragmentNumber = NULL; | 
|---|
|  | 551 | int FragmentCounter = 0; | 
|---|
|  | 552 | ofstream output; | 
|---|
| [cca9ef] | 553 | RealSpaceMatrix cell_size = World::getInstance().getDomain().getM(); | 
|---|
|  | 554 | RealSpaceMatrix cell_size_backup = cell_size; | 
|---|
| [3c58f8] | 555 | int count=0; | 
|---|
| [e138de] | 556 |  | 
|---|
|  | 557 | // store the fragments as config and as xyz | 
|---|
|  | 558 | for (MoleculeList::iterator ListRunner = ListOfMolecules.begin(); ListRunner != ListOfMolecules.end(); ListRunner++) { | 
|---|
|  | 559 | // correct periodic | 
|---|
| [3c58f8] | 560 | if ((*ListRunner)->ScanForPeriodicCorrection()) { | 
|---|
|  | 561 | count++; | 
|---|
|  | 562 | } | 
|---|
| [e138de] | 563 |  | 
|---|
| [efe516] | 564 | { | 
|---|
|  | 565 | // list atoms in fragment for debugging | 
|---|
|  | 566 | std::stringstream output; | 
|---|
|  | 567 | output << "Contained atoms: "; | 
|---|
|  | 568 | for (molecule::const_iterator iter = (*ListRunner)->begin(); iter != (*ListRunner)->end(); ++iter) { | 
|---|
|  | 569 | output << (*iter)->getName() << " "; | 
|---|
|  | 570 | } | 
|---|
|  | 571 | LOG(2, output.str()); | 
|---|
|  | 572 | } | 
|---|
| [e138de] | 573 |  | 
|---|
| [efe516] | 574 | { | 
|---|
| [66dc36] | 575 | //      // center on edge | 
|---|
|  | 576 | //      (*ListRunner)->CenterEdge(&BoxDimension); | 
|---|
|  | 577 | //      for (int k = 0; k < NDIM; k++)  // if one edge is to small, set at least to 1 angstroem | 
|---|
|  | 578 | //        if (BoxDimension[k] < 1.) | 
|---|
|  | 579 | //          BoxDimension[k] += 1.; | 
|---|
|  | 580 | //      (*ListRunner)->SetBoxDimension(&BoxDimension); // update Box of atoms by boundary | 
|---|
|  | 581 | //      for (int k = 0; k < NDIM; k++) { | 
|---|
|  | 582 | //        BoxDimension[k] = 2.5 * (World::getInstance().getConfig()->GetIsAngstroem() ? 1. : 1. / AtomicLengthToAngstroem); | 
|---|
|  | 583 | //        cell_size.at(k,k) = BoxDimension[k] * 2.; | 
|---|
|  | 584 | //      } | 
|---|
|  | 585 | //      World::getInstance().setDomain(cell_size); | 
|---|
|  | 586 | //      (*ListRunner)->Translate(&BoxDimension); | 
|---|
| [babcc1] | 587 |  | 
|---|
|  | 588 | // output file | 
|---|
|  | 589 | std::vector<atom *> atoms; | 
|---|
| [59fff1] | 590 | // TODO: Convert iterator to const_iterator when FormatParserStorage::save() has vector<const atom *> | 
|---|
|  | 591 | // We need iterator here because FormatParserStorage::save() need vector<atom *> not const refs. | 
|---|
|  | 592 | for (molecule::iterator iter = (*ListRunner)->begin(); iter != (*ListRunner)->end(); ++iter) { | 
|---|
| [babcc1] | 593 | atoms.push_back(*iter); | 
|---|
|  | 594 | } | 
|---|
| [efe516] | 595 | FragmentNumber = FixedDigitNumber(ListOfMolecules.size(), FragmentCounter++); | 
|---|
| [babcc1] | 596 | FragmentName = prefix + FragmentNumber + "." + FormatParserStorage::getInstance().getSuffixFromType(type); | 
|---|
| [efe516] | 597 | outputFragment.open(FragmentName.c_str(), ios::out); | 
|---|
|  | 598 | std::stringstream output; | 
|---|
|  | 599 | output << "Saving bond fragment No. " << FragmentNumber << "/" << FragmentCounter - 1 << " as XYZ ... "; | 
|---|
| [babcc1] | 600 | if ((intermediateResult = FormatParserStorage::getInstance().save( | 
|---|
|  | 601 | outputFragment, | 
|---|
|  | 602 | FormatParserStorage::getInstance().getSuffixFromType(type), | 
|---|
|  | 603 | atoms))) | 
|---|
| [efe516] | 604 | output << " done."; | 
|---|
|  | 605 | else | 
|---|
|  | 606 | output << " failed."; | 
|---|
|  | 607 | LOG(3, output.str()); | 
|---|
| [babcc1] | 608 | delete[](FragmentNumber); | 
|---|
|  | 609 |  | 
|---|
| [efe516] | 610 | result = result && intermediateResult; | 
|---|
|  | 611 | outputFragment.close(); | 
|---|
|  | 612 | outputFragment.clear(); | 
|---|
| [e138de] | 613 | } | 
|---|
|  | 614 | } | 
|---|
| [efe516] | 615 | LOG(0, "STATUS: done."); | 
|---|
| [e138de] | 616 |  | 
|---|
|  | 617 | // printing final number | 
|---|
| [efe516] | 618 | LOG(2, "INFO: Final number of fragments: " << FragmentCounter << "."); | 
|---|
| [e138de] | 619 |  | 
|---|
| [3c58f8] | 620 | // printing final number | 
|---|
| [efe516] | 621 | LOG(2, "INFO: For " << count << " fragments periodic correction would have been necessary."); | 
|---|
| [3c58f8] | 622 |  | 
|---|
| [b34306] | 623 | // restore cell_size | 
|---|
| [84c494] | 624 | World::getInstance().setDomain(cell_size_backup); | 
|---|
| [e138de] | 625 |  | 
|---|
|  | 626 | return result; | 
|---|
|  | 627 | }; | 
|---|
|  | 628 |  | 
|---|
|  | 629 | /** Counts the number of molecules with the molecule::ActiveFlag set. | 
|---|
| [1907a7] | 630 | * \return number of molecules with ActiveFlag set to true. | 
|---|
| [e138de] | 631 | */ | 
|---|
|  | 632 | int MoleculeListClass::NumberOfActiveMolecules() | 
|---|
|  | 633 | { | 
|---|
|  | 634 | int count = 0; | 
|---|
|  | 635 | for (MoleculeList::iterator ListRunner = ListOfMolecules.begin(); ListRunner != ListOfMolecules.end(); ListRunner++) | 
|---|
|  | 636 | count += ((*ListRunner)->ActiveFlag ? 1 : 0); | 
|---|
|  | 637 | return count; | 
|---|
|  | 638 | }; | 
|---|
|  | 639 |  | 
|---|
| [568be7] | 640 | /** Count all atoms in each molecule. | 
|---|
|  | 641 | * \return number of atoms in the MoleculeListClass. | 
|---|
|  | 642 | * TODO: the inner loop should be done by some (double molecule::CountAtom()) function | 
|---|
|  | 643 | */ | 
|---|
|  | 644 | int MoleculeListClass::CountAllAtoms() const | 
|---|
|  | 645 | { | 
|---|
|  | 646 | int AtomNo = 0; | 
|---|
|  | 647 | for (MoleculeList::const_iterator MolWalker = ListOfMolecules.begin(); MolWalker != ListOfMolecules.end(); MolWalker++) { | 
|---|
| [9879f6] | 648 | AtomNo += (*MolWalker)->size(); | 
|---|
| [568be7] | 649 | } | 
|---|
|  | 650 | return AtomNo; | 
|---|
|  | 651 | } | 
|---|