source: src/molecule_graph.cpp@ 50e4e5

Action_Thermostats Add_AtomRandomPerturbation Add_FitFragmentPartialChargesAction Add_RotateAroundBondAction Add_SelectAtomByNameAction Added_ParseSaveFragmentResults AddingActions_SaveParseParticleParameters Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_ParticleName_to_Atom Adding_StructOpt_integration_tests AtomFragments Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.5.4 Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator CombiningParticlePotentialParsing Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_BoundInBox_CenterInBox_MoleculeActions Fix_ChargeSampling_PBC Fix_ChronosMutex Fix_FitPartialCharges Fix_FitPotential_needs_atomicnumbers Fix_ForceAnnealing Fix_IndependentFragmentGrids Fix_ParseParticles Fix_ParseParticles_split_forward_backward_Actions Fix_PopActions Fix_QtFragmentList_sorted_selection Fix_Restrictedkeyset_FragmentMolecule Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns Fix_fitting_potentials Fixes ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion FragmentAction_writes_AtomFragments FragmentMolecule_checks_bonddegrees GeometryObjects Gui_Fixes Gui_displays_atomic_force_velocity ImplicitCharges IndependentFragmentGrids IndependentFragmentGrids_IndividualZeroInstances IndependentFragmentGrids_IntegrationTest IndependentFragmentGrids_Sole_NN_Calculation JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix MoreRobust_FragmentAutomation ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PdbParser_setsAtomName PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks Rewrite_FitPartialCharges RotateToPrincipalAxisSystem_UndoRedo SaturateAtoms_findBestMatching SaturateAtoms_singleDegree StoppableMakroAction Subpackage_CodePatterns Subpackage_JobMarket Subpackage_LinearAlgebra Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg Switchable_LogView ThirdParty_MPQC_rebuilt_buildsystem TrajectoryDependenant_MaxOrder TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps TremoloParser_setsAtomName Ubuntu_1604_changes stable
Last change on this file since 50e4e5 was 246e13, checked in by Frederik Heber <heber@…>, 13 years ago

Placed FragmentMolecule, FragmentBOSSANOVA and subfunctions into own class Fragmentation.

  • Property mode set to 100644
