- Timestamp:
- Apr 17, 2013, 6:56:54 PM (12 years ago)
- Branches:
- 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
- Children:
- 326000
- Parents:
- 4b62d3
- git-author:
- Frederik Heber <heber@…> (03/19/13 11:04:34)
- git-committer:
- Frederik Heber <heber@…> (04/17/13 18:56:54)
- Location:
- src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Atom/atom_bondedparticle.cpp
r4b62d3 r378fc6b 346 346 } 347 347 348 /** Corrects the bond degree by one at most if necessary.349 * \return number of corrections done350 */351 int BondedParticle::CorrectBondDegree()352 {353 OBSERVE;354 NOTIFY(AtomObservable::BondDegreeChanged);355 int NoBonds = 0;356 int OtherNoBonds = 0;357 int FalseBondDegree = 0;358 int CandidateDeltaNoBonds = -1;359 atom *OtherWalker = NULL;360 bond::ptr CandidateBond;361 362 NoBonds = CountBonds();363 LOG(3, "Walker " << *this << ": " << (int)this->getType()->getNoValenceOrbitals() << " > " << NoBonds << "?");364 const int DeltaNoBonds = (int)(getType()->getNoValenceOrbitals()) - NoBonds;365 if (DeltaNoBonds > 0) { // we have a mismatch, check all bonding partners for mismatch366 const BondList& ListOfBonds = getListOfBonds();367 for (BondList::const_iterator Runner = ListOfBonds.begin(); Runner != ListOfBonds.end(); (++Runner)) {368 OtherWalker = (*Runner)->GetOtherAtom(this);369 OtherNoBonds = OtherWalker->CountBonds();370 const int OtherDeltaNoBonds = (int)(OtherWalker->getType()->getNoValenceOrbitals()) - OtherNoBonds;371 LOG(3, "OtherWalker " << *OtherWalker << ": " << (int)OtherWalker->getType()->getNoValenceOrbitals() << " > " << OtherNoBonds << "?");372 if (OtherDeltaNoBonds > 0) { // check if possible candidate373 const BondList& OtherListOfBonds = OtherWalker->getListOfBonds();374 if ((CandidateBond == NULL)375 || (ListOfBonds.size() > OtherListOfBonds.size()) // pick the one with fewer number of bonds first376 || ((CandidateDeltaNoBonds < 0) || (CandidateDeltaNoBonds > OtherDeltaNoBonds)) ) // pick the one closer to fulfilling its valence first377 {378 CandidateDeltaNoBonds = OtherDeltaNoBonds;379 CandidateBond = (*Runner);380 LOG(3, "New candidate is " << *CandidateBond << ".");381 }382 }383 }384 if ((CandidateBond != NULL)) {385 CandidateBond->setDegree(CandidateBond->getDegree()+1);386 LOG(2, "Increased bond degree for bond " << *CandidateBond << ".");387 } else {388 ELOG(2, "Could not find correct degree for atom " << *this << ".");389 FalseBondDegree++;390 }391 }392 return FalseBondDegree;393 };394 395 /** Sets the weight of all connected bonds to one.396 */397 void BondedParticle::resetBondDegree()398 {399 OBSERVE;400 NOTIFY(BondedParticle::BondDegreeChanged);401 for (std::vector<BondList>::iterator Runner = ListOfBonds.begin();402 Runner != ListOfBonds.end();403 ++Runner)404 for (BondList::iterator BondRunner = (*Runner).begin();405 BondRunner != (*Runner).end();406 ++BondRunner)407 (*BondRunner)->setDegree(1);408 };409 410 348 /** Counts the number of bonds weighted by bond::BondDegree. 411 349 * @param _step time step to access -
src/Atom/atom_bondedparticle.hpp
r4b62d3 r378fc6b 54 54 void ClearBondsAtStep(const unsigned int _step); 55 55 int CountBonds() const; 56 int CorrectBondDegree();57 void resetBondDegree();58 56 void OutputBondOfAtom(std::ostream &ost) const; 59 57 void OutputBonds(ofstream * const BondFile) const; -
src/Atom/atom_observable.hpp
r4b62d3 r378fc6b 35 35 BondsAdded, // new bonds have appeared on ListOfBonds 36 36 BondsRemoved, // new bonds have appeared on ListOfBonds 37 BondDegreeChanged, // bond degree has changed38 37 NotificationType_MAX // denotes the maximum of available notification types 39 38 }; -
src/Graph/BondGraph.cpp
r4b62d3 r378fc6b 224 224 return true; 225 225 } 226 227 /** Corrects the bond degree by one at most if necessary. 228 * \return number of corrections done 229 */ 230 int BondGraph::CorrectBondDegree(atom *_atom) const 231 { 232 int NoBonds = 0; 233 int OtherNoBonds = 0; 234 int FalseBondDegree = 0; 235 int CandidateDeltaNoBonds = -1; 236 atom *OtherWalker = NULL; 237 bond::ptr CandidateBond; 238 239 NoBonds = _atom->CountBonds(); 240 LOG(3, "Walker " << *_atom << ": " << (int)_atom->getType()->getNoValenceOrbitals() << " > " << NoBonds << "?"); 241 const int DeltaNoBonds = (int)(_atom->getType()->getNoValenceOrbitals()) - NoBonds; 242 if (DeltaNoBonds > 0) { // we have a mismatch, check all bonding partners for mismatch 243 const BondList& ListOfBonds = _atom->getListOfBonds(); 244 for (BondList::const_iterator Runner = ListOfBonds.begin(); Runner != ListOfBonds.end(); (++Runner)) { 245 OtherWalker = (*Runner)->GetOtherAtom(_atom); 246 OtherNoBonds = OtherWalker->CountBonds(); 247 const int OtherDeltaNoBonds = (int)(OtherWalker->getType()->getNoValenceOrbitals()) - OtherNoBonds; 248 LOG(3, "OtherWalker " << *OtherWalker << ": " << (int)OtherWalker->getType()->getNoValenceOrbitals() << " > " << OtherNoBonds << "?"); 249 if (OtherDeltaNoBonds > 0) { // check if possible candidate 250 const BondList& OtherListOfBonds = OtherWalker->getListOfBonds(); 251 if ((CandidateBond == NULL) 252 || (ListOfBonds.size() > OtherListOfBonds.size()) // pick the one with fewer number of bonds first 253 || ((CandidateDeltaNoBonds < 0) || (CandidateDeltaNoBonds > OtherDeltaNoBonds)) ) // pick the one closer to fulfilling its valence first 254 { 255 CandidateDeltaNoBonds = OtherDeltaNoBonds; 256 CandidateBond = (*Runner); 257 LOG(3, "New candidate is " << *CandidateBond << "."); 258 } 259 } 260 } 261 if ((CandidateBond != NULL)) { 262 CandidateBond->setDegree(CandidateBond->getDegree()+1); 263 LOG(2, "Increased bond degree for bond " << *CandidateBond << "."); 264 } else { 265 ELOG(2, "Could not find correct degree for atom " << *_atom << "."); 266 FalseBondDegree++; 267 } 268 } 269 return FalseBondDegree; 270 }; 271 272 /** Sets the weight of all connected bonds to one. 273 */ 274 void BondGraph::resetBondDegree(atom *_atom) const 275 { 276 const BondList &ListOfBonds = _atom->getListOfBonds(); 277 for (BondList::const_iterator BondRunner = ListOfBonds.begin(); 278 BondRunner != ListOfBonds.end(); 279 ++BondRunner) 280 (*BondRunner)->setDegree(1); 281 }; 282 -
src/Graph/BondGraph.hpp
r4b62d3 r378fc6b 478 478 // reset bond degrees 479 479 for(iterator_type AtomRunner = Set.begin(); AtomRunner != Set.end(); ++AtomRunner) { 480 (*AtomRunner)->resetBondDegree();480 resetBondDegree(*AtomRunner); 481 481 } 482 482 } … … 499 499 No=0; 500 500 for(iterator_type AtomRunner = Set.begin(); AtomRunner != Set.end(); ++AtomRunner) { 501 No+= (*AtomRunner)->CorrectBondDegree();501 No+=CorrectBondDegree(*AtomRunner); 502 502 } 503 503 } while (OldNo != No); … … 511 511 return !(*this == other); 512 512 } 513 514 int CorrectBondDegree(atom *_atom) const; 515 516 void resetBondDegree(atom *_atom) const; 513 517 514 518 private:
Note:
See TracChangeset
for help on using the changeset viewer.