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(new TwoBody_Length());
|
---|
70 |
|
---|
71 | PairPotential_Morse::PairPotential_Morse() :
|
---|
72 | EmpiricalPotential(),
|
---|
73 | params(parameters_t(MAXPARAMS, 0.))
|
---|
74 | {
|
---|
75 | // have some decent defaults for parameter_derivative checking
|
---|
76 | params[spring_constant] = 1.;
|
---|
77 | params[equilibrium_distance] = 1.;
|
---|
78 | params[dissociation_energy] = 0.1;
|
---|
79 | }
|
---|
80 |
|
---|
81 | PairPotential_Morse::PairPotential_Morse(
|
---|
82 | const ParticleTypes_t &_ParticleTypes
|
---|
83 | ) :
|
---|
84 | EmpiricalPotential(_ParticleTypes),
|
---|
85 | params(parameters_t(MAXPARAMS, 0.))
|
---|
86 | {
|
---|
87 | // have some decent defaults for parameter_derivative checking
|
---|
88 | params[spring_constant] = 1.;
|
---|
89 | params[equilibrium_distance] = 1.;
|
---|
90 | params[dissociation_energy] = 0.1;
|
---|
91 | }
|
---|
92 |
|
---|
93 | PairPotential_Morse::PairPotential_Morse(
|
---|
94 | const ParticleTypes_t &_ParticleTypes,
|
---|
95 | const double _spring_constant,
|
---|
96 | const double _equilibrium_distance,
|
---|
97 | const double _dissociation_energy) :
|
---|
98 | EmpiricalPotential(_ParticleTypes),
|
---|
99 | params(parameters_t(MAXPARAMS, 0.))
|
---|
100 | {
|
---|
101 | params[spring_constant] = _spring_constant;
|
---|
102 | params[equilibrium_distance] = _equilibrium_distance;
|
---|
103 | params[dissociation_energy] = _dissociation_energy;
|
---|
104 | }
|
---|
105 |
|
---|
106 | void PairPotential_Morse::setParameters(const parameters_t &_params)
|
---|
107 | {
|
---|
108 | const size_t paramsDim = _params.size();
|
---|
109 | ASSERT( paramsDim <= getParameterDimension(),
|
---|
110 | "PairPotential_Morse::setParameters() - we need not more than "
|
---|
111 | +toString(getParameterDimension())+" parameters.");
|
---|
112 | for(size_t i=0;i<paramsDim;++i)
|
---|
113 | params[i] = _params[i];
|
---|
114 |
|
---|
115 | #ifndef NDEBUG
|
---|
116 | parameters_t check_params(getParameters());
|
---|
117 | check_params.resize(paramsDim); // truncate to same size
|
---|
118 | ASSERT( check_params == _params,
|
---|
119 | "PairPotential_Morse::setParameters() - failed, mismatch in to be set "
|
---|
120 | +toString(_params)+" and set "+toString(check_params)+" params.");
|
---|
121 | #endif
|
---|
122 | }
|
---|
123 |
|
---|
124 | PairPotential_Morse::results_t
|
---|
125 | PairPotential_Morse::operator()(
|
---|
126 | const arguments_t &arguments
|
---|
127 | ) const
|
---|
128 | {
|
---|
129 | ASSERT( arguments.size() == 1,
|
---|
130 | "PairPotential_Morse::operator() - requires exactly one argument.");
|
---|
131 | ASSERT( ParticleTypeChecker::checkArgumentsAgainstParticleTypes(
|
---|
132 | arguments, getParticleTypes()),
|
---|
133 | "PairPotential_Morse::operator() - types don't match with ones in arguments.");
|
---|
134 | const argument_t &r_ij = arguments[0];
|
---|
135 | // Maple: f(r,D,k,R,c) := D * (1 - exp(-k*(r-R)))^(2)+c
|
---|
136 | const result_t result =
|
---|
137 | params[dissociation_energy] * Helpers::pow( 1.
|
---|
138 | - exp( - params[spring_constant] * ( r_ij.distance - params[equilibrium_distance])),2);
|
---|
139 | return std::vector<result_t>(1, result);
|
---|
140 | }
|
---|
141 |
|
---|
142 | PairPotential_Morse::derivative_components_t
|
---|
143 | PairPotential_Morse::derivative(
|
---|
144 | const arguments_t &arguments
|
---|
145 | ) const
|
---|
146 | {
|
---|
147 | ASSERT( arguments.size() == 1,
|
---|
148 | "PairPotential_Morse::operator() - requires exactly one argument.");
|
---|
149 | ASSERT( ParticleTypeChecker::checkArgumentsAgainstParticleTypes(
|
---|
150 | arguments, getParticleTypes()),
|
---|
151 | "PairPotential_Morse::operator() - types don't match with ones in arguments.");
|
---|
152 | derivative_components_t result;
|
---|
153 | const argument_t &r_ij = arguments[0];
|
---|
154 | // Maple result: 2*D*(1-exp(-k*(r-R)))*k*exp(-k*(r-R))
|
---|
155 | result.push_back(
|
---|
156 | 2. * params[dissociation_energy]
|
---|
157 | * ( 1. - exp( - params[spring_constant] * ( r_ij.distance - params[equilibrium_distance])))
|
---|
158 | * (- params[spring_constant]) * exp( - params[spring_constant] * ( r_ij.distance - params[equilibrium_distance]))
|
---|
159 | );
|
---|
160 | ASSERT( result.size() == 1,
|
---|
161 | "PairPotential_Morse::operator() - we did not create exactly one component.");
|
---|
162 | return result;
|
---|
163 | }
|
---|
164 |
|
---|
165 | PairPotential_Morse::results_t
|
---|
166 | PairPotential_Morse::parameter_derivative(
|
---|
167 | const arguments_t &arguments,
|
---|
168 | const size_t index
|
---|
169 | ) const
|
---|
170 | {
|
---|
171 | ASSERT( arguments.size() == 1,
|
---|
172 | "PairPotential_Morse::parameter_derivative() - requires exactly one argument.");
|
---|
173 | ASSERT( ParticleTypeChecker::checkArgumentsAgainstParticleTypes(
|
---|
174 | arguments, getParticleTypes()),
|
---|
175 | "PairPotential_Morse::operator() - types don't match with ones in arguments.");
|
---|
176 | const argument_t &r_ij = arguments[0];
|
---|
177 | switch (index) {
|
---|
178 | case spring_constant:
|
---|
179 | {
|
---|
180 | // Maple result: -2*D*(1-exp(-k*(r-R)))*(-r+R)*exp(-k*(r-R))
|
---|
181 | const result_t result =
|
---|
182 | - 2. * params[dissociation_energy]
|
---|
183 | * ( 1. - exp( - params[spring_constant] * ( r_ij.distance - params[equilibrium_distance])))
|
---|
184 | * (- r_ij.distance + params[equilibrium_distance])
|
---|
185 | * exp( - params[spring_constant] * ( r_ij.distance - params[equilibrium_distance]))
|
---|
186 | ;
|
---|
187 | return std::vector<result_t>(1, result);
|
---|
188 | break;
|
---|
189 | }
|
---|
190 | case equilibrium_distance:
|
---|
191 | {
|
---|
192 | // Maple result: -2*D*(1-exp(-k*(r-R)))*k*exp(-k*(r-R))
|
---|
193 | const result_t result =
|
---|
194 | - 2. * params[dissociation_energy]
|
---|
195 | * ( 1. - exp( - params[spring_constant] * ( r_ij.distance - params[equilibrium_distance])))
|
---|
196 | * params[spring_constant] * exp( - params[spring_constant] * ( r_ij.distance - params[equilibrium_distance]))
|
---|
197 | ;
|
---|
198 | return std::vector<result_t>(1, result);
|
---|
199 | break;
|
---|
200 | }
|
---|
201 | case dissociation_energy:
|
---|
202 | {
|
---|
203 | // Maple result: (1-exp(-k*(r-R)))^2
|
---|
204 | const result_t result =
|
---|
205 | Helpers::pow(1.
|
---|
206 | - exp( - params[spring_constant] * ( r_ij.distance - params[equilibrium_distance])),2);
|
---|
207 | return std::vector<result_t>(1, result);
|
---|
208 | break;
|
---|
209 | }
|
---|
210 | default:
|
---|
211 | ASSERT(0, "PairPotential_Morse::parameter_derivative() - derivative to unknown parameter desired.");
|
---|
212 | break;
|
---|
213 | }
|
---|
214 | return std::vector<result_t>(1, 0.);
|
---|
215 | }
|
---|
216 |
|
---|
217 | FunctionModel::filter_t PairPotential_Morse::getSpecificFilter() const
|
---|
218 | {
|
---|
219 | FunctionModel::filter_t returnfunction =
|
---|
220 | boost::bind(&Extractors::filterArgumentsByParticleTypes,
|
---|
221 | _1,
|
---|
222 | getParticleTypes());
|
---|
223 | return returnfunction;
|
---|
224 | }
|
---|
225 |
|
---|
226 | void
|
---|
227 | PairPotential_Morse::setParametersToRandomInitialValues(
|
---|
228 | const TrainingData &data)
|
---|
229 | {
|
---|
230 | RandomNumberGenerator &random = RandomNumberGeneratorFactory::getInstance().makeRandomNumberGenerator();
|
---|
231 | const double rng_min = random.min();
|
---|
232 | const double rng_max = random.max();
|
---|
233 | params[PairPotential_Morse::dissociation_energy] = 1e+0*(random()/(rng_max-rng_min));// 0.5;
|
---|
234 | params[PairPotential_Morse::spring_constant] = 1e+0*(random()/(rng_max-rng_min));// 1.;
|
---|
235 | params[PairPotential_Morse::equilibrium_distance] = 3e+0*(random()/(rng_max-rng_min));//2.9;
|
---|
236 | }
|
---|
237 |
|
---|