| [b70721] | 1 | /*
 | 
|---|
 | 2 |  * bondgraph.cpp
 | 
|---|
 | 3 |  *
 | 
|---|
 | 4 |  *  Created on: Oct 29, 2009
 | 
|---|
 | 5 |  *      Author: heber
 | 
|---|
 | 6 |  */
 | 
|---|
 | 7 | 
 | 
|---|
 | 8 | #include <iostream>
 | 
|---|
 | 9 | 
 | 
|---|
 | 10 | #include "atom.hpp"
 | 
|---|
| [1cbf47] | 11 | #include "bond.hpp"
 | 
|---|
| [b70721] | 12 | #include "bondgraph.hpp"
 | 
|---|
 | 13 | #include "element.hpp"
 | 
|---|
| [244a84] | 14 | #include "info.hpp"
 | 
|---|
| [e138de] | 15 | #include "log.hpp"
 | 
|---|
| [b70721] | 16 | #include "molecule.hpp"
 | 
|---|
 | 17 | #include "parser.hpp"
 | 
|---|
| [ae38fb] | 18 | #include "periodentafel.hpp"
 | 
|---|
| [b70721] | 19 | #include "vector.hpp"
 | 
|---|
 | 20 | 
 | 
|---|
 | 21 | /** Constructor of class BondGraph.
 | 
|---|
 | 22 |  * This classes contains typical bond lengths and thus may be used to construct a bond graph for a given molecule.
 | 
|---|
 | 23 |  */
 | 
|---|
| [ae38fb] | 24 | BondGraph::BondGraph(bool IsA) : BondLengthMatrix(NULL), max_distance(0), IsAngstroem(IsA)
 | 
|---|
| [b70721] | 25 | {
 | 
|---|
 | 26 | };
 | 
|---|
 | 27 | 
 | 
|---|
 | 28 | /** Destructor of class BondGraph.
 | 
|---|
 | 29 |  */
 | 
|---|
 | 30 | BondGraph::~BondGraph()
 | 
|---|
 | 31 | {
 | 
|---|
 | 32 |   if (BondLengthMatrix != NULL) {
 | 
|---|
 | 33 |     delete(BondLengthMatrix);
 | 
|---|
 | 34 |   }
 | 
|---|
 | 35 | };
 | 
|---|
 | 36 | 
 | 
|---|
 | 37 | /** Parses the bond lengths in a given file and puts them int a matrix form.
 | 
|---|
| [34e0013] | 38 |  * Allocates \a MatrixContainer for BondGraph::BondLengthMatrix, using MatrixContainer::ParseMatrix(),
 | 
|---|
| [b998c3] | 39 |  * but only if parsing is successful. Otherwise variable is left as NULL.
 | 
|---|
| [b70721] | 40 |  * \param *out output stream for debugging
 | 
|---|
 | 41 |  * \param filename file with bond lengths to parse
 | 
|---|
 | 42 |  * \return true - success in parsing file, false - failed to parse the file
 | 
|---|
 | 43 |  */
 | 
|---|
| [e138de] | 44 | bool BondGraph::LoadBondLengthTable(const string &filename)
 | 
|---|
| [b70721] | 45 | {
 | 
|---|
| [244a84] | 46 |   Info FunctionInfo(__func__);
 | 
|---|
| [b70721] | 47 |   bool status = true;
 | 
|---|
| [34e0013] | 48 |   MatrixContainer *TempContainer = NULL;
 | 
|---|
| [b70721] | 49 | 
 | 
|---|
 | 50 |   // allocate MatrixContainer
 | 
|---|
 | 51 |   if (BondLengthMatrix != NULL) {
 | 
|---|
| [a67d19] | 52 |     DoLog(1) && (Log() << Verbose(1) << "MatrixContainer for Bond length already present, removing." << endl);
 | 
|---|
| [b70721] | 53 |     delete(BondLengthMatrix);
 | 
|---|
 | 54 |   }
 | 
|---|
| [34e0013] | 55 |   TempContainer = new MatrixContainer;
 | 
|---|
| [b70721] | 56 | 
 | 
|---|
 | 57 |   // parse in matrix
 | 
|---|
| [a26ca5] | 58 |   if ((status = TempContainer->ParseMatrix(filename.c_str(), 0, 1, 0))) {
 | 
|---|
| [a67d19] | 59 |     DoLog(1) && (Log() << Verbose(1) << "Parsing bond length matrix successful." << endl);
 | 
|---|
| [244a84] | 60 |   } else {
 | 
|---|
| [58ed4a] | 61 |     DoeLog(1) && (eLog()<< Verbose(1) << "Parsing bond length matrix failed." << endl);
 | 
|---|
| [244a84] | 62 |   }
 | 
|---|
| [b70721] | 63 | 
 | 
|---|
 | 64 |   // find greatest distance
 | 
|---|
 | 65 |   max_distance=0;
 | 
|---|
| [34e0013] | 66 |   if (status) {
 | 
|---|
 | 67 |     for(int i=0;i<TempContainer->RowCounter[0];i++)
 | 
|---|
 | 68 |       for(int j=i;j<TempContainer->ColumnCounter[0];j++)
 | 
|---|
 | 69 |         if (TempContainer->Matrix[0][i][j] > max_distance)
 | 
|---|
 | 70 |           max_distance = TempContainer->Matrix[0][i][j];
 | 
|---|
 | 71 |   }
 | 
|---|
| [b70721] | 72 | 
 | 
|---|
| [34e0013] | 73 |   if (status) // set to not NULL only if matrix was parsed
 | 
|---|
 | 74 |     BondLengthMatrix = TempContainer;
 | 
|---|
 | 75 |   else {
 | 
|---|
 | 76 |     BondLengthMatrix = NULL;
 | 
|---|
 | 77 |     delete(TempContainer);
 | 
|---|
 | 78 |   }
 | 
|---|
| [b70721] | 79 |   return status;
 | 
|---|
 | 80 | };
 | 
