Ignore:
Timestamp:
Nov 12, 2017, 8:49:56 AM (7 years ago)
Author:
Frederik Heber <frederik.heber@…>
Branches:
ForceAnnealing_with_BondGraph_continued_betteresults
Children:
aad989
Parents:
30e1a4
git-author:
Frederik Heber <frederik.heber@…> (08/02/17 20:28:00)
git-committer:
Frederik Heber <frederik.heber@…> (11/12/17 08:49:56)
Message:

Center of weight translation removed from GatheredUpdates.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Dynamics/ForceAnnealing.hpp

    r30e1a4 r8d3610  
    501501    }
    502502
     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
    503514    // apply the gathered updates and set remnant gradients for atomic annealing
    504515    for (std::map<atomId_t, Vector>::const_iterator iter = GatheredUpdates.begin();
     
    513524      walker->setPosition(
    514525          walker->getPositionAtStep(CurrentTimeStep-1>=0 ? CurrentTimeStep - 1 : 0)
    515           + update);
     526          + update - CommonTranslation);
    516527      walker->setAtomicVelocity(update);
    517528//      walker->setAtomicForce( RemnantGradient_per_atom[walker->getId()] );
Note: See TracChangeset for help on using the changeset viewer.