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