1 | /*
|
---|
2 | * Project: MoleCuilder
|
---|
3 | * Description: creates and alters molecular systems
|
---|
4 | * Copyright (C) 2012 University of Bonn. All rights reserved.
|
---|
5 | * Copyright (C) 2013 Frederik Heber. All rights reserved.
|
---|
6 | * Please see the COPYING file or "Copyright notice" in builder.cpp for details.
|
---|
7 | *
|
---|
8 | *
|
---|
9 | * This file is part of MoleCuilder.
|
---|
10 | *
|
---|
11 | * MoleCuilder is free software: you can redistribute it and/or modify
|
---|
12 | * it under the terms of the GNU General Public License as published by
|
---|
13 | * the Free Software Foundation, either version 2 of the License, or
|
---|
14 | * (at your option) any later version.
|
---|
15 | *
|
---|
16 | * MoleCuilder is distributed in the hope that it will be useful,
|
---|
17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
19 | * GNU General Public License for more details.
|
---|
20 | *
|
---|
21 | * You should have received a copy of the GNU General Public License
|
---|
22 | * along with MoleCuilder. If not, see <http://www.gnu.org/licenses/>.
|
---|
23 | */
|
---|
24 |
|
---|
25 | /*
|
---|
26 | * PairPotential_Morse.cpp
|
---|
27 | *
|
---|
28 | * Created on: Oct 03, 2012
|
---|
29 | * Author: heber
|
---|
30 | */
|
---|
31 |
|
---|
32 |
|
---|
33 | // include config.h
|
---|
34 | #ifdef HAVE_CONFIG_H
|
---|
35 | #include <config.h>
|
---|
36 | #endif
|
---|
37 |
|
---|
38 | #include "CodePatterns/MemDebug.hpp"
|
---|
39 |
|
---|
40 | #include "PairPotential_Morse.hpp"
|
---|
41 |
|
---|
42 | #include <boost/assign/list_of.hpp> // for 'map_list_of()'
|
---|
43 | #include <boost/bind.hpp>
|
---|
44 | #include <boost/lambda/lambda.hpp>
|
---|
45 | #include <cmath>
|
---|
46 | #include <string>
|
---|
47 |
|
---|
48 | #include "CodePatterns/Assert.hpp"
|
---|
49 |
|
---|
50 | #include "FunctionApproximation/Extractors.hpp"
|
---|
51 | #include "FunctionApproximation/TrainingData.hpp"
|
---|
52 | #include "Potentials/helpers.hpp"
|
---|
53 | #include "Potentials/InternalCoordinates/TwoBody_Length.hpp"
|
---|
54 | #include "Potentials/ParticleTypeCheckers.hpp"
|
---|
55 | #include "RandomNumbers/RandomNumberGeneratorFactory.hpp"
|
---|
56 | #include "RandomNumbers/RandomNumberGenerator.hpp"
|
---|
57 |
|
---|
58 | class Fragment;
|
---|
59 |
|
---|
60 | // static definitions
|
---|
61 | const PairPotential_Morse::ParameterNames_t
|
---|
62 | PairPotential_Morse::ParameterNames =
|
---|
63 | boost::assign::list_of<std::string>
|
---|
64 | ("spring_constant")
|
---|
65 | ("equilibrium_distance")
|
---|
66 | ("dissociation_energy")
|
---|
67 | ;
|
---|
68 | const std::string PairPotential_Morse::potential_token("morse");
|
---|
69 | Coordinator::ptr PairPotential_Morse::coordinator(Memory::ignore(new TwoBody_Length()));
|
---|
70 |
|
---|
71 | static HomologyGraph generateBindingModel(const EmpiricalPotential::ParticleTypes_t &_ParticleTypes)
|
---|
72 | {
|
---|
73 | // fill nodes
|
---|
74 | HomologyGraph::nodes_t nodes;
|
---|
75 | {
|
---|
76 | ASSERT( _ParticleTypes.size() == (size_t)2,
|
---|
77 | "generateBindingModel() - PairPotential_Morse needs two types.");
|
---|
78 | std::pair<HomologyGraph::nodes_t::iterator, bool > inserter;
|
---|
79 | inserter = nodes.insert( std::make_pair(FragmentNode(_ParticleTypes[0], 1), 1) );
|
---|
80 | if (!inserter.second)
|
---|
81 | ++(inserter.first->second);
|
---|
82 | inserter = nodes.insert( std::make_pair(FragmentNode(_ParticleTypes[1], 1), 1) );
|
---|
83 | if (!inserter.second)
|
---|
84 | ++(inserter.first->second);
|
---|
85 | }
|
---|
86 |
|
---|
87 | // there are no edges
|
---|
88 | HomologyGraph::edges_t edges;
|
---|
89 | {
|
---|
90 | edges.insert( std::make_pair( FragmentEdge(_ParticleTypes[0], _ParticleTypes[1]), 1) );
|
---|
91 | }
|
---|
92 |
|
---|
93 | return HomologyGraph(nodes, edges);
|
---|
94 | }
|
---|
95 |
|
---|
96 | PairPotential_Morse::PairPotential_Morse() :
|
---|
97 | EmpiricalPotential(),
|
---|
98 | params(parameters_t(MAXPARAMS, 0.)),
|
---|
99 | bindingmodel(HomologyGraph())
|
---|
100 | {
|
---|
101 | // have some decent defaults for parameter_derivative checking
|
---|
102 | params[spring_constant] = 1.;
|
---|
103 | params[equilibrium_distance] = 1.;
|
---|
104 | params[dissociation_energy] = 0.1;
|
---|
105 | }
|
---|
106 |
|
---|
107 | PairPotential_Morse::PairPotential_Morse(
|
---|
108 | const ParticleTypes_t &_ParticleTypes
|
---|
109 | ) :
|
---|
110 | EmpiricalPotential(_ParticleTypes),
|
---|
111 | params(parameters_t(MAXPARAMS, 0.)),
|
---|
112 | bindingmodel(generateBindingModel(_ParticleTypes))
|
---|
113 | {
|
---|
114 | // have some decent defaults for parameter_derivative checking
|
---|
115 | params[spring_constant] = 1.;
|
---|
116 | params[equilibrium_distance] = 1.;
|
---|
117 | params[dissociation_energy] = 0.1;
|
---|
118 | }
|
---|
119 |
|
---|
120 | PairPotential_Morse::PairPotential_Morse(
|
---|
121 | const ParticleTypes_t &_ParticleTypes,
|
---|
122 | const double _spring_constant,
|
---|
123 | const double _equilibrium_distance,
|
---|
124 | const double _dissociation_energy) :
|
---|
125 | EmpiricalPotential(_ParticleTypes),
|
---|
126 | params(parameters_t(MAXPARAMS, 0.)),
|
---|
127 | bindingmodel(generateBindingModel(_ParticleTypes))
|
---|
128 | {
|
---|
129 | params[spring_constant] = _spring_constant;
|
---|
130 | params[equilibrium_distance] = _equilibrium_distance;
|
---|
131 | params[dissociation_energy] = _dissociation_energy;
|
---|
132 | }
|
---|
133 |
|
---|
134 | void PairPotential_Morse::setParameters(const parameters_t &_params)
|
---|
135 | {
|
---|
136 | const size_t paramsDim = _params.size();
|
---|
137 | ASSERT( paramsDim <= getParameterDimension(),
|
---|
138 | "PairPotential_Morse::setParameters() - we need not more than "
|
---|
139 | +toString(getParameterDimension())+" parameters.");
|
---|
140 | for(size_t i=0;i<paramsDim;++i)
|
---|
141 | params[i] = _params[i];
|
---|
142 |
|
---|
143 | #ifndef NDEBUG
|
---|
144 | parameters_t check_params(getParameters());
|
---|
145 | check_params.resize(paramsDim); // truncate to same size
|
---|
146 | ASSERT( check_params == _params,
|
---|
147 | "PairPotential_Morse::setParameters() - failed, mismatch in to be set "
|
---|
148 | +toString(_params)+" and set "+toString(check_params)+" params.");
|
---|
149 | #endif
|
---|
150 | }
|
---|
151 |
|
---|
152 | PairPotential_Morse::results_t
|
---|
153 | PairPotential_Morse::operator()(
|
---|
154 | const list_of_arguments_t &listarguments
|
---|
155 | ) const
|
---|
156 | {
|
---|
157 | result_t result = 0.;
|
---|
158 | for(list_of_arguments_t::const_iterator iter = listarguments.begin();
|
---|
159 | iter != listarguments.end(); ++iter) {
|
---|
160 | const arguments_t &arguments = *iter;
|
---|
161 | ASSERT( arguments.size() == 1,
|
---|
162 | "PairPotential_Morse::operator() - requires exactly one argument.");
|
---|
163 | ASSERT( ParticleTypeChecker::checkArgumentsAgainstParticleTypes(
|
---|
164 | arguments, getParticleTypes()),
|
---|
165 | "PairPotential_Morse::operator() - types don't match with ones in arguments.");
|
---|
166 | const argument_t &r_ij = arguments[0];
|
---|
167 | // Maple: f(r,D,k,R,c) := D * (1 - exp(-k*(r-R)))^(2)+c
|
---|
168 | result +=
|
---|
169 | params[dissociation_energy] * Helpers::pow( 1.
|
---|
170 | - exp( - params[spring_constant] * ( r_ij.distance - params[equilibrium_distance])),2);
|
---|
171 | }
|
---|
172 | return std::vector<result_t>(1, result);
|
---|
173 | }
|
---|
174 |
|
---|
175 | PairPotential_Morse::derivative_components_t
|
---|
176 | PairPotential_Morse::derivative(
|
---|
177 | const list_of_arguments_t &listarguments
|
---|
178 | ) const
|
---|
179 | {
|
---|
180 | result_t result = 0.;
|
---|
181 | for(list_of_arguments_t::const_iterator iter = listarguments.begin();
|
---|
182 | iter != listarguments.end(); ++iter) {
|
---|
183 | const arguments_t &arguments = *iter;
|
---|
184 | ASSERT( arguments.size() == 1,
|
---|
185 | "PairPotential_Morse::operator() - requires exactly one argument.");
|
---|
186 | ASSERT( ParticleTypeChecker::checkArgumentsAgainstParticleTypes(
|
---|
187 | arguments, getParticleTypes()),
|
---|
188 | "PairPotential_Morse::operator() - types don't match with ones in arguments.");
|
---|
189 | const argument_t &r_ij = arguments[0];
|
---|
190 | // Maple result: 2*D*(1-exp(-k*(r-R)))*k*exp(-k*(r-R))
|
---|
191 | result +=
|
---|
192 | 2. * params[dissociation_energy]
|
---|
193 | * ( 1. - exp( - params[spring_constant] * ( r_ij.distance - params[equilibrium_distance])))
|
---|
194 | * (- params[spring_constant]) * exp( - params[spring_constant] * ( r_ij.distance - params[equilibrium_distance]));
|
---|
195 | }
|
---|
196 | return derivative_components_t(1, result);
|
---|
197 | }
|
---|
198 |
|
---|
199 | PairPotential_Morse::results_t
|
---|
200 | PairPotential_Morse::parameter_derivative(
|
---|
201 | const list_of_arguments_t &listarguments,
|
---|
202 | const size_t index
|
---|
203 | ) const
|
---|
204 | {
|
---|
205 | result_t result = 0.;
|
---|
206 | for(list_of_arguments_t::const_iterator iter = listarguments.begin();
|
---|
207 | iter != listarguments.end(); ++iter) {
|
---|
208 | const arguments_t &arguments = *iter;
|
---|
209 | ASSERT( arguments.size() == 1,
|
---|
210 | "PairPotential_Morse::parameter_derivative() - requires exactly one argument.");
|
---|
211 | ASSERT( ParticleTypeChecker::checkArgumentsAgainstParticleTypes(
|
---|
212 | arguments, getParticleTypes()),
|
---|
213 | "PairPotential_Morse::operator() - types don't match with ones in arguments.");
|
---|
214 | const argument_t &r_ij = arguments[0];
|
---|
215 | switch (index) {
|
---|
216 | case spring_constant:
|
---|
217 | {
|
---|
218 | // Maple result: -2*D*(1-exp(-k*(r-R)))*(-r+R)*exp(-k*(r-R))
|
---|
219 | result +=
|
---|
220 | - 2. * params[dissociation_energy]
|
---|
221 | * ( 1. - exp( - params[spring_constant] * ( r_ij.distance - params[equilibrium_distance])))
|
---|
222 | * (- r_ij.distance + params[equilibrium_distance])
|
---|
223 | * exp( - params[spring_constant] * ( r_ij.distance - params[equilibrium_distance]))
|
---|
224 | ;
|
---|
225 | break;
|
---|
226 | }
|
---|
227 | case equilibrium_distance:
|
---|
228 | {
|
---|
229 | // Maple result: -2*D*(1-exp(-k*(r-R)))*k*exp(-k*(r-R))
|
---|
230 | result +=
|
---|
231 | - 2. * params[dissociation_energy]
|
---|
232 | * ( 1. - exp( - params[spring_constant] * ( r_ij.distance - params[equilibrium_distance])))
|
---|
233 | * params[spring_constant] * exp( - params[spring_constant] * ( r_ij.distance - params[equilibrium_distance]))
|
---|
234 | ;
|
---|
235 | break;
|
---|
236 | }
|
---|
237 | case dissociation_energy:
|
---|
238 | {
|
---|
239 | // Maple result: (1-exp(-k*(r-R)))^2
|
---|
240 | result +=
|
---|
241 | Helpers::pow(1.
|
---|
242 | - exp( - params[spring_constant] * ( r_ij.distance - params[equilibrium_distance])),2);
|
---|
243 | break;
|
---|
244 | }
|
---|
245 | default:
|
---|
246 | ASSERT(0, "PairPotential_Morse::parameter_derivative() - derivative to unknown parameter desired.");
|
---|
247 | break;
|
---|
248 | }
|
---|
249 | }
|
---|
250 | return results_t(1, result);
|
---|
251 | }
|
---|
252 |
|
---|
253 | FunctionModel::filter_t PairPotential_Morse::getSpecificFilter() const
|
---|
254 | {
|
---|
255 | FunctionModel::filter_t returnfunction =
|
---|
256 | boost::bind(&Extractors::filterArgumentsByParticleTypes,
|
---|
257 | _2, _1,
|
---|
258 | boost::cref(getParticleTypes()), boost::cref(getBindingModel()));
|
---|
259 | return returnfunction;
|
---|
260 | }
|
---|
261 |
|
---|
262 | void
|
---|
263 | PairPotential_Morse::setParametersToRandomInitialValues(
|
---|
264 | const TrainingData &data)
|
---|
265 | {
|
---|
266 | RandomNumberGenerator &random = RandomNumberGeneratorFactory::getInstance().makeRandomNumberGenerator();
|
---|
267 | const double rng_min = random.min();
|
---|
268 | const double rng_max = random.max();
|
---|
269 | params[PairPotential_Morse::dissociation_energy] = 1e+0*(random()/(rng_max-rng_min));// 0.5;
|
---|
270 | params[PairPotential_Morse::spring_constant] = 1e+0*(random()/(rng_max-rng_min));// 1.;
|
---|
271 | params[PairPotential_Morse::equilibrium_distance] = 3e+0*(random()/(rng_max-rng_min));//2.9;
|
---|
272 | }
|
---|
273 |
|
---|