source: src/Potentials/Specifics/ConstantPotential.cpp@ 713888

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 713888 was acc9b1, checked in by Frederik Heber <heber@…>, 12 years ago

FIX: Added new copyright lines to files in src/Potentials, too.

  • Property mode set to 100644
File size: 5.3 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 * ConstantPotential.cpp
27 *
28 * Created on: May 09, 2013
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 "ConstantPotential.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/ParticleTypeCheckers.hpp"
54
55class Fragment;
56
57// static definitions
58const ConstantPotential::ParameterNames_t
59ConstantPotential::ParameterNames =
60 boost::assign::list_of<std::string>
61 ("energy_offset") //
62 ;
63const std::string ConstantPotential::potential_token("constant");
64
65ConstantPotential::ConstantPotential(
66 const ParticleTypes_t &_ParticleTypes
67 ) :
68 EmpiricalPotential(_ParticleTypes),
69 params(parameters_t(MAXPARAMS, 0.))
70{
71 // have some decent defaults for parameter_derivative checking
72 params[energy_offset] = 0.1;
73}
74
75ConstantPotential::ConstantPotential(
76 const ParticleTypes_t &_ParticleTypes,
77 const double _energy_offset) :
78 EmpiricalPotential(_ParticleTypes),
79 params(parameters_t(MAXPARAMS, 0.))
80{
81 params[energy_offset] = _energy_offset;
82}
83
84void ConstantPotential::setParameters(const parameters_t &_params)
85{
86 const size_t paramsDim = _params.size();
87 ASSERT( paramsDim <= getParameterDimension(),
88 "ConstantPotential::setParameters() - we need not more than "
89 +toString(getParameterDimension())+" parameters.");
90 for(size_t i=0;i<paramsDim;++i)
91 params[i] = _params[i];
92
93#ifndef NDEBUG
94 parameters_t check_params(getParameters());
95 check_params.resize(paramsDim); // truncate to same size
96 ASSERT( check_params == _params,
97 "ConstantPotential::setParameters() - failed, mismatch in to be set "
98 +toString(_params)+" and set "+toString(check_params)+" params.");
99#endif
100}
101
102ConstantPotential::results_t
103ConstantPotential::operator()(
104 const arguments_t &arguments
105 ) const
106{
107 ASSERT( arguments.size() == 0,
108 "ConstantPotential::operator() - requires no argument.");
109 ASSERT( ParticleTypeChecker::checkArgumentsAgainstParticleTypes(
110 arguments, getParticleTypes()),
111 "ConstantPotential::operator() - types don't match with ones in arguments.");
112 const result_t result = params[energy_offset];
113 return std::vector<result_t>(1, result);
114}
115
116ConstantPotential::derivative_components_t
117ConstantPotential::derivative(
118 const arguments_t &arguments
119 ) const
120{
121 ASSERT( arguments.size() == 0,
122 "ConstantPotential::operator() - requires no argument.");
123 ASSERT( ParticleTypeChecker::checkArgumentsAgainstParticleTypes(
124 arguments, getParticleTypes()),
125 "ConstantPotential::operator() - types don't match with ones in arguments.");
126 derivative_components_t result(1, 0.);
127 return result;
128}
129
130ConstantPotential::results_t
131ConstantPotential::parameter_derivative(
132 const arguments_t &arguments,
133 const size_t index
134 ) const
135{
136 ASSERT( arguments.size() == 0,
137 "ConstantPotential::parameter_derivative() - requires no argument.");
138 ASSERT( ParticleTypeChecker::checkArgumentsAgainstParticleTypes(
139 arguments, getParticleTypes()),
140 "ConstantPotential::operator() - types don't match with ones in arguments.");
141 switch (index) {
142 case energy_offset:
143 {
144 // Maple result: 1
145 const result_t result = +1.;
146 return std::vector<result_t>(1, result);
147 break;
148 }
149 default:
150 break;
151 }
152 return std::vector<result_t>(1, 0.);
153}
154
155FunctionModel::extractor_t
156ConstantPotential::getFragmentSpecificExtractor() const
157{
158 Fragment::charges_t charges;
159 charges.resize(getParticleTypes().size());
160 std::transform(getParticleTypes().begin(), getParticleTypes().end(),
161 charges.begin(), boost::lambda::_1);
162 FunctionModel::extractor_t returnfunction =
163 boost::bind(&Extractors::gatherDistancesFromFragment,
164 boost::bind(&Fragment::getPositions, _1),
165 boost::bind(&Fragment::getCharges, _1),
166 charges,
167 _2);
168 return returnfunction;
169}
170
171void
172ConstantPotential::setParametersToRandomInitialValues(
173 const TrainingData &data)
174{
175 params[ConstantPotential::energy_offset] =
176 data.getTrainingOutputAverage()[0];// -1.;
177}
178
Note: See TracBrowser for help on using the repository browser.