source: src/Potentials/Specifics/PairPotential_Angle.cpp@ 39a07a

Action_Thermostats Add_AtomRandomPerturbation Add_FitFragmentPartialChargesAction Add_RotateAroundBondAction Add_SelectAtomByNameAction Added_ParseSaveFragmentResults AddingActions_SaveParseParticleParameters Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_ParticleName_to_Atom Adding_StructOpt_integration_tests AtomFragments Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.5.4 Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator CombiningParticlePotentialParsing Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_BoundInBox_CenterInBox_MoleculeActions Fix_ChargeSampling_PBC Fix_ChronosMutex Fix_FitPartialCharges Fix_FitPotential_needs_atomicnumbers Fix_ForceAnnealing Fix_IndependentFragmentGrids Fix_ParseParticles Fix_ParseParticles_split_forward_backward_Actions Fix_PopActions Fix_QtFragmentList_sorted_selection Fix_Restrictedkeyset_FragmentMolecule Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns Fix_fitting_potentials Fixes ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion FragmentAction_writes_AtomFragments FragmentMolecule_checks_bonddegrees GeometryObjects Gui_Fixes Gui_displays_atomic_force_velocity ImplicitCharges IndependentFragmentGrids IndependentFragmentGrids_IndividualZeroInstances IndependentFragmentGrids_IntegrationTest IndependentFragmentGrids_Sole_NN_Calculation JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix MoreRobust_FragmentAutomation ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PdbParser_setsAtomName PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks Rewrite_FitPartialCharges RotateToPrincipalAxisSystem_UndoRedo SaturateAtoms_findBestMatching SaturateAtoms_singleDegree StoppableMakroAction Subpackage_CodePatterns Subpackage_JobMarket Subpackage_LinearAlgebra Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg Switchable_LogView ThirdParty_MPQC_rebuilt_buildsystem TrajectoryDependenant_MaxOrder TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps TremoloParser_setsAtomName Ubuntu_1604_changes stable
Last change on this file since 39a07a was d52819, checked in by Frederik Heber <heber@…>, 12 years ago

Extracted initial parameter setting per specific potential to FunctionModel::setParametersToRandomInitialValues().

  • this is preparatory for generalizing potential fitting.
  • Property mode set to 100644
