source: src/Dynamics/ForceAnnealing.hpp@ 441d40

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
Last change on this file since 441d40 was 90050b, checked in by Frederik Heber <frederik.heber@…>, 7 years ago

Center of weight translation removed from GatheredUpdates.

  • Property mode set to 100644
File size: 24.2 KB
Line 
1/*
2 * ForceAnnealing.hpp
3 *
4 * Created on: Aug 02, 2014
5 * Author: heber
6 */
7
8#ifndef FORCEANNEALING_HPP_
9#define FORCEANNEALING_HPP_
10
11// include config.h
12#ifdef HAVE_CONFIG_H
13#include <config.h>
14#endif
15
16#include <algorithm>
17#include <functional>
18#include <iterator>
19
20#include <boost/bind.hpp>
21
22#include "Atom/atom.hpp"
23#include "Atom/AtomSet.hpp"
24#include "CodePatterns/Assert.hpp"
25#include "CodePatterns/Info.hpp"
26#include "CodePatterns/Log.hpp"
27#include "CodePatterns/Verbose.hpp"
28#include "Descriptors/AtomIdDescriptor.hpp"
29#include "Dynamics/AtomicForceManipulator.hpp"
30#include "Dynamics/BondVectors.hpp"
31#include "Fragmentation/ForceMatrix.hpp"
32#include "Graph/BoostGraphCreator.hpp"
33#include "Graph/BoostGraphHelpers.hpp"
34#include "Graph/BreadthFirstSearchGatherer.hpp"
35#include "Helpers/helpers.hpp"
36#include "Helpers/defs.hpp"
37#include "LinearAlgebra/LinearSystemOfEquations.hpp"
38#include "LinearAlgebra/MatrixContent.hpp"
39#include "LinearAlgebra/Vector.hpp"
40#include "LinearAlgebra/VectorContent.hpp"
41#include "Thermostats/ThermoStatContainer.hpp"
42#include "Thermostats/Thermostat.hpp"
43#include "World.hpp"
44
45/** This class is the essential build block for performing structural optimization.
46 *
47 * Sadly, we have to use some static instances as so far values cannot be passed
48 * between actions. Hence, we need to store the current step and the adaptive-
49 * step width (we cannot perform a line search, as we have no control over the
50 * calculation of the forces).
51 *
52 * However, we do use the bond graph, i.e. if a single atom needs to be shifted
53 * to the left, then the whole molecule left of it is shifted, too. This is
54 * controlled by the \a max_distance parameter.
55 */
56template <class T>
57class ForceAnnealing : public AtomicForceManipulator<T>
58{
59public:
60 /** Constructor of class ForceAnnealing.
61 *
62 * \note We use a fixed delta t of 1.
63 *
64 * \param _atoms set of atoms to integrate
65 * \param _Deltat time step width in atomic units
66 * \param _IsAngstroem whether length units are in angstroem or bohr radii
67 * \param _maxSteps number of optimization steps to perform
68 * \param _max_distance up to this bond order is bond graph taken into account.
69 */
70 ForceAnnealing(
71 AtomSetMixin<T> &_atoms,
72 const double _Deltat,
73 bool _IsAngstroem,
74 const size_t _maxSteps,
75 const int _max_distance,
76 const double _damping_factor) :
77 AtomicForceManipulator<T>(_atoms, _Deltat, _IsAngstroem),
78 maxSteps(_maxSteps),
79 max_distance(_max_distance),
80 damping_factor(_damping_factor)
81 {}
82
83 /** Destructor of class ForceAnnealing.
84 *
85 */
86 ~ForceAnnealing()
87 {}
88
89 /** Performs Gradient optimization.
90 *
91 * We assume that forces have just been calculated.
92 *
93 *
94 * \param CurrentTimeStep current time step (i.e. \f$ t + \Delta t \f$ in the sense of the velocity verlet)
95 * \param offset offset in matrix file to the first force component
96 * \todo This is not yet checked if it is correctly working with DoConstrainedMD set >0.
97 */
98 void operator()(
99 const int _CurrentTimeStep,
100 const size_t _offset,
101 const bool _UseBondgraph)
102 {
103 // make sum of forces equal zero
104 AtomicForceManipulator<T>::correctForceMatrixForFixedCenterOfMass(
105 _offset,
106 _CurrentTimeStep-1>=0 ? _CurrentTimeStep - 1 : 0);
107
108 // are we in initial step? Then set static entities
109 Vector maxComponents(zeroVec);
110 if (currentStep == 0) {
111 currentDeltat = AtomicForceManipulator<T>::Deltat;
112 currentStep = 1;
113 LOG(2, "DEBUG: Initial step, setting values, current step is #" << currentStep);
114
115 // always use atomic annealing on first step
116 anneal(_CurrentTimeStep, _offset, maxComponents);
117 } else {
118 ++currentStep;
119 LOG(2, "DEBUG: current step is #" << currentStep);
120
121 // bond graph annealing is always followed by a normal annealing
122 if (_UseBondgraph)
123 annealWithBondGraph(_CurrentTimeStep, _offset, maxComponents);
124 // cannot store RemnantGradient in Atom's Force as it ruins BB stepwidth calculation
125 else
126 anneal(_CurrentTimeStep, _offset, maxComponents);
127 }
128
129
130 LOG(1, "STATUS: Largest remaining force components at step #"
131 << currentStep << " are " << maxComponents);
132
133 // are we in final step? Remember to reset static entities
134 if (currentStep == maxSteps) {
135 LOG(2, "DEBUG: Final step, resetting values");
136 reset();
137 }
138 }
139
140 /** Helper function to calculate the Barzilai-Borwein stepwidth.
141 *
142 * \param _PositionDifference difference in position between current and last step
143 * \param _GradientDifference difference in gradient between current and last step
144 * \return step width according to Barzilai-Borwein
145 */
146 double getBarzilaiBorweinStepwidth(const Vector &_PositionDifference, const Vector &_GradientDifference)
147 {
148 double stepwidth = 0.;
149 if (_GradientDifference.NormSquared() > MYEPSILON)
150 stepwidth = fabs(_PositionDifference.ScalarProduct(_GradientDifference))/
151 _GradientDifference.NormSquared();
152 if (fabs(stepwidth) < 1e-10) {
153 // dont' warn in first step, deltat usage normal
154 if (currentStep != 1)
155 ELOG(1, "INFO: Barzilai-Borwein stepwidth is zero, using deltat " << currentDeltat << " instead.");
156 stepwidth = currentDeltat;
157 }
158 return stepwidth;
159 }
160
161 /** Performs Gradient optimization on the atoms.
162 *
163 * We assume that forces have just been calculated.
164 *
165 * \param CurrentTimeStep current time step (i.e. \f$ t + \Delta t \f$ in the sense of the velocity verlet)
166 * \param offset offset in matrix file to the first force component
167 * \param maxComponents to be filled with maximum force component over all atoms
168 */
169 void anneal(
170 const int CurrentTimeStep,
171 const size_t offset,
172 Vector &maxComponents)
173 {
174 bool deltat_decreased = false;
175 for(typename AtomSetMixin<T>::iterator iter = AtomicForceManipulator<T>::atoms.begin();
176 iter != AtomicForceManipulator<T>::atoms.end(); ++iter) {
177 // atom's force vector gives steepest descent direction
178 const Vector oldPosition = (*iter)->getPositionAtStep(CurrentTimeStep-1 >= 0 ? CurrentTimeStep - 1 : 0);
179 const Vector currentPosition = (*iter)->getPositionAtStep(CurrentTimeStep);
180 const Vector oldGradient = (*iter)->getAtomicForceAtStep(CurrentTimeStep-1 >= 0 ? CurrentTimeStep - 1 : 0);
181 const Vector currentGradient = (*iter)->getAtomicForceAtStep(CurrentTimeStep);
182 LOG(4, "DEBUG: oldPosition for atom " << **iter << " is " << oldPosition);
183 LOG(4, "DEBUG: currentPosition for atom " << **iter << " is " << currentPosition);
184 LOG(4, "DEBUG: oldGradient for atom " << **iter << " is " << oldGradient);
185 LOG(4, "DEBUG: currentGradient for atom " << **iter << " is " << currentGradient);
186// LOG(4, "DEBUG: Force for atom " << **iter << " is " << currentGradient);
187
188 // we use Barzilai-Borwein update with position reversed to get descent
189 const double stepwidth = getBarzilaiBorweinStepwidth(
190 currentPosition - oldPosition, currentGradient - oldGradient);
191 Vector PositionUpdate = stepwidth * currentGradient;
192 LOG(3, "DEBUG: Update would be " << stepwidth << "*" << currentGradient << " = " << PositionUpdate);
193
194 // extract largest components for showing progress of annealing
195 for(size_t i=0;i<NDIM;++i)
196 maxComponents[i] = std::max(maxComponents[i], fabs(currentGradient[i]));
197
198 // steps may go back and forth again (updates are of same magnitude but
199 // have different sign: Check whether this is the case and one step with
200 // deltat to interrupt this sequence
201 const Vector PositionDifference = currentPosition - oldPosition;
202 if ((currentStep > 1) && (!PositionDifference.IsZero()))
203 if ((PositionUpdate.ScalarProduct(PositionDifference) < 0)
204 && (fabs(PositionUpdate.NormSquared()-PositionDifference.NormSquared()) < 1e-3)) {
205 // for convergence we want a null sequence here, too
206 if (!deltat_decreased) {
207 deltat_decreased = true;
208 currentDeltat = .5*currentDeltat;
209 }
210 LOG(2, "DEBUG: Upgrade in other direction: " << PositionUpdate
211 << " > " << PositionDifference
212 << ", using deltat: " << currentDeltat);
213 PositionUpdate = currentDeltat * currentGradient;
214 }
215
216 // finally set new values
217 (*iter)->setPosition(currentPosition + PositionUpdate);
218 }
219 }
220
221 // knowing the number of bonds in total, we can setup the storage for the
222 // projected forces
223 enum whichatom_t {
224 leftside=0,
225 rightside=1,
226 MAX_sides
227 };
228
229 /** Helper function to put bond force into a container.
230 *
231 * \param _walker atom
232 * \param _current_bond current bond of \a _walker
233 * \param _timestep time step
234 * \param _force calculated bond force
235 * \param _bv bondvectors for obtaining the correct index
236 * \param _projected_forces container
237 */
238 static void ForceStore(
239 const atom &_walker,
240 const bond::ptr &_current_bond,
241 const size_t &_timestep,
242 const double _force,
243 const BondVectors &_bv,
244 std::vector< // time step
245 std::vector< // which bond side
246 std::vector<double> > // over all bonds
247 > &_projected_forces)
248 {
249 std::vector<double> &forcelist = (&_walker == _current_bond->leftatom) ?
250 _projected_forces[_timestep][leftside] : _projected_forces[_timestep][rightside];
251 const size_t index = _bv.getIndexForBond(_current_bond);
252 ASSERT( index != (size_t)-1,
253 "ForceAnnealing() - could not find bond "+toString(*_current_bond)
254 +" in bondvectors");
255 forcelist[index] = _force;
256 }
257
258 /** Performs Gradient optimization on the bonds.
259 *
260 * We assume that forces have just been calculated. These forces are projected
261 * onto the bonds and these are annealed subsequently by moving atoms in the
262 * bond neighborhood on either side conjunctively.
263 *
264 *
265 * \param CurrentTimeStep current time step (i.e. \f$ t + \Delta t \f$ in the sense of the velocity verlet)
266 * \param offset offset in matrix file to the first force component
267 * \param maxComponents to be filled with maximum force component over all atoms
268 */
269 void annealWithBondGraph(
270 const int CurrentTimeStep,
271 const size_t offset,
272 Vector &maxComponents)
273 {
274 // get nodes on either side of selected bond via BFS discovery
275 BoostGraphCreator BGcreator;
276 BGcreator.createFromRange(
277 AtomicForceManipulator<T>::atoms.begin(),
278 AtomicForceManipulator<T>::atoms.end(),
279 AtomicForceManipulator<T>::atoms.size(),
280 BreadthFirstSearchGatherer::AlwaysTruePredicate);
281 BreadthFirstSearchGatherer NodeGatherer(BGcreator);
282
283 /// We assume that a force is local, i.e. a bond is too short yet and hence
284 /// the atom needs to be moved. However, all the adjacent (bound) atoms might
285 /// already be at the perfect distance. If we just move the atom alone, we ruin
286 /// all the other bonds. Hence, it would be sensible to move every atom found
287 /// through the bond graph in the direction of the force as well by the same
288 /// PositionUpdate. This is almost what we are going to do.
289
290 /// One issue is: If we need to shorten bond, then we use the PositionUpdate
291 /// also on the the other bond partner already. This is because it is in the
292 /// direction of the bond. Therefore, the update is actually performed twice on
293 /// each bond partner, i.e. the step size is twice as large as it should be.
294 /// This problem only occurs when bonds need to be shortened, not when they
295 /// need to be made longer (then the force vector is facing the other
296 /// direction than the bond vector).
297 /// As a remedy we need to average the force on either end of the bond and
298 /// check whether each gradient points inwards out or outwards with respect
299 /// to the bond and then shift accordingly.
300
301 /// One more issue is that the projection onto the bond directions does not
302 /// recover the gradient but may be larger as the bond directions are a
303 /// generating system and not a basis (e.g. 3 bonds on a plane where 2 would
304 /// suffice to span the plane). To this end, we need to account for the
305 /// overestimation and obtain a weighting for each bond.
306
307 // initialize helper class for bond vectors using bonds from range of atoms
308 BondVectors bv;
309 bv.setFromAtomRange< T >(
310 AtomicForceManipulator<T>::atoms.begin(),
311 AtomicForceManipulator<T>::atoms.end(),
312 CurrentTimeStep);
313 const BondVectors::container_t &sorted_bonds = bv.getSorted();
314
315 std::vector< // time step
316 std::vector< // which bond side
317 std::vector<double> > // over all bonds
318 > projected_forces(2); // one for leftatoms, one for rightatoms (and for both time steps)
319 for (size_t i=0;i<2;++i) {
320 projected_forces[i].resize(MAX_sides);
321 for (size_t j=0;j<MAX_sides;++j)
322 projected_forces[i][j].resize(sorted_bonds.size(), 0.);
323 }
324
325 // for each atom we need to gather weights and then project the gradient
326 typedef std::map<atomId_t, BondVectors::weights_t > weights_per_atom_t;
327 std::vector<weights_per_atom_t> weights_per_atom(2);
328 typedef std::map<atomId_t, Vector> RemnantGradient_per_atom_t;
329 RemnantGradient_per_atom_t RemnantGradient_per_atom;
330 for (size_t timestep = 0; timestep <= 1; ++timestep) {
331 const size_t CurrentStep = CurrentTimeStep-timestep-1 >= 0 ? CurrentTimeStep-timestep-1 : 0;
332 LOG(2, "DEBUG: CurrentTimeStep is " << CurrentTimeStep
333 << ", timestep is " << timestep
334 << ", and CurrentStep is " << CurrentStep);
335
336 for(typename AtomSetMixin<T>::const_iterator iter = AtomicForceManipulator<T>::atoms.begin();
337 iter != AtomicForceManipulator<T>::atoms.end(); ++iter) {
338 const atom &walker = *(*iter);
339 const Vector &walkerGradient = walker.getAtomicForceAtStep(CurrentStep);
340 LOG(3, "DEBUG: Gradient of atom #" << walker.getId() << ", namely "
341 << walker << " is " << walkerGradient << " with magnitude of "
342 << walkerGradient.Norm());
343
344 const BondList& ListOfBonds = walker.getListOfBonds();
345 if (walkerGradient.Norm() > MYEPSILON) {
346
347 // gather subset of BondVectors for the current atom
348 const std::vector<Vector> BondVectors =
349 bv.getAtomsBondVectorsAtStep(walker, CurrentStep);
350
351 // go through all its bonds and calculate what magnitude is represented
352 // by the others i.e. sum of scalar products against other bonds
353 const std::pair<weights_per_atom_t::iterator, bool> inserter =
354 weights_per_atom[timestep].insert(
355 std::make_pair(walker.getId(),
356 bv.getWeightsForAtomAtStep(walker, BondVectors, CurrentStep)) );
357 ASSERT( inserter.second,
358 "ForceAnnealing::operator() - weight map for atom "+toString(walker)
359 +" and time step "+toString(timestep)+" already filled?");
360 BondVectors::weights_t &weights = inserter.first->second;
361 ASSERT( weights.size() == ListOfBonds.size(),
362 "ForceAnnealing::operator() - number of weights "
363 +toString(weights.size())+" does not match number of bonds "
364 +toString(ListOfBonds.size())+", error in calculation?");
365
366 // projected gradient over all bonds and place in one of projected_forces
367 // using the obtained weights
368 BondVectors::forcestore_t forcestoring =
369 boost::bind(&ForceAnnealing::ForceStore, _1, _2, _3, _4,
370 boost::cref(bv), boost::ref(projected_forces));
371 const Vector RemnantGradient = bv.getRemnantGradientForAtomAtStep(
372 walker, walkerGradient, BondVectors, weights, timestep, forcestoring
373 );
374 RemnantGradient_per_atom.insert( std::make_pair(walker.getId(), RemnantGradient) );
375 } else {
376 LOG(2, "DEBUG: Gradient is " << walkerGradient << " less than "
377 << MYEPSILON << " for atom " << walker);
378 // note that projected_forces is initialized to full length and filled
379 // with zeros. Hence, nothing to do here
380 }
381 }
382 }
383
384 // step through each bond and shift the atoms
385 std::map<atomId_t, Vector> GatheredUpdates; //!< gathers all updates which are applied at the end
386
387 LOG(3, "DEBUG: current step is " << currentStep << ", given time step is " << CurrentTimeStep);
388 const BondVectors::mapped_t bondvectors = bv.getBondVectorsAtStep(CurrentTimeStep);
389
390 for (BondVectors::container_t::const_iterator bondsiter = sorted_bonds.begin();
391 bondsiter != sorted_bonds.end(); ++bondsiter) {
392 const bond::ptr &current_bond = *bondsiter;
393 const size_t index = bv.getIndexForBond(current_bond);
394 const atom* bondatom[MAX_sides] = {
395 current_bond->leftatom,
396 current_bond->rightatom
397 };
398
399 // remove the edge
400#ifndef NDEBUG
401 const bool status =
402#endif
403 BGcreator.removeEdge(bondatom[leftside]->getId(), bondatom[rightside]->getId());
404 ASSERT( status, "ForceAnnealing() - edge to found bond is not present?");
405
406 // gather nodes for either atom
407 BoostGraphHelpers::Nodeset_t bondside_set[MAX_sides];
408 BreadthFirstSearchGatherer::distance_map_t distance_map[MAX_sides];
409 for (size_t side=leftside;side<MAX_sides;++side) {
410 bondside_set[side] = NodeGatherer(bondatom[side]->getId(), max_distance);
411 distance_map[side] = NodeGatherer.getDistances();
412 std::sort(bondside_set[side].begin(), bondside_set[side].end());
413 }
414
415 // re-add edge
416 BGcreator.addEdge(bondatom[leftside]->getId(), bondatom[rightside]->getId());
417
418 // do for both leftatom and rightatom of bond
419 for (size_t side = leftside; side < MAX_sides; ++side) {
420 const double &bondforce = projected_forces[0][side][index];
421 const double &oldbondforce = projected_forces[1][side][index];
422 const double bondforcedifference = fabs(bondforce - oldbondforce);
423 LOG(4, "DEBUG: bondforce for " << (side == leftside ? "left" : "right")
424 << " side of bond is " << bondforce);
425 LOG(4, "DEBUG: oldbondforce for " << (side == leftside ? "left" : "right")
426 << " side of bond is " << oldbondforce);
427 // if difference or bondforce itself is zero, do nothing
428 if ((fabs(bondforce) < MYEPSILON) || (fabs(bondforcedifference) < MYEPSILON))
429 continue;
430
431 // get BondVector to bond
432 const BondVectors::mapped_t::const_iterator bviter =
433 bondvectors.find(current_bond);
434 ASSERT( bviter != bondvectors.end(),
435 "ForceAnnealing() - cannot find current_bond ?");
436 ASSERT( fabs(bviter->second.Norm() -1.) < MYEPSILON,
437 "ForceAnnealing() - norm of BondVector is not one");
438 const Vector &BondVector = bviter->second;
439
440 // calculate gradient and position differences for stepwidth
441 const Vector currentGradient = bondforce * BondVector;
442 LOG(4, "DEBUG: current projected gradient for "
443 << (side == leftside ? "left" : "right") << " side of bond is " << currentGradient);
444 const Vector &oldPosition = bondatom[side]->getPositionAtStep(CurrentTimeStep-2 >= 0 ? CurrentTimeStep - 2 : 0);
445 const Vector &currentPosition = bondatom[side]->getPositionAtStep(CurrentTimeStep-1>=0 ? CurrentTimeStep - 1 : 0);
446 const Vector PositionDifference = currentPosition - oldPosition;
447 LOG(4, "DEBUG: old position is " << oldPosition);
448 LOG(4, "DEBUG: current position is " << currentPosition);
449 LOG(4, "DEBUG: difference in position is " << PositionDifference);
450 LOG(4, "DEBUG: bondvector is " << BondVector);
451 const double projected_PositionDifference = PositionDifference.ScalarProduct(BondVector);
452 LOG(4, "DEBUG: difference in position projected onto bondvector is "
453 << projected_PositionDifference);
454 LOG(4, "DEBUG: abs. difference in forces is " << bondforcedifference);
455
456 // calculate step width
457 double stepwidth =
458 fabs(projected_PositionDifference)/bondforcedifference;
459 if (fabs(stepwidth) < 1e-10) {
460 // dont' warn in first step, deltat usage normal
461 if (currentStep != 1)
462 ELOG(1, "INFO: Barzilai-Borwein stepwidth is zero, using deltat " << currentDeltat << " instead.");
463 stepwidth = currentDeltat;
464 }
465 Vector PositionUpdate = stepwidth * currentGradient;
466 LOG(3, "DEBUG: Update would be " << stepwidth << "*" << currentGradient << " = " << PositionUpdate);
467
468 // add PositionUpdate for all nodes in the bondside_set
469 for (BoostGraphHelpers::Nodeset_t::const_iterator setiter = bondside_set[side].begin();
470 setiter != bondside_set[side].end(); ++setiter) {
471 const BreadthFirstSearchGatherer::distance_map_t::const_iterator diter
472 = distance_map[side].find(*setiter);
473 ASSERT( diter != distance_map[side].end(),
474 "ForceAnnealing() - could not find distance to an atom.");
475 const double factor = pow(damping_factor, diter->second+1);
476 LOG(3, "DEBUG: Update for atom #" << *setiter << " will be "
477 << factor << "*" << PositionUpdate);
478 if (GatheredUpdates.count((*setiter))) {
479 GatheredUpdates[(*setiter)] += factor*PositionUpdate;
480 } else {
481 GatheredUpdates.insert(
482 std::make_pair(
483 (*setiter),
484 factor*PositionUpdate) );
485 }
486 }
487 }
488 }
489
490 for(typename AtomSetMixin<T>::iterator iter = AtomicForceManipulator<T>::atoms.begin();
491 iter != AtomicForceManipulator<T>::atoms.end(); ++iter) {
492 atom &walker = *(*iter);
493 // extract largest components for showing progress of annealing
494 const Vector currentGradient = walker.getAtomicForceAtStep(CurrentTimeStep-1>=0 ? CurrentTimeStep-1 : 0);
495 for(size_t i=0;i<NDIM;++i)
496 maxComponents[i] = std::max(maxComponents[i], fabs(currentGradient[i]));
497
498 // reset force vector for next step except on final one
499 if (currentStep != maxSteps)
500 walker.setAtomicForce(zeroVec);
501 }
502
503 // remove center of weight translation from gathered updates
504 Vector CommonTranslation;
505 for (std::map<atomId_t, Vector>::const_iterator iter = GatheredUpdates.begin();
506 iter != GatheredUpdates.end(); ++iter) {
507 const Vector &update = iter->second;
508 CommonTranslation += update;
509 }
510 CommonTranslation *= 1./(double)GatheredUpdates.size();
511 LOG(3, "DEBUG: Subtracting common translation " << CommonTranslation
512 << " from all updates.");
513
514 // apply the gathered updates and set remnant gradients for atomic annealing
515 for (std::map<atomId_t, Vector>::const_iterator iter = GatheredUpdates.begin();
516 iter != GatheredUpdates.end(); ++iter) {
517 const atomId_t &atomid = iter->first;
518 const Vector &update = iter->second;
519 atom* const walker = World::getInstance().getAtom(AtomById(atomid));
520 ASSERT( walker != NULL,
521 "ForceAnnealing() - walker with id "+toString(atomid)+" has suddenly disappeared.");
522 LOG(3, "DEBUG: Applying update " << update << " to atom #" << atomid
523 << ", namely " << *walker);
524 walker->setPosition(
525 walker->getPositionAtStep(CurrentTimeStep-1>=0 ? CurrentTimeStep - 1 : 0)
526 + update - CommonTranslation);
527 walker->setAtomicVelocity(update);
528// walker->setAtomicForce( RemnantGradient_per_atom[walker->getId()] );
529 }
530 }
531
532 /** Reset function to unset static entities and artificial velocities.
533 *
534 */
535 void reset()
536 {
537 currentDeltat = 0.;
538 currentStep = 0;
539 }
540
541private:
542 //!> contains the current step in relation to maxsteps
543 static size_t currentStep;
544 //!> contains the maximum number of steps, determines initial and final step with currentStep
545 size_t maxSteps;
546 static double currentDeltat;
547 //!> minimum deltat for internal while loop (adaptive step width)
548 static double MinimumDeltat;
549 //!> contains the maximum bond graph distance up to which shifts of a single atom are spread
550 const int max_distance;
551 //!> the shifted is dampened by this factor with the power of the bond graph distance to the shift causing atom
552 const double damping_factor;
553};
554
555template <class T>
556double ForceAnnealing<T>::currentDeltat = 0.;
557template <class T>
558size_t ForceAnnealing<T>::currentStep = 0;
559template <class T>
560double ForceAnnealing<T>::MinimumDeltat = 1e-8;
561
562#endif /* FORCEANNEALING_HPP_ */
Note: See TracBrowser for help on using the repository browser.