Changeset 06b7d9 for src/Dynamics/ForceAnnealing.hpp
- Timestamp:
- Nov 12, 2017, 8:48:40 AM (7 years ago)
- Branches:
- ForceAnnealing_with_BondGraph_continued_betteresults
- Children:
- 30e1a4
- Parents:
- 982e6d
- git-author:
- Frederik Heber <frederik.heber@…> (07/18/17 22:24:12)
- git-committer:
- Frederik Heber <frederik.heber@…> (11/12/17 08:48:40)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Dynamics/ForceAnnealing.hpp
r982e6d r06b7d9 119 119 LOG(2, "DEBUG: current step is #" << currentStep); 120 120 121 // bond graph annealing is always followed by a normal annealing 121 122 if (_UseBondgraph) 122 123 annealWithBondGraph(_CurrentTimeStep, _offset, maxComponents); 123 else 124 anneal(_CurrentTimeStep, _offset, maxComponents); 124 anneal(_CurrentTimeStep, _offset, maxComponents); 125 125 } 126 126 … … 217 217 } 218 218 219 // knowing the number of bonds in total, we can setup the storage for the 220 // projected forces 221 enum whichatom_t { 222 leftside=0, 223 rightside=1, 224 MAX_sides 225 }; 226 227 /** Helper function to put bond force into a container. 228 * 229 * \param _walker atom 230 * \param _current_bond current bond of \a _walker 231 * \param _timestep time step 232 * \param _force calculated bond force 233 * \param _bv bondvectors for obtaining the correct index 234 * \param _projected_forces container 235 */ 236 static void ForceStore( 237 const atom &_walker, 238 const bond::ptr &_current_bond, 239 const size_t &_timestep, 240 const double _force, 241 const BondVectors &_bv, 242 std::vector< // time step 243 std::vector< // which bond side 244 std::vector<double> > // over all bonds 245 > &_projected_forces) 246 { 247 std::vector<double> &forcelist = (&_walker == _current_bond->leftatom) ? 248 _projected_forces[_timestep][leftside] : _projected_forces[_timestep][rightside]; 249 const size_t index = _bv.getIndexForBond(_current_bond); 250 ASSERT( index != (size_t)-1, 251 "ForceAnnealing() - could not find bond "+toString(*_current_bond) 252 +" in bondvectors"); 253 forcelist[index] = _force; 254 } 255 219 256 /** Performs Gradient optimization on the bonds. 220 257 * … … 274 311 const BondVectors::container_t &sorted_bonds = bv.getSorted(); 275 312 276 // knowing the number of bonds in total, we can setup the storage for the277 // projected forces278 enum whichatom_t {279 leftside=0,280 rightside=1,281 MAX_sides282 };283 313 std::vector< // time step 284 314 std::vector< // which bond side … … 294 324 typedef std::map<atomId_t, BondVectors::weights_t > weights_per_atom_t; 295 325 std::vector<weights_per_atom_t> weights_per_atom(2); 326 typedef std::map<atomId_t, Vector> RemnantGradient_per_atom_t; 327 RemnantGradient_per_atom_t RemnantGradient_per_atom; 296 328 for (size_t timestep = 0; timestep <= 1; ++timestep) { 297 329 const size_t CurrentStep = CurrentTimeStep-timestep-1 >= 0 ? CurrentTimeStep-timestep-1 : 0; … … 320 352 weights_per_atom[timestep].insert( 321 353 std::make_pair(walker.getId(), 322 bv.getWeightsForAtomAtStep(walker, CurrentStep)) );354 bv.getWeightsForAtomAtStep(walker, BondVectors, CurrentStep)) ); 323 355 ASSERT( inserter.second, 324 356 "ForceAnnealing::operator() - weight map for atom "+toString(walker) … … 332 364 // projected gradient over all bonds and place in one of projected_forces 333 365 // using the obtained weights 334 { 335 BondVectors::weights_t::const_iterator weightiter = weights.begin(); 336 std::vector<Vector>::const_iterator vectoriter = BondVectors.begin(); 337 Vector forcesum_check; 338 for(BondList::const_iterator bonditer = ListOfBonds.begin(); 339 bonditer != ListOfBonds.end(); ++bonditer, ++weightiter, ++vectoriter) { 340 const bond::ptr ¤t_bond = *bonditer; 341 const Vector &BondVector = *vectoriter; 342 343 std::vector<double> &forcelist = (&walker == current_bond->leftatom) ? 344 projected_forces[timestep][leftside] : projected_forces[timestep][rightside]; 345 const size_t index = bv.getIndexForBond(current_bond); 346 ASSERT( index != (size_t)-1, 347 "ForceAnnealing() - could not find bond "+toString(*current_bond) 348 +" in bondvectors"); 349 forcelist[index] = (*weightiter)*walkerGradient.ScalarProduct(BondVector); 350 LOG(4, "DEBUG: BondVector " << BondVector << " receives projected force of " 351 << forcelist[index]); 352 forcesum_check += forcelist[index] * BondVector; 353 } 354 ASSERT( weightiter == weights.end(), 355 "ForceAnnealing - weightiter is not at end when it should be."); 356 ASSERT( vectoriter == BondVectors.end(), 357 "ForceAnnealing - vectoriter is not at end when it should be."); 358 LOG(3, "DEBUG: sum of projected forces is " << forcesum_check); 359 } 360 366 BondVectors::forcestore_t forcestoring = 367 boost::bind(&ForceAnnealing::ForceStore, _1, _2, _3, _4, 368 boost::cref(bv), boost::ref(projected_forces)); 369 const Vector RemnantGradient = bv.getRemnantGradientForAtomAtStep( 370 walker, BondVectors, weights, timestep, forcestoring 371 ); 372 RemnantGradient_per_atom.insert( std::make_pair(walker.getId(), RemnantGradient) ); 361 373 } else { 362 374 LOG(2, "DEBUG: Gradient is " << walkerGradient << " less than " … … 487 499 } 488 500 489 // apply the gathered updates 501 // apply the gathered updates and set remnant gradients for atomic annealing 490 502 for (std::map<atomId_t, Vector>::const_iterator iter = GatheredUpdates.begin(); 491 503 iter != GatheredUpdates.end(); ++iter) { … … 501 513 + update); 502 514 walker->setAtomicVelocity(update); 503 //walker->setAtomicForce( RemnantGradient_per_atom[walker->getId()] );515 walker->setAtomicForce( RemnantGradient_per_atom[walker->getId()] ); 504 516 } 505 517 }
Note:
See TracChangeset
for help on using the changeset viewer.