Changeset 07d4b1 for src/Dynamics/ForceAnnealing.hpp
- Timestamp:
- Apr 10, 2018, 6:43:30 AM (7 years ago)
- Branches:
- AutomationFragmentation_failures, Candidate_v1.6.1, ChemicalSpaceEvaluator, Exclude_Hydrogens_annealWithBondGraph, ForceAnnealing_with_BondGraph, ForceAnnealing_with_BondGraph_contraction-expansion, Gui_displays_atomic_force_velocity, PythonUI_with_named_parameters, StoppableMakroAction, TremoloParser_IncreasedPrecision
- Children:
- 90050b
- Parents:
- f433ec
- git-author:
- Frederik Heber <frederik.heber@…> (08/02/17 20:25:57)
- git-committer:
- Frederik Heber <frederik.heber@…> (04/10/18 06:43:30)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Dynamics/ForceAnnealing.hpp
rf433ec r07d4b1 122 122 if (_UseBondgraph) 123 123 annealWithBondGraph(_CurrentTimeStep, _offset, maxComponents); 124 anneal(_CurrentTimeStep, _offset, maxComponents); 124 // cannot store RemnantGradient in Atom's Force as it ruins BB stepwidth calculation 125 else 126 anneal(_CurrentTimeStep, _offset, maxComponents); 125 127 } 126 128 … … 368 370 boost::cref(bv), boost::ref(projected_forces)); 369 371 const Vector RemnantGradient = bv.getRemnantGradientForAtomAtStep( 370 walker, BondVectors, weights, timestep, forcestoring372 walker, walkerGradient, BondVectors, weights, timestep, forcestoring 371 373 ); 372 374 RemnantGradient_per_atom.insert( std::make_pair(walker.getId(), RemnantGradient) ); … … 513 515 + update); 514 516 walker->setAtomicVelocity(update); 515 walker->setAtomicForce( RemnantGradient_per_atom[walker->getId()] );517 // walker->setAtomicForce( RemnantGradient_per_atom[walker->getId()] ); 516 518 } 517 519 }
Note:
See TracChangeset
for help on using the changeset viewer.