Ignore:
Timestamp:
Nov 12, 2017, 8:48:40 AM (7 years ago)
Author:
Frederik Heber <frederik.heber@…>
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)
Message:

We now obtain weights via levmar minimization.

  • this should yield the best possible weights within the interval of [1/n,1.].
  • note that we cannot always get an exact solution because of this constraint.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Dynamics/ForceAnnealing.hpp

    r982e6d r06b7d9  
    119119      LOG(2, "DEBUG: current step is #" << currentStep);
    120120
     121      // bond graph annealing is always followed by a normal annealing
    121122      if (_UseBondgraph)
    122123        annealWithBondGraph(_CurrentTimeStep, _offset, maxComponents);
    123       else
    124         anneal(_CurrentTimeStep, _offset, maxComponents);
     124      anneal(_CurrentTimeStep, _offset, maxComponents);
    125125    }
    126126
     
    217217  }
    218218
     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
    219256  /** Performs Gradient optimization on the bonds.
    220257   *
     
    274311    const BondVectors::container_t &sorted_bonds = bv.getSorted();
    275312
    276     // knowing the number of bonds in total, we can setup the storage for the
    277     // projected forces
    278     enum whichatom_t {
    279       leftside=0,
    280       rightside=1,
    281       MAX_sides
    282     };
    283313    std::vector< // time step
    284314      std::vector< // which bond side
     
    294324    typedef std::map<atomId_t, BondVectors::weights_t > weights_per_atom_t;
    295325    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;
    296328    for (size_t timestep = 0; timestep <= 1; ++timestep) {
    297329      const size_t CurrentStep = CurrentTimeStep-timestep-1 >= 0 ? CurrentTimeStep-timestep-1 : 0;
     
    320352              weights_per_atom[timestep].insert(
    321353                  std::make_pair(walker.getId(),
    322                   bv.getWeightsForAtomAtStep(walker, CurrentStep)) );
     354                  bv.getWeightsForAtomAtStep(walker, BondVectors, CurrentStep)) );
    323355          ASSERT( inserter.second,
    324356              "ForceAnnealing::operator() - weight map for atom "+toString(walker)
     
    332364          // projected gradient over all bonds and place in one of projected_forces
    333365          // 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 &current_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) );
    361373        } else {
    362374          LOG(2, "DEBUG: Gradient is " << walkerGradient << " less than "
     
    487499    }
    488500
    489     // apply the gathered updates
     501    // apply the gathered updates and set remnant gradients for atomic annealing
    490502    for (std::map<atomId_t, Vector>::const_iterator iter = GatheredUpdates.begin();
    491503        iter != GatheredUpdates.end(); ++iter) {
     
    501513          + update);
    502514      walker->setAtomicVelocity(update);
    503 //      walker->setAtomicForce( RemnantGradient_per_atom[walker->getId()] );
     515      walker->setAtomicForce( RemnantGradient_per_atom[walker->getId()] );
    504516    }
    505517  }
Note: See TracChangeset for help on using the changeset viewer.