[a63187] | 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 |
|
---|
[ed2551] | 41 | #include <boost/assign/list_of.hpp> // for 'map_list_of()'
|
---|
[7b019a] | 42 | #include <boost/bind.hpp>
|
---|
[ed2551] | 43 | #include <string>
|
---|
| 44 |
|
---|
[a63187] | 45 | #include "CodePatterns/Assert.hpp"
|
---|
| 46 |
|
---|
[7b019a] | 47 | #include "FunctionApproximation/Extractors.hpp"
|
---|
[d52819] | 48 | #include "FunctionApproximation/TrainingData.hpp"
|
---|
[a63187] | 49 | #include "Potentials/helpers.hpp"
|
---|
[b760bc3] | 50 | #include "Potentials/ParticleTypeCheckers.hpp"
|
---|
[a63187] | 51 |
|
---|
[7b019a] | 52 | class Fragment;
|
---|
| 53 |
|
---|
[ed2551] | 54 | // static definitions
|
---|
| 55 | const PairPotential_Angle::ParameterNames_t
|
---|
| 56 | PairPotential_Angle::ParameterNames =
|
---|
| 57 | boost::assign::list_of<std::string>
|
---|
| 58 | ("spring_constant")
|
---|
| 59 | ("equilibrium_distance")
|
---|
| 60 | ("") //energy_offset
|
---|
| 61 | ;
|
---|
| 62 | const std::string PairPotential_Angle::potential_token("harmonic_angle");
|
---|
| 63 |
|
---|
| 64 | PairPotential_Angle::PairPotential_Angle(
|
---|
| 65 | const ParticleTypes_t &_ParticleTypes
|
---|
| 66 | ) :
|
---|
| 67 | SerializablePotential(_ParticleTypes),
|
---|
[a63187] | 68 | params(parameters_t(MAXPARAMS, 0.))
|
---|
[dbf8c8] | 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 | }
|
---|
[a63187] | 75 |
|
---|
| 76 | PairPotential_Angle::PairPotential_Angle(
|
---|
[ed2551] | 77 | const ParticleTypes_t &_ParticleTypes,
|
---|
[a63187] | 78 | const double _spring_constant,
|
---|
| 79 | const double _equilibrium_distance,
|
---|
| 80 | const double _energy_offset) :
|
---|
[ed2551] | 81 | SerializablePotential(_ParticleTypes),
|
---|
| 82 | params(parameters_t(MAXPARAMS, 0.))
|
---|
[a63187] | 83 | {
|
---|
| 84 | params[spring_constant] = _spring_constant;
|
---|
| 85 | params[equilibrium_distance] = _equilibrium_distance;
|
---|
| 86 | params[energy_offset] = _energy_offset;
|
---|
| 87 | }
|
---|
| 88 |
|
---|
[086070] | 89 | void 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 |
|
---|
[a63187] | 107 | PairPotential_Angle::result_t
|
---|
| 108 | PairPotential_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 |
|
---|
| 125 | PairPotential_Angle::results_t
|
---|
| 126 | PairPotential_Angle::operator()(
|
---|
| 127 | const arguments_t &arguments
|
---|
| 128 | ) const
|
---|
| 129 | {
|
---|
| 130 | ASSERT( arguments.size() == 3,
|
---|
| 131 | "PairPotential_Angle::operator() - requires exactly three arguments.");
|
---|
[b760bc3] | 132 | ASSERT( ParticleTypeChecker::checkArgumentsAgainstParticleTypesStrictOrdering(
|
---|
| 133 | arguments, getParticleTypes()),
|
---|
| 134 | "PairPotential_Angle::operator() - types don't match with ones in arguments.");
|
---|
[a63187] | 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 |
|
---|
| 145 | PairPotential_Angle::derivative_components_t
|
---|
| 146 | PairPotential_Angle::derivative(
|
---|
| 147 | const arguments_t &arguments
|
---|
| 148 | ) const
|
---|
| 149 | {
|
---|
| 150 | ASSERT( arguments.size() == 3,
|
---|
| 151 | "PairPotential_Angle::operator() - requires exactly three arguments.");
|
---|
[b760bc3] | 152 | ASSERT( ParticleTypeChecker::checkArgumentsAgainstParticleTypesStrictOrdering(
|
---|
| 153 | arguments, getParticleTypes()),
|
---|
| 154 | "PairPotential_Angle::operator() - types don't match with ones in arguments.");
|
---|
[a63187] | 155 | derivative_components_t result;
|
---|
| 156 | const argument_t &r_ij = arguments[0];
|
---|
[c92c0d] | 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]) );
|
---|
[a63187] | 160 | ASSERT( result.size() == 1,
|
---|
| 161 | "PairPotential_Angle::operator() - we did not create exactly one component.");
|
---|
| 162 | return result;
|
---|
| 163 | }
|
---|
| 164 |
|
---|
| 165 | PairPotential_Angle::results_t
|
---|
| 166 | PairPotential_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.");
|
---|
[b760bc3] | 173 | ASSERT( ParticleTypeChecker::checkArgumentsAgainstParticleTypesStrictOrdering(
|
---|
| 174 | arguments, getParticleTypes()),
|
---|
| 175 | "PairPotential_Angle::operator() - types don't match with ones in arguments.");
|
---|
[a63187] | 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:
|
---|
[086070] | 202 | return PairPotential_Angle::results_t(1, 0.);
|
---|
[a63187] | 203 | break;
|
---|
| 204 | }
|
---|
| 205 | }
|
---|
[7b019a] | 206 |
|
---|
| 207 | FunctionModel::extractor_t
|
---|
| 208 | PairPotential_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 |
|
---|
[d52819] | 222 | void
|
---|
| 223 | PairPotential_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 |
|
---|