|---|
 | 81 | 
 | 
|---|
 | 82 | /** Parses the bond lengths in a given file and puts them int a matrix form.
 | 
|---|
 | 83 |  * \param *out output stream for debugging
 | 
|---|
 | 84 |  * \param *mol molecule with atoms
 | 
|---|
 | 85 |  * \return true - success, false - failed to construct bond structure
 | 
|---|
 | 86 |  */
 | 
|---|
| [e138de] | 87 | bool BondGraph::ConstructBondGraph(molecule * const mol)
 | 
|---|
| [b70721] | 88 | {
 | 
|---|
| [1cbf47] | 89 |   Info FunctionInfo(__func__);
 | 
|---|
| [bd6bfa] | 90 |   bool status = true;
 | 
|---|
| [b70721] | 91 | 
 | 
|---|
| [9879f6] | 92 |   if (mol->empty()) // only construct if molecule is not empty
 | 
|---|
| [34e0013] | 93 |     return false;
 | 
|---|
 | 94 | 
 | 
|---|
| [3c349b] | 95 |   if (BondLengthMatrix == NULL) { // no bond length matrix parsed?
 | 
|---|
| [e138de] | 96 |     SetMaxDistanceToMaxOfCovalentRadii(mol);
 | 
|---|
 | 97 |     mol->CreateAdjacencyList(max_distance, IsAngstroem, &BondGraph::CovalentMinMaxDistance, this);
 | 
|---|
| [3c349b] | 98 |   } else
 | 
|---|
| [e138de] | 99 |     mol->CreateAdjacencyList(max_distance, IsAngstroem, &BondGraph::BondLengthMatrixMinMaxDistance, this);
 | 
|---|
| [b70721] | 100 | 
 | 
|---|
 | 101 |   return status;
 | 
|---|
 | 102 | };
 | 
|---|
 | 103 | 
 | 
|---|
 | 104 | /** Returns the entry for a given index pair.
 | 
|---|
 | 105 |  * \param firstelement index/atom number of first element (row index)
 | 
|---|
 | 106 |  * \param secondelement index/atom number of second element (column index)
 | 
|---|
 | 107 |  * \note matrix is of course symmetric.
 | 
|---|
 | 108 |  */
 | 
|---|
 | 109 | double BondGraph::GetBondLength(int firstZ, int secondZ)
 | 
|---|
 | 110 | {
 | 
|---|
| [34e0013] | 111 |   if (BondLengthMatrix == NULL)
 | 
|---|
 | 112 |     return( -1. );
 | 
|---|
 | 113 |   else
 | 
|---|
 | 114 |     return (BondLengthMatrix->Matrix[0][firstZ][secondZ]);
 | 
|---|
| [b70721] | 115 | };
 | 
|---|
 | 116 | 
 | 
|---|
| [3c349b] | 117 | /** Determines the maximum of all element::CovalentRadius for elements present in \a *mol.
 | 
|---|
| [ae38fb] | 118 |  * \param *out output stream for debugging
 | 
|---|
| [3c349b] | 119 |  * \param *mol molecule with all atoms and their respective elements.
 | 
|---|
| [ae38fb] | 120 |  */
 | 
