source: src/Potentials/Specifics/ThreeBodyPotential_Angle.hpp

stable v1.7.0
Last change on this file was a0d8aa, checked in by Frederik Heber <frederik.heber@…>, 2 months ago

PotentialFactory exposes particle type numbers.

  • Also, potentials use getParticleTypeNumber() in asserts.
  • Property mode set to 100644
File size: 6.8 KB
RevLine 
[a63187]1/*
[484e2a]2 * ThreeBodyPotential_Angle.hpp
[a63187]3 *
4 * Created on: Oct 11, 2012
5 * Author: heber
6 */
7
[484e2a]8#ifndef THREEBODYPOTENTIAL_ANGLE_HPP_
9#define THREEBODYPOTENTIAL_ANGLE_HPP_
[a63187]10
11
12// include config.h
13#ifdef HAVE_CONFIG_H
14#include <config.h>
15#endif
16
17#include <limits>
18
19#include "Potentials/EmpiricalPotential.hpp"
20
[713888]21class PotentialFactory;
[d52819]22class TrainingData;
23
[a63187]24/** This is the implementation of a harmonic angle potential.
25 *
26 * This evaluates \f$ k \cdot (\theta -\theta_0)^2 \f$.
27 *
28 */
[484e2a]29class ThreeBodyPotential_Angle :
[fdd23a]30 public EmpiricalPotential
[a63187]31{
32 //!> grant unit test access to internal parts
[484e2a]33 friend class ThreeBodyPotential_AngleTest;
[713888]34 //!> grant PotentialFactory access to default cstor
35 friend class PotentialFactory;
[a63187]36 // some repeated typedefs to avoid ambiguities
[e1fe7e]37 typedef FunctionModel::list_of_arguments_t list_of_arguments_t;
[a63187]38 typedef FunctionModel::arguments_t arguments_t;
39 typedef FunctionModel::result_t result_t;
40 typedef FunctionModel::results_t results_t;
41 typedef EmpiricalPotential::derivative_components_t derivative_components_t;
42 typedef FunctionModel::parameters_t parameters_t;
[713888]43private:
44 /** Private default constructor.
45 *
46 * This prevents creation of potential without set ParticleTypes_t.
47 *
[a82d33]48 * \note PotentialFactory may use this default cstor
49 *
[713888]50 */
[484e2a]51 ThreeBodyPotential_Angle();
[713888]52
[a0d8aa]53 /** Creates the binding model specific for this potential.
54 *
55 * Private because this is used internally some of the constructors.
56 *
57 * \param _ParticleTypes particle type for the potential
58 * \return binding model
59 */
60 BindingModel generateBindingModel(const EmpiricalPotential::ParticleTypes_t &_ParticleTypes) const;
61
[a63187]62public:
[484e2a]63 ThreeBodyPotential_Angle(const ParticleTypes_t &_ParticleTypes);
64 ThreeBodyPotential_Angle(
[ed2551]65 const ParticleTypes_t &_ParticleTypes,
[a63187]66 const double _spring_constant,
[1e242a]67 const double _equilibrium_distance);
[484e2a]68 virtual ~ThreeBodyPotential_Angle() {}
[a63187]69
70 /** Setter for parameters as required by FunctionModel interface.
71 *
72 * \param _params given set of parameters
73 */
[086070]74 void setParameters(const parameters_t &_params);
[a63187]75
76 /** Getter for parameters as required by FunctionModel interface.
77 *
78 * \return set of parameters
79 */
80 parameters_t getParameters() const
81 {
82 return params;
83 }
84
[d52819]85 /** Sets the parameter randomly within the sensible range of each parameter.
86 *
87 * \param data container with training data for guesstimating range
88 */
89 void setParametersToRandomInitialValues(const TrainingData &data);
90
[a63187]91 /** Getter for the number of parameters of this model function.
92 *
93 * \return number of parameters
94 */
95 size_t getParameterDimension() const
96 {
[1e242a]97 return MAXPARAMS;
[a63187]98 }
99
100 /** Evaluates the harmonic potential function for the given arguments.
101 *
[e1fe7e]102 * @param listarguments list of three distances
[a63187]103 * @return value of the potential function
104 */
[e1fe7e]105 results_t operator()(const list_of_arguments_t &listarguments) const;
[a63187]106
107 /** Evaluates the derivative of the potential function.
108 *
[e1fe7e]109 * @param listarguments list of three distances
[a63187]110 * @return vector with derivative with respect to the input degrees of freedom
111 */
[e1fe7e]112 derivative_components_t derivative(const list_of_arguments_t &listarguments) const;
[a63187]113
114 /** Evaluates the derivative of the function with the given \a arguments
115 * with respect to a specific parameter indicated by \a index.
116 *
[e1fe7e]117 * \param listarguments list of three distances
[a63187]118 * \param index derivative of which parameter
119 * \return result vector containing the derivative with respect to the given
120 * input
121 */
[e1fe7e]122 results_t parameter_derivative(const list_of_arguments_t &listarguments, const size_t index) const;
[a63187]123
[94453f1]124 /** Returns the functor that converts argument_s into the
125 * internal coordinate described by this potential function.
126 *
127 * \return coordinator functor
128 */
129 Coordinator::ptr getCoordinator() const
130 { return coordinator; }
131
[6efcae]132 /** Return the token name of this specific potential.
[67cd3a]133 *
[6efcae]134 * \return token name of the potential
[67cd3a]135 */
[ed2551]136 const std::string& getToken() const
137 { return potential_token; }
138
139 /** Returns a vector of parameter names.
140 *
141 * This is required from the specific implementation
142 *
143 * \return vector of strings containing parameter names
144 */
145 const ParameterNames_t& getParameterNames() const
146 { return ParameterNames; }
[67cd3a]147
[a63187]148 /** States whether lower and upper boundaries should be used to constraint
149 * the parameter search for this function model.
150 *
151 * \return true - constraints should be used, false - else
152 */
153 bool isBoxConstraint() const {
154 return true;
155 }
156
157 /** Returns a vector which are the lower boundaries for each parameter_t
158 * of this FunctionModel.
159 *
160 * \return vector of parameter_t resembling lowest allowed values
161 */
162 parameters_t getLowerBoxConstraints() const {
163 parameters_t lowerbounds(getParameterDimension(), -std::numeric_limits<double>::max());
[9340ee]164 lowerbounds[equilibrium_distance] = -1.;
[a63187]165 return lowerbounds;
166 }
167
168 /** Returns a vector which are the upper boundaries for each parameter_t
169 * of this FunctionModel.
170 *
171 * \return vector of parameter_t resembling highest allowed values
172 */
173 parameters_t getUpperBoxConstraints() const {
[9340ee]174 parameters_t upperbounds(getParameterDimension(), std::numeric_limits<double>::max());
175 upperbounds[equilibrium_distance] = 1.;
176 return upperbounds;
[a63187]177 }
178
[7b019a]179 /** Returns a bound function to be used with TrainingData, extracting distances
[0f5d38]180 * from a Fragment.
181 *
182 * \return bound function extracting distances from a fragment
183 */
184 FunctionModel::filter_t getSpecificFilter() const;
185
186 /** Returns the number of arguments the underlying function requires.
187 *
188 * \return number of arguments of the function
189 */
190 size_t getSpecificArgumentCount() const
191 { return 3; }
192
[a63187]193 enum parameter_enum_t {
194 spring_constant=0,
195 equilibrium_distance=1,
196 MAXPARAMS
197 };
198
[d5ca1a]199 /** Getter for the graph specifying the binding model of the potential.
200 *
201 * \return HomologyGraph of the binding model
202 */
[9c793c]203 const BindingModel& getBindingModel() const
[d5ca1a]204 { return bindingmodel; }
205
[3f8238]206 /**
207 * Returns the number of particle types associated with the potential.
208 *
209 * \return number of particle types
210 */
211 unsigned int getParticleTypeNumber() const
212 { return 3; }
213
[a63187]214private:
215 result_t
216 function_theta(
217 const double &r_ij,
218 const double &r_ik,
219 const double &r_jk
220 ) const;
221private:
222 //!> parameter vector with parameters as in enum parameter_enum_t
223 parameters_t params;
[ed2551]224
225 //!> static definitions of the parameter name for this potential
226 static const ParameterNames_t ParameterNames;
227
228 //!> static token of this potential type
229 static const std::string potential_token;
[94453f1]230
231 //!> internal coordinator object for converting arguments_t
232 static Coordinator::ptr coordinator;
[d5ca1a]233
234 //!> binding model for this potential
[9c793c]235 const BindingModel bindingmodel;
[a63187]236};
237
[484e2a]238#endif /* THREEBODYPOTENTIAL_ANGLE_HPP_ */
Note: See TracBrowser for help on using the repository browser.