Changeset 06b7d9 for src/Dynamics/BondVectors.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/BondVectors.hpp
r982e6d r06b7d9 17 17 #include <map> 18 18 #include <vector> 19 20 #include <boost/function.hpp> 19 21 20 22 #include "CodePatterns/Assert.hpp" … … 93 95 * 94 96 * \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 95 112 * \param _step time step for which the bond vector is request 96 113 */ … … 98 115 const atom &_walker, 99 116 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; 100 143 101 144 private: … … 105 148 */ 106 149 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; 107 164 108 165 private:
Note:
See TracChangeset
for help on using the changeset viewer.