|---|
| [e138de] | 121 | double BondGraph::SetMaxDistanceToMaxOfCovalentRadii(const molecule * const mol)
 | 
|---|
| [ae38fb] | 122 | {
 | 
|---|
| [1cbf47] | 123 |   Info FunctionInfo(__func__);
 | 
|---|
| [ae38fb] | 124 |   max_distance = 0.;
 | 
|---|
 | 125 | 
 | 
|---|
| [9879f6] | 126 |   for (molecule::const_iterator iter = mol->begin(); iter != mol->end(); ++iter) {
 | 
|---|
 | 127 |     if ((*iter)->type->CovalentRadius > max_distance)
 | 
|---|
 | 128 |       max_distance = (*iter)->type->CovalentRadius;
 | 
|---|
| [ae38fb] | 129 |   }
 | 
|---|
 | 130 |   max_distance *= 2.;
 | 
|---|
 | 131 | 
 | 
|---|
 | 132 |   return max_distance;
 | 
|---|
 | 133 | };
 | 
|---|
 | 134 | 
 | 
|---|
| [b70721] | 135 | /** Returns bond criterion for given pair based on covalent radius.
 | 
|---|
 | 136 |  * \param *Walker first BondedParticle
 | 
|---|
 | 137 |  * \param *OtherWalker second BondedParticle
 | 
|---|
 | 138 |  * \param &MinDistance lower bond bound on return
 | 
|---|
 | 139 |  * \param &MaxDistance upper bond bound on return
 | 
|---|
 | 140 |  * \param IsAngstroem whether units are in angstroem or bohr radii
 | 
|---|
 | 141 |  */
 | 
|---|
 | 142 | void BondGraph::CovalentMinMaxDistance(BondedParticle * const Walker, BondedParticle * const OtherWalker, double &MinDistance, double &MaxDistance, bool IsAngstroem)
 | 
|---|
 | 143 | {
 | 
|---|
 | 144 |   MinDistance = OtherWalker->type->CovalentRadius + Walker->type->CovalentRadius;
 | 
|---|
 | 145 |   MinDistance *= (IsAngstroem) ? 1. : 1. / AtomicLengthToAngstroem;
 | 
|---|
 | 146 |   MaxDistance = MinDistance + BONDTHRESHOLD;
 | 
|---|
 | 147 |   MinDistance -= BONDTHRESHOLD;
 | 
|---|
 | 148 | };
 | 
|---|
 | 149 | 
 | 
|---|
 | 150 | /** Returns bond criterion for given pair based on a bond length matrix.
 | 
|---|
 | 151 |  * The matrix should be contained in \a this BondGraph and contain an element-
 | 
|---|
 | 152 |  * to-element length.
 | 
|---|
 | 153 |  * \param *Walker first BondedParticle
 | 
|---|
 | 154 |  * \param *OtherWalker second BondedParticle
 | 
|---|
 | 155 |  * \param &MinDistance lower bond bound on return
 | 
|---|
 | 156 |  * \param &MaxDistance upper bond bound on return
 | 
|---|
 | 157 |  * \param IsAngstroem whether units are in angstroem or bohr radii
 | 
|---|
 | 158 |  */
 | 
|---|
 | 159 | void BondGraph::BondLengthMatrixMinMaxDistance(BondedParticle * const Walker, BondedParticle * const OtherWalker, double &MinDistance, double &MaxDistance, bool IsAngstroem)
 | 
|---|
 | 160 | {
 | 
|---|
| [34e0013] | 161 |   if (BondLengthMatrix == NULL) {// safety measure if no matrix has been parsed yet
 | 
|---|
| [58ed4a] | 162 |     DoeLog(2) && (eLog()<< Verbose(2) << "BondLengthMatrixMinMaxDistance() called without having parsed the bond length matrix yet!" << endl);
 | 
|---|
| [b21a64] | 163 |     CovalentMinMaxDistance(Walker, OtherWalker, MinDistance, MaxDistance, IsAngstroem);
 | 
|---|
 | 164 |   } else {
 | 
|---|
 | 165 |     MinDistance = GetBondLength(Walker->type->Z-1, OtherWalker->type->Z-1);
 | 
|---|
 | 166 |     MinDistance *= (IsAngstroem) ? 1. : 1. / AtomicLengthToAngstroem;
 | 
|---|
 | 167 |     MaxDistance = MinDistance + BONDTHRESHOLD;
 | 
|---|
 | 168 |     MinDistance -= BONDTHRESHOLD;
 | 
|---|
 | 169 |   }
 | 
|---|
| [b70721] | 170 | };
 | 
|---|