File size: 7.5 KB
Line 
1/*
2 * Project: MoleCuilder
3 * Description: creates and alters molecular systems
4 * Copyright (C) 2012 University of Bonn. All rights reserved.
5 * Please see the COPYING file or "Copyright notice" in builder.cpp for details.
6 *
7 *
8 * This file is part of MoleCuilder.
9 *
10 * MoleCuilder is free software: you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation, either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * MoleCuilder is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with MoleCuilder. If not, see <http://www.gnu.org/licenses/>.
22 */
23
24/*
25 * PairPotential_Angle.cpp
26 *
27 * Created on: Oct 11, 2012
28 * Author: heber
29 */
30
31
32// include config.h
33#ifdef HAVE_CONFIG_H
34#include <config.h>
35#endif
36
37#include "CodePatterns/MemDebug.hpp"
38
39#include "PairPotential_Angle.hpp"
40
41#include <boost/assign/list_of.hpp> // for 'map_list_of()'
42#include <boost/bind.hpp>
43#include <string>
44
45#include "CodePatterns/Assert.hpp"
46
47#include "FunctionApproximation/Extractors.hpp"
48#include "FunctionApproximation/TrainingData.hpp"
49#include "Potentials/helpers.hpp"
50#include "Potentials/ParticleTypeCheckers.hpp"
51
52class Fragment;
53
54// static definitions
55const PairPotential_Angle::ParameterNames_t
56PairPotential_Angle::ParameterNames =
57 boost::assign::list_of<std::string>
58 ("spring_constant")
59 ("equilibrium_distance")
60 ("") //energy_offset
61 ;
62const std::string PairPotential_Angle::potential_token("harmonic_angle");
63
64PairPotential_Angle::PairPotential_Angle(
65 const ParticleTypes_t &_ParticleTypes
66 ) :
67 SerializablePotential(_ParticleTypes),
68 params(parameters_t(MAXPARAMS, 0.))
69{
70 // have some decent defaults for parameter_derivative checking
71 params[spring_constant] = 1.;
72 params[equilibrium_distance] = 0.1;
73 params[energy_offset] = 0.1;
74}
75
76PairPotential_Angle::PairPotential_Angle(
77 const ParticleTypes_t &_ParticleTypes,
78 const double _spring_constant,
79 const double _equilibrium_distance,
80 const double _energy_offset) :
81 SerializablePotential(_ParticleTypes),
82 params(parameters_t(MAXPARAMS, 0.))
83{
84 params[spring_constant] = _spring_constant;
85 params[equilibrium_distance] = _equilibrium_distance;
86 params[energy_offset] = _energy_offset;
87}
88
89void PairPotential_Angle::setParameters(const parameters_t &_params)
90{
91 const size_t paramsDim = _params.size();
92 ASSERT( paramsDim <= getParameterDimension(),
93 "PairPotential_Angle::setParameters() - we need not more than "
94 +toString(getParameterDimension())+" parameters.");
95 for(size_t i=0;i<paramsDim;++i)
96 params[i] = _params[i];
97
98#ifndef NDEBUG
99 parameters_t check_params(getParameters());
100 check_params.resize(paramsDim); // truncate to same size
101 ASSERT( check_params == _params,
102 "PairPotential_Angle::setParameters() - failed, mismatch in to be set "
103 +toString(_params)+" and set "+toString(check_params)+" params.");
104#endif
105}
106
107PairPotential_Angle::result_t
108PairPotential_Angle::function_theta(
109 const double &r_ij,
110 const double &r_ik,
111 const double &r_jk
112 ) const
113{
114// Info info(__func__);
115 const double angle = Helpers::pow(r_ij,2) + Helpers::pow(r_ik,2) - Helpers::pow(r_jk,2);
116 const double divisor = 2.* r_ij * r_ik;
117
118// LOG(2, "DEBUG: cos(theta)= " << angle/divisor);
119 if (divisor == 0.)
120 return 0.;
121 else
122 return angle/divisor;
123}
124
125PairPotential_Angle::results_t
126PairPotential_Angle::operator()(
127 const arguments_t &arguments
128 ) const
129{
130 ASSERT( arguments.size() == 3,
131 "PairPotential_Angle::operator() - requires exactly three arguments.");
132 ASSERT( ParticleTypeChecker::checkArgumentsAgainstParticleTypesStrictOrdering(
133 arguments, getParticleTypes()),
134 "PairPotential_Angle::operator() - types don't match with ones in arguments.");
135 const argument_t &r_ij = arguments[0];
136 const argument_t &r_ik = arguments[1];
137 const argument_t &r_jk = arguments[2];
138 const result_t result =
139 params[spring_constant]
140 * Helpers::pow( function_theta(r_ij.distance, r_ik.distance, r_jk.distance) - params[equilibrium_distance], 2 )
141 + params[energy_offset];
142 return std::vector<result_t>(1, result);
143}
144
145PairPotential_Angle::derivative_components_t
146PairPotential_Angle::derivative(
147 const arguments_t &arguments
148 ) const
149{
150 ASSERT( arguments.size() == 3,
151 "PairPotential_Angle::operator() - requires exactly three arguments.");
152 ASSERT( ParticleTypeChecker::checkArgumentsAgainstParticleTypesStrictOrdering(
153 arguments, getParticleTypes()),
154 "PairPotential_Angle::operator() - types don't match with ones in arguments.");
155 derivative_components_t result;
156 const argument_t &r_ij = arguments[0];
157 const argument_t &r_ik = arguments[1];
158 const argument_t &r_jk = arguments[2];
159 result.push_back( 2. * params[spring_constant] * ( function_theta(r_ij.distance, r_ik.distance, r_jk.distance) - params[equilibrium_distance]) );
160 ASSERT( result.size() == 1,
161 "PairPotential_Angle::operator() - we did not create exactly one component.");
162 return result;
163}
164
165PairPotential_Angle::results_t
166PairPotential_Angle::parameter_derivative(
167 const arguments_t &arguments,
168 const size_t index
169 ) const
170{
171 ASSERT( arguments.size() == 3,
172 "PairPotential_Angle::parameter_derivative() - requires exactly three arguments.");
173 ASSERT( ParticleTypeChecker::checkArgumentsAgainstParticleTypesStrictOrdering(
174 arguments, getParticleTypes()),
175 "PairPotential_Angle::operator() - types don't match with ones in arguments.");
176 const argument_t &r_ij = arguments[0];
177 const argument_t &r_ik = arguments[1];
178 const argument_t &r_jk = arguments[2];
179 switch (index) {
180 case spring_constant:
181 {
182 const result_t result =
183 Helpers::pow( function_theta(r_ij.distance, r_ik.distance, r_jk.distance) - params[equilibrium_distance], 2 );
184 return std::vector<result_t>(1, result);
185 break;
186 }
187 case equilibrium_distance:
188 {
189 const result_t result =
190 -2. * params[spring_constant]
191 * ( function_theta(r_ij.distance, r_ik.distance, r_jk.distance) - params[equilibrium_distance]);
192 return std::vector<result_t>(1, result);
193 break;
194 }
195 case energy_offset:
196 {
197 const result_t result = +1.;
198 return std::vector<result_t>(1, result);
199 break;
200 }
201 default:
202 return PairPotential_Angle::results_t(1, 0.);
203 break;
204 }
205}
206
207FunctionModel::extractor_t
208PairPotential_Angle::getFragmentSpecificExtractor(
209 const charges_t &charges) const
210{
211 ASSERT(charges.size() == (size_t)3,
212 "PairPotential_Angle::getFragmentSpecificExtractor() - requires 3 charges.");
213 FunctionModel::extractor_t returnfunction =
214 boost::bind(&Extractors::gatherDistancesFromFragment,
215 boost::bind(&Fragment::getPositions, _1),
216 boost::bind(&Fragment::getCharges, _1),
217 boost::cref(charges),
218 _2);
219 return returnfunction;
220}
221
222void
223PairPotential_Angle::setParametersToRandomInitialValues(
224 const TrainingData &data)
225{
226 params[PairPotential_Angle::energy_offset] =
227 data.getTrainingOutputAverage()[0];// -1.;
228 params[PairPotential_Angle::spring_constant] = 1e+0*rand()/(double)RAND_MAX;// 0.2;
229 params[PairPotential_Angle::equilibrium_distance] = -0.3;//2e+0*rand()/(double)RAND_MAX - 1.;// 1.;
230}
231
Note: See TracBrowser for help on using the repository browser.