File size: 14.1 KB
Line 
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
8/*
9 * molecule_graph.cpp
10 *
11 * Created on: Oct 5, 2009
12 * Author: heber
13 */
14
15// include config.h
16#ifdef HAVE_CONFIG_H
17#include <config.h>
18#endif
19
20#include "CodePatterns/MemDebug.hpp"
21
22#include <stack>
23
24#include "atom.hpp"
25#include "Bond/bond.hpp"
26#include "Box.hpp"
27#include "CodePatterns/Assert.hpp"
28#include "CodePatterns/Info.hpp"
29#include "CodePatterns/Log.hpp"
30#include "CodePatterns/Verbose.hpp"
31#include "config.hpp"
32#include "Graph/DepthFirstSearchAnalysis.hpp"
33#include "Element/element.hpp"
34#include "Graph/BondGraph.hpp"
35#include "Helpers/defs.hpp"
36#include "Helpers/helpers.hpp"
37#include "LinearAlgebra/RealSpaceMatrix.hpp"
38#include "linkedcell.hpp"
39#include "molecule.hpp"
40#include "PointCloudAdaptor.hpp"
41#include "World.hpp"
42#include "WorldTime.hpp"
43
44
45/** Fills the bond structure of this chain list subgraphs that are derived from a complete \a *reference molecule.
46 * Calls this routine in each MoleculeLeafClass::next subgraph if it's not NULL.
47 * \param *reference reference molecule with the bond structure to be copied
48 * \param **&ListOfLocalAtoms Lookup table for this subgraph and index of each atom in \a *reference, may be NULL on start, then it is filled
49 * \param FreeList true - ***ListOfLocalAtoms is free'd before return, false - it is not
50 * \return true - success, false - failure
51 */
52bool molecule::FillBondStructureFromReference(const molecule * const reference, atom **&ListOfLocalAtoms, bool FreeList)
53{
54 atom *OtherWalker = NULL;
55 atom *Father = NULL;
56 bool status = true;
57 int AtomNo;
58
59 DoLog(1) && (Log() << Verbose(1) << "Begin of FillBondStructureFromReference." << endl);
60 // fill ListOfLocalAtoms if NULL was given
61 if (!FillListOfLocalAtoms(ListOfLocalAtoms, reference->getAtomCount())) {
62 DoLog(1) && (Log() << Verbose(1) << "Filling of ListOfLocalAtoms failed." << endl);
63 return false;
64 }
65
66 if (status) {
67 DoLog(1) && (Log() << Verbose(1) << "Creating adjacency list for molecule " << getName() << "." << endl);
68 // remove every bond from the list
69 for_each(begin(), end(),
70 boost::bind(&BondedParticle::ClearBondsAtStep,_1,WorldTime::getTime()));
71
72
73 for(molecule::const_iterator iter = begin(); iter != end(); ++iter) {
74 Father = (*iter)->GetTrueFather();
75 AtomNo = Father->getNr(); // global id of the current walker
76 const BondList& ListOfBonds = Father->getListOfBonds();
77 for (BondList::const_iterator Runner = ListOfBonds.begin();
78 Runner != ListOfBonds.end();
79 ++Runner) {
80 OtherWalker = ListOfLocalAtoms[(*Runner)->GetOtherAtom((*iter)->GetTrueFather())->getNr()]; // local copy of current bond partner of walker
81 if (OtherWalker != NULL) {
82 if (OtherWalker->getNr() > (*iter)->getNr())
83 AddBond((*iter), OtherWalker, (*Runner)->BondDegree);
84 } else {
85 DoLog(1) && (Log() << Verbose(1) << "OtherWalker = ListOfLocalAtoms[" << (*Runner)->GetOtherAtom((*iter)->GetTrueFather())->getNr() << "] is NULL!" << endl);
86 status = false;
87 }
88 }
89 }
90 }
91
92 if ((FreeList) && (ListOfLocalAtoms != NULL)) {
93 // free the index lookup list
94 delete[](ListOfLocalAtoms);
95 }
96 DoLog(1) && (Log() << Verbose(1) << "End of FillBondStructureFromReference." << endl);
97 return status;
98};
99
100/** Checks for presence of bonds within atom list.
101 * TODO: more sophisticated check for bond structure (e.g. connected subgraph, ...)
102 * \return true - bonds present, false - no bonds
103 */
104bool molecule::hasBondStructure() const
105{
106 for(molecule::const_iterator AtomRunner = begin(); AtomRunner != end(); ++AtomRunner) {
107 //LOG(0, "molecule::hasBondStructure() - checking bond list of atom " << (*AtomRunner)->getId() << ".");
108 const BondList& ListOfBonds = (*AtomRunner)->getListOfBonds();
109 if (!ListOfBonds.empty())
110 return true;
111 }
112 return false;
113}
114
115/** Prints a list of all bonds to \a *out.
116 */
117void molecule::OutputBondsList() const
118{
119 DoLog(1) && (Log() << Verbose(1) << endl << "From contents of bond chain list:");
120 for(molecule::const_iterator AtomRunner = molecule::begin(); AtomRunner != molecule::end(); ++AtomRunner) {
121 const BondList& ListOfBonds = (*AtomRunner)->getListOfBonds();
122 for(BondList::const_iterator BondRunner = ListOfBonds.begin();
123 BondRunner != ListOfBonds.end();
124 ++BondRunner)
125 if ((*BondRunner)->leftatom == *AtomRunner) {
126 DoLog(0) && (Log() << Verbose(0) << *(*BondRunner) << "\t" << endl);
127 }
128 }
129 DoLog(0) && (Log() << Verbose(0) << endl);
130}
131;
132
133
134/** Storing the bond structure of a molecule to file.
135 * Simply stores Atom::Nr and then the Atom::Nr of all bond partners per line.
136 * \param &filename name of file
137 * \param path path to file, defaults to empty
138 * \return true - file written successfully, false - writing failed
139 */
140bool molecule::StoreAdjacencyToFile(std::string filename, std::string path)
141{
142 ofstream AdjacencyFile;
143 string line;
144 bool status = true;
145
146 if (path != "")
147 line = path + "/" + filename;
148 else
149 line = filename;
150 AdjacencyFile.open(line.c_str(), ios::out);
151 DoLog(1) && (Log() << Verbose(1) << "Saving adjacency list ... " << endl);
152 if (AdjacencyFile.good()) {
153 AdjacencyFile << "m\tn" << endl;
154 for_each(atoms.begin(),atoms.end(),bind2nd(mem_fun(&atom::OutputAdjacency),&AdjacencyFile));
155 AdjacencyFile.close();
156 DoLog(1) && (Log() << Verbose(1) << "\t... done." << endl);
157 } else {
158 DoLog(1) && (Log() << Verbose(1) << "\t... failed to open file " << line << "." << endl);
159 status = false;
160 }
161
162 return status;
163}
164;
165
166/** Storing the bond structure of a molecule to file.
167 * Simply stores Atom::Nr and then the Atom::Nr of all bond partners, one per line.
168 * \param &filename name of file
169 * \param path path to file, defaults to empty
170 * \return true - file written successfully, false - writing failed
171 */
172bool molecule::StoreBondsToFile(std::string filename, std::string path)
173{
174 ofstream BondFile;
175 string line;
176 bool status = true;
177
178 if (path != "")
179 line = path + "/" + filename;
180 else
181 line = filename;
182 BondFile.open(line.c_str(), ios::out);
183 DoLog(1) && (Log() << Verbose(1) << "Saving adjacency list ... " << endl);
184 if (BondFile.good()) {
185 BondFile << "m\tn" << endl;
186 for_each(atoms.begin(),atoms.end(),bind2nd(mem_fun(&atom::OutputBonds),&BondFile));
187 BondFile.close();
188 DoLog(1) && (Log() << Verbose(1) << "\t... done." << endl);
189 } else {
190 DoLog(1) && (Log() << Verbose(1) << "\t... failed to open file " << line << "." << endl);
191 status = false;
192 }
193
194 return status;
195}
196;
197
198/** Adds a bond as a copy to a given one
199 * \param *left leftatom of new bond
200 * \param *right rightatom of new bond
201 * \param *CopyBond rest of fields in bond are copied from this
202 * \return pointer to new bond
203 */
204bond * molecule::CopyBond(atom *left, atom *right, bond *CopyBond)
205{
206 bond *Binder = AddBond(left, right, CopyBond->BondDegree);
207 Binder->Cyclic = CopyBond->Cyclic;
208 Binder->Type = CopyBond->Type;
209 return Binder;
210}
211;
212
213/** Fills a lookup list of father's Atom::nr -> atom for each subgraph.
214 * \param **&ListOfLocalAtoms Lookup table for each subgraph and index of each atom in global molecule, may be NULL on start, then it is filled
215 * \param GlobalAtomCount number of atoms in the complete molecule
216 * \return true - success, false - failure (ListOfLocalAtoms != NULL)
217 */
218bool molecule::FillListOfLocalAtoms(atom **&ListOfLocalAtoms, const int GlobalAtomCount)
219{
220 bool status = true;
221
222 if (ListOfLocalAtoms == NULL) { // allocate and fill list of this fragment/subgraph
223 status = status && CreateFatherLookupTable(ListOfLocalAtoms, GlobalAtomCount);
224 } else
225 return false;
226
227 return status;
228}
229
230
231/** Creates a lookup table for true father's Atom::Nr -> atom ptr.
232 * \param *start begin of list (STL iterator, i.e. first item)
233 * \paran *end end of list (STL iterator, i.e. one past last item)
234 * \param **Lookuptable pointer to return allocated lookup table (should be NULL on start)
235 * \param count optional predetermined size for table (otherwise we set the count to highest true father id)
236 * \return true - success, false - failure
237 */
238bool molecule::CreateFatherLookupTable(atom **&LookupTable, int count)
239{
240 bool status = true;
241 int AtomNo;
242
243 if (LookupTable != NULL) {
244 Log() << Verbose(0) << "Pointer for Lookup table is not NULL! Aborting ..." <<endl;
245 return false;
246 }
247
248 // count them
249 if (count == 0) {
250 for (molecule::iterator iter = begin(); iter != end(); ++iter) { // create a lookup table (Atom::Nr -> atom) used as a marker table lateron
251 count = (count < (*iter)->GetTrueFather()->getNr()) ? (*iter)->GetTrueFather()->getNr() : count;
252 }
253 }
254 if (count <= 0) {
255 Log() << Verbose(0) << "Count of lookup list is 0 or less." << endl;
256 return false;
257 }
258
259 // allocate and fill
260 LookupTable = new atom *[count];
261 if (LookupTable == NULL) {
262 eLog() << Verbose(0) << "LookupTable memory allocation failed!" << endl;
263 performCriticalExit();
264 status = false;
265 } else {
266 for (int i=0;i<count;i++)
267 LookupTable[i] = NULL;
268 for (molecule::iterator iter = begin(); iter != end(); ++iter) {
269 AtomNo = (*iter)->GetTrueFather()->getNr();
270 if ((AtomNo >= 0) && (AtomNo < count)) {
271 //*out << "Setting LookupTable[" << AtomNo << "] to " << *(*iter) << endl;
272 LookupTable[AtomNo] = (*iter);
273 } else {
274 Log() << Verbose(0) << "Walker " << *(*iter) << " exceeded range of nuclear ids [0, " << count << ")." << endl;
275 status = false;
276 break;
277 }
278 }
279 }
280
281 return status;
282};
283
284
285
286/** Corrects the nuclei position if the fragment was created over the cell borders.
287 * Scans all bonds, checks the distance, if greater than typical, we have a candidate for the correction.
288 * We remove the bond whereafter the graph probably separates. Then, we translate the one component periodically
289 * and re-add the bond. Looping on the distance check.
290 * \param *out ofstream for debugging messages
291 */
292bool molecule::ScanForPeriodicCorrection()
293{
294 bond *Binder = NULL;
295 //bond *OtherBinder = NULL;
296 atom *Walker = NULL;
297 atom *OtherWalker = NULL;
298 RealSpaceMatrix matrix = World::getInstance().getDomain().getM();
299 enum GraphEdge::Shading *ColorList = NULL;
300 double tmp;
301 //bool LastBond = true; // only needed to due list construct
302 Vector Translationvector;
303 //std::deque<atom *> *CompStack = NULL;
304 std::deque<atom *> *AtomStack = new std::deque<atom *>; // (getAtomCount());
305 bool flag = true;
306 BondGraph *BG = World::getInstance().getBondGraph();
307
308 DoLog(2) && (Log() << Verbose(2) << "Begin of ScanForPeriodicCorrection." << endl);
309
310 ColorList = new enum GraphEdge::Shading[getAtomCount()];
311 for (int i=0;i<getAtomCount();i++)
312 ColorList[i] = (enum GraphEdge::Shading)0;
313 if (flag) {
314 // remove bonds that are beyond bonddistance
315 Translationvector.Zero();
316 // scan all bonds
317 flag = false;
318 for(molecule::iterator AtomRunner = begin(); (!flag) && (AtomRunner != end()); ++AtomRunner) {
319 const BondList& ListOfBonds = (*AtomRunner)->getListOfBonds();
320 for(BondList::const_iterator BondRunner = ListOfBonds.begin();
321 (!flag) && (BondRunner != ListOfBonds.end());
322 ++BondRunner) {
323 Binder = (*BondRunner);
324 for (int i=NDIM;i--;) {
325 tmp = fabs(Binder->leftatom->at(i) - Binder->rightatom->at(i));
326 //Log() << Verbose(3) << "Checking " << i << "th distance of " << *Binder->leftatom << " to " << *Binder->rightatom << ": " << tmp << "." << endl;
327 const range<double> MinMaxDistance(
328 BG->getMinMaxDistance(Binder->leftatom, Binder->rightatom));
329 if (!MinMaxDistance.isInRange(tmp)) {
330 DoLog(2) && (Log() << Verbose(2) << "Correcting at bond " << *Binder << "." << endl);
331 flag = true;
332 break;
333 }
334 }
335 }
336 }
337 //if (flag) {
338 if (0) {
339 // create translation vector from their periodically modified distance
340 for (int i=NDIM;i--;) {
341 tmp = Binder->leftatom->at(i) - Binder->rightatom->at(i);
342 const range<double> MinMaxDistance(
343 BG->getMinMaxDistance(Binder->leftatom, Binder->rightatom));
344 if (fabs(tmp) > MinMaxDistance.last) // check against Min is not useful for components
345 Translationvector[i] = (tmp < 0) ? +1. : -1.;
346 }
347 Translationvector *= matrix;
348 //Log() << Verbose(3) << "Translation vector is ";
349 Log() << Verbose(0) << Translationvector << endl;
350 // apply to all atoms of first component via BFS
351 for (int i=getAtomCount();i--;)
352 ColorList[i] = GraphEdge::white;
353 AtomStack->push_front(Binder->leftatom);
354 while (!AtomStack->empty()) {
355 Walker = AtomStack->front();
356 AtomStack->pop_front();
357 //Log() << Verbose (3) << "Current Walker is: " << *Walker << "." << endl;
358 ColorList[Walker->getNr()] = GraphEdge::black; // mark as explored
359 *Walker += Translationvector; // translate
360 const BondList& ListOfBonds = Walker->getListOfBonds();
361 for (BondList::const_iterator Runner = ListOfBonds.begin();
362 Runner != ListOfBonds.end();
363 ++Runner) {
364 if ((*Runner) != Binder) {
365 OtherWalker = (*Runner)->GetOtherAtom(Walker);
366 if (ColorList[OtherWalker->getNr()] == GraphEdge::white) {
367 AtomStack->push_front(OtherWalker); // push if yet unexplored
368 }
369 }
370 }
371 }
372// // re-add bond
373// if (OtherBinder == NULL) { // is the only bond?
374// //Do nothing
375// } else {
376// if (!LastBond) {
377// link(Binder, OtherBinder); // no more implemented bond::previous ...
378// } else {
379// link(OtherBinder, Binder); // no more implemented bond::previous ...
380// }
381// }
382 } else {
383 DoLog(3) && (Log() << Verbose(3) << "No corrections for this fragment." << endl);
384 }
385 //delete(CompStack);
386 }
387 // free allocated space from ReturnFullMatrixforSymmetric()
388 delete(AtomStack);
389 delete[](ColorList);
390 DoLog(2) && (Log() << Verbose(2) << "End of ScanForPeriodicCorrection." << endl);
391
392 return flag;
393};
Note: See TracBrowser for help on using the repository browser.