source: src/Potentials/Specifics/PairPotential_Harmonic.cpp@ 1dbbeb

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 1dbbeb was 0932c2, checked in by Frederik Heber <heber@…>, 11 years ago

FIX: RandomNumberEngine_Encapsulation::clone() did not set the seed obtained from its prototype.

  • this caused all engines to always start with default seed of 1, irrespective of the set parameter. The engine is always cloned from prototypes in the factory that can be manipulated to change their parameters. Hence, clone needs to set the seed (the engine's only parameter).
  • EmpiricalPotentials now use RandomNumberGenerator to obtain random starting values.
  • TESTFIX: fit-potential regression tests now use fixed seed in order to always take the same amount of time (some test runs in debug mode take very long because of ill-chosen random values).
  • Property mode set to 100644
File size: 7.4 KB
Line 
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_Harmonic.cpp
27 *
28 * Created on: Sep 26, 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_Harmonic.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 <string>
46
47#include "CodePatterns/Assert.hpp"
48
49#include "FunctionApproximation/Extractors.hpp"
50#include "FunctionApproximation/TrainingData.hpp"
51#include "Potentials/helpers.hpp"
52#include "Potentials/InternalCoordinates/TwoBody_Length.hpp"
53#include "Potentials/ParticleTypeCheckers.hpp"
54#include "RandomNumbers/RandomNumberGeneratorFactory.hpp"
55#include "RandomNumbers/RandomNumberGenerator.hpp"
56
57class Fragment;
58
59// static definitions
60const PairPotential_Harmonic::ParameterNames_t
61PairPotential_Harmonic::ParameterNames =
62 boost::assign::list_of<std::string>
63 ("spring_constant")
64 ("equilibrium_distance")
65 ;
66const std::string PairPotential_Harmonic::potential_token("harmonic_bond");
67Coordinator::ptr PairPotential_Harmonic::coordinator(new TwoBody_Length());
68
69PairPotential_Harmonic::PairPotential_Harmonic() :
70 EmpiricalPotential(),
71 params(parameters_t(MAXPARAMS, 0.))
72{
73 // have some decent defaults for parameter_derivative checking
74 params[spring_constant] = 1.;
75 params[equilibrium_distance] = 1.;
76}
77
78PairPotential_Harmonic::PairPotential_Harmonic(
79 const ParticleTypes_t &_ParticleTypes) :
80 EmpiricalPotential(_ParticleTypes),
81 params(parameters_t(MAXPARAMS, 0.))
82{
83 // have some decent defaults for parameter_derivative checking
84 params[spring_constant] = 1.;
85 params[equilibrium_distance] = 1.;
86}
87
88PairPotential_Harmonic::PairPotential_Harmonic(
89 const ParticleTypes_t &_ParticleTypes,
90 const double _spring_constant,
91 const double _equilibrium_distance) :
92 EmpiricalPotential(_ParticleTypes),
93 params(parameters_t(MAXPARAMS, 0.))
94{
95 params[spring_constant] = _spring_constant;
96 params[equilibrium_distance] = _equilibrium_distance;
97}
98
99void PairPotential_Harmonic::setParameters(const parameters_t &_params)
100{
101 const size_t paramsDim = _params.size();
102 ASSERT( paramsDim <= getParameterDimension(),
103 "PairPotential_Harmonic::setParameters() - we need not more than "
104 +toString(getParameterDimension())+" parameters.");
105 for(size_t i=0;i<paramsDim;++i)
106 params[i] = _params[i];
107
108#ifndef NDEBUG
109 parameters_t check_params(getParameters());
110 check_params.resize(paramsDim); // truncate to same size
111 ASSERT( check_params == _params,
112 "PairPotential_Harmonic::setParameters() - failed, mismatch in to be set "
113 +toString(_params)+" and set "+toString(check_params)+" params.");
114#endif
115}
116
117PairPotential_Harmonic::results_t
118PairPotential_Harmonic::operator()(
119 const arguments_t &arguments
120 ) const
121{
122 ASSERT( arguments.size() == 1,
123 "PairPotential_Harmonic::operator() - requires exactly one argument.");
124 ASSERT( ParticleTypeChecker::checkArgumentsAgainstParticleTypes(
125 arguments, getParticleTypes()),
126 "PairPotential_Harmonic::operator() - types don't match with ones in arguments.");
127 const argument_t &r_ij = arguments[0];
128 const result_t result =
129 params[spring_constant]
130 * Helpers::pow( r_ij.distance - params[equilibrium_distance], 2 );
131 return std::vector<result_t>(1, result);
132}
133
134PairPotential_Harmonic::derivative_components_t
135PairPotential_Harmonic::derivative(
136 const arguments_t &arguments
137 ) const
138{
139 ASSERT( arguments.size() == 1,
140 "PairPotential_Harmonic::operator() - requires exactly one argument.");
141 ASSERT( ParticleTypeChecker::checkArgumentsAgainstParticleTypes(
142 arguments, getParticleTypes()),
143 "PairPotential_Harmonic::operator() - types don't match with ones in arguments.");
144 derivative_components_t result;
145 const argument_t &r_ij = arguments[0];
146 result.push_back( 2. * params[spring_constant] * ( r_ij.distance - params[equilibrium_distance]) );
147 ASSERT( result.size() == 1,
148 "PairPotential_Harmonic::operator() - we did not create exactly one component.");
149 return result;
150}
151
152PairPotential_Harmonic::results_t
153PairPotential_Harmonic::parameter_derivative(
154 const arguments_t &arguments,
155 const size_t index
156 ) const
157{
158 ASSERT( arguments.size() == 1,
159 "PairPotential_Harmonic::parameter_derivative() - requires exactly one argument.");
160 ASSERT( ParticleTypeChecker::checkArgumentsAgainstParticleTypes(
161 arguments, getParticleTypes()),
162 "PairPotential_Harmonic::operator() - types don't match with ones in arguments.");
163 const argument_t &r_ij = arguments[0];
164 switch (index) {
165 case spring_constant:
166 {
167 const result_t result =
168 Helpers::pow( r_ij.distance - params[equilibrium_distance], 2 );
169 return std::vector<result_t>(1, result);
170 break;
171 }
172 case equilibrium_distance:
173 {
174 const result_t result =
175 -2. * params[spring_constant]
176 * ( r_ij.distance - params[equilibrium_distance]);
177 return std::vector<result_t>(1, result);
178 break;
179 }
180 default:
181 ASSERT(0, "PairPotential_Harmonic::parameter_derivative() - derivative to unknown parameter desired.");
182 break;
183 }
184
185 return PairPotential_Harmonic::results_t(1, 0.);
186}
187
188FunctionModel::extractor_t
189PairPotential_Harmonic::getSpecificExtractor() const
190{
191 Fragment::charges_t charges;
192 charges.resize(getParticleTypes().size());
193 std::transform(getParticleTypes().begin(), getParticleTypes().end(),
194 charges.begin(), boost::lambda::_1);
195 FunctionModel::extractor_t returnfunction =
196 boost::bind(&Extractors::gatherDistancesFromFragment,
197 boost::bind(&Fragment::getPositions, _1),
198 boost::bind(&Fragment::getCharges, _1),
199 charges,
200 _2);
201 return returnfunction;
202}
203
204FunctionModel::filter_t PairPotential_Harmonic::getSpecificFilter() const
205{
206 FunctionModel::filter_t returnfunction =
207 boost::bind(&Extractors::filterArgumentsByParticleTypes,
208 _1,
209 getParticleTypes());
210 return returnfunction;
211}
212
213void
214PairPotential_Harmonic::setParametersToRandomInitialValues(
215 const TrainingData &data)
216{
217 RandomNumberGenerator &random = RandomNumberGeneratorFactory::getInstance().makeRandomNumberGenerator();
218 const double rng_min = random.min();
219 const double rng_max = random.max();
220 params[PairPotential_Harmonic::equilibrium_distance] = 3e+0*(random()/(rng_max-rng_min)) + .5;// 1.;
221 params[PairPotential_Harmonic::spring_constant] = 1e+0*(random()/(rng_max-rng_min));// 0.2;
222}
223
Note: See TracBrowser for help on using the repository browser.