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/BondVectors.hpp

    r982e6d r06b7d9  
    1717#include <map>
    1818#include <vector>
     19
     20#include <boost/function.hpp>
    1921
    2022#include "CodePatterns/Assert.hpp"
     
    9395   *
    9496   * \param _walker atom to get BondVectors for
     97   * \param _bondvectors precalculated bond vectors for given \a _walker
     98   * \param _step time step for which the bond vector is request
     99   */
     100  weights_t getWeightsForAtomAtStep(
     101      const atom &_walker,
     102      const std::vector<Vector> &_bondvectors,
     103      const size_t &_step) const;
     104
     105  /** Calculates the weights for a frame where each Bondvector of the
     106   * given atom is a vector of the frame.
     107   *
     108   * The idea is that we can represent any vector by appropriate weights such
     109   * that is still sums up to one.
     110   *
     111   * \param _walker atom to get BondVectors for
    95112   * \param _step time step for which the bond vector is request
    96113   */
     
    98115      const atom &_walker,
    99116      const size_t &_step) const;
     117
     118  /** Function typedef to store the bond gradient into a specific container
     119   * depending on the atom, its current bond and the time step.
     120   */
     121  typedef boost::function<void (
     122      const atom &,
     123      const bond::ptr &,
     124      const size_t &,
     125      const double)> forcestore_t;
     126
     127  /** Function calculates the remaining part of the atomic gradient that is
     128   * not captured by the sum of the force along the Bond Vectors.
     129   *
     130   * \param _walker atom to get BondVectors for
     131   * \param _BondVectors precalculated bond vectors for given \a _walker
     132   * \param _weights weight per bond vector (as it is a frame, not a basis)
     133   * \param _step time step for which the bond vector is request
     134   * \param _forcestore additional function which may be used to store each
     135   *        calculated bond force in a bound container
     136   */
     137  Vector getRemnantGradientForAtomAtStep(
     138      const atom &_walker,
     139      const std::vector<Vector> _BondVectors,
     140      const BondVectors::weights_t &_weights,
     141      const size_t &_step,
     142      forcestore_t _forcestore) const;
    100143
    101144private:
     
    105148   */
    106149  void recalculateBondVectorsAtStep(const size_t &_step) const;
     150
     151  /** Helper function to check whether weights sum up to one for each
     152   * Bond Vector.
     153   *
     154   * \param _walker atom to get BondVectors for
     155   * \param _BondVectors precalculated bond vectors for given \a _walker
     156   * \param _weights weight per bond vector (as it is a frame, not a basis)
     157   * \param _step time step for which the bond vector is request
     158   */
     159  bool getCheckWeightSumForAtomAtStep(
     160      const atom &_walker,
     161      const std::vector<Vector> _BondVectors,
     162      const BondVectors::weights_t &_weights,
     163      const size_t &_step) const;
    107164
    108165private:
Note: See TracChangeset for help on using the changeset viewer.