[6bb72a] | 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_Harmonic.cpp
|
---|
| 26 | *
|
---|
| 27 | * Created on: Sep 26, 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_Harmonic.hpp"
|
---|
| 40 |
|
---|
[ed2551] | 41 | #include <boost/assign/list_of.hpp> // for 'map_list_of()'
|
---|
[7b019a] | 42 | #include <boost/bind.hpp>
|
---|
[da2d5c] | 43 | #include <boost/lambda/lambda.hpp>
|
---|
[ed2551] | 44 | #include <string>
|
---|
| 45 |
|
---|
[6bb72a] | 46 | #include "CodePatterns/Assert.hpp"
|
---|
| 47 |
|
---|
[7b019a] | 48 | #include "FunctionApproximation/Extractors.hpp"
|
---|
[d52819] | 49 | #include "FunctionApproximation/TrainingData.hpp"
|
---|
[6bb72a] | 50 | #include "Potentials/helpers.hpp"
|
---|
[b760bc3] | 51 | #include "Potentials/ParticleTypeCheckers.hpp"
|
---|
[6bb72a] | 52 |
|
---|
[7b019a] | 53 | class Fragment;
|
---|
| 54 |
|
---|
[ed2551] | 55 | // static definitions
|
---|
| 56 | const PairPotential_Harmonic::ParameterNames_t
|
---|
| 57 | PairPotential_Harmonic::ParameterNames =
|
---|
| 58 | boost::assign::list_of<std::string>
|
---|
| 59 | ("spring_constant")
|
---|
| 60 | ("equilibrium_distance")
|
---|
| 61 | ("") //energy_offset
|
---|
| 62 | ;
|
---|
| 63 | const std::string PairPotential_Harmonic::potential_token("harmonic_bond");
|
---|
| 64 |
|
---|
| 65 | PairPotential_Harmonic::PairPotential_Harmonic(
|
---|
| 66 | const ParticleTypes_t &_ParticleTypes) :
|
---|
[fdd23a] | 67 | EmpiricalPotential(_ParticleTypes),
|
---|
[1dca9a] | 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] = 1.;
|
---|
| 73 | params[energy_offset] = 0.1;
|
---|
| 74 | }
|
---|
[1dca9a] | 75 |
|
---|
| 76 | PairPotential_Harmonic::PairPotential_Harmonic(
|
---|
[ed2551] | 77 | const ParticleTypes_t &_ParticleTypes,
|
---|
[1dca9a] | 78 | const double _spring_constant,
|
---|
| 79 | const double _equilibrium_distance,
|
---|
| 80 | const double _energy_offset) :
|
---|
[fdd23a] | 81 | EmpiricalPotential(_ParticleTypes),
|
---|
[ed2551] | 82 | params(parameters_t(MAXPARAMS, 0.))
|
---|
[1dca9a] | 83 | {
|
---|
| 84 | params[spring_constant] = _spring_constant;
|
---|
| 85 | params[equilibrium_distance] = _equilibrium_distance;
|
---|
| 86 | params[energy_offset] = _energy_offset;
|
---|
| 87 | }
|
---|
[086070] | 88 |
|
---|
| 89 | void PairPotential_Harmonic::setParameters(const parameters_t &_params)
|
---|
| 90 | {
|
---|
| 91 | const size_t paramsDim = _params.size();
|
---|
| 92 | ASSERT( paramsDim <= getParameterDimension(),
|
---|
| 93 | "PairPotential_Harmonic::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_Harmonic::setParameters() - failed, mismatch in to be set "
|
---|
| 103 | +toString(_params)+" and set "+toString(check_params)+" params.");
|
---|
| 104 | #endif
|
---|
| 105 | }
|
---|
[1dca9a] | 106 |
|
---|
[4f82f8] | 107 | PairPotential_Harmonic::results_t
|
---|
[6bb72a] | 108 | PairPotential_Harmonic::operator()(
|
---|
| 109 | const arguments_t &arguments
|
---|
| 110 | ) const
|
---|
| 111 | {
|
---|
| 112 | ASSERT( arguments.size() == 1,
|
---|
| 113 | "PairPotential_Harmonic::operator() - requires exactly one argument.");
|
---|
[e352cb] | 114 | ASSERT( ParticleTypeChecker::checkArgumentsAgainstParticleTypes(
|
---|
[b760bc3] | 115 | arguments, getParticleTypes()),
|
---|
| 116 | "PairPotential_Harmonic::operator() - types don't match with ones in arguments.");
|
---|
[6bb72a] | 117 | const argument_t &r_ij = arguments[0];
|
---|
[1dca9a] | 118 | const result_t result =
|
---|
| 119 | params[spring_constant]
|
---|
| 120 | * Helpers::pow( r_ij.distance - params[equilibrium_distance], 2 )
|
---|
| 121 | + params[energy_offset];
|
---|
[4f82f8] | 122 | return std::vector<result_t>(1, result);
|
---|
[6bb72a] | 123 | }
|
---|
| 124 |
|
---|
[4f82f8] | 125 | PairPotential_Harmonic::derivative_components_t
|
---|
[6bb72a] | 126 | PairPotential_Harmonic::derivative(
|
---|
| 127 | const arguments_t &arguments
|
---|
| 128 | ) const
|
---|
| 129 | {
|
---|
| 130 | ASSERT( arguments.size() == 1,
|
---|
| 131 | "PairPotential_Harmonic::operator() - requires exactly one argument.");
|
---|
[e352cb] | 132 | ASSERT( ParticleTypeChecker::checkArgumentsAgainstParticleTypes(
|
---|
[b760bc3] | 133 | arguments, getParticleTypes()),
|
---|
| 134 | "PairPotential_Harmonic::operator() - types don't match with ones in arguments.");
|
---|
[6bb72a] | 135 | derivative_components_t result;
|
---|
| 136 | const argument_t &r_ij = arguments[0];
|
---|
[1dca9a] | 137 | result.push_back( 2. * params[spring_constant] * ( r_ij.distance - params[equilibrium_distance]) );
|
---|
[6bb72a] | 138 | ASSERT( result.size() == 1,
|
---|
| 139 | "PairPotential_Harmonic::operator() - we did not create exactly one component.");
|
---|
| 140 | return result;
|
---|
| 141 | }
|
---|
[4f82f8] | 142 |
|
---|
[5b5724] | 143 | PairPotential_Harmonic::results_t
|
---|
| 144 | PairPotential_Harmonic::parameter_derivative(
|
---|
| 145 | const arguments_t &arguments,
|
---|
| 146 | const size_t index
|
---|
| 147 | ) const
|
---|
| 148 | {
|
---|
| 149 | ASSERT( arguments.size() == 1,
|
---|
| 150 | "PairPotential_Harmonic::parameter_derivative() - requires exactly one argument.");
|
---|
[e352cb] | 151 | ASSERT( ParticleTypeChecker::checkArgumentsAgainstParticleTypes(
|
---|
[b760bc3] | 152 | arguments, getParticleTypes()),
|
---|
| 153 | "PairPotential_Harmonic::operator() - types don't match with ones in arguments.");
|
---|
[5b5724] | 154 | const argument_t &r_ij = arguments[0];
|
---|
| 155 | switch (index) {
|
---|
| 156 | case spring_constant:
|
---|
| 157 | {
|
---|
| 158 | const result_t result =
|
---|
| 159 | Helpers::pow( r_ij.distance - params[equilibrium_distance], 2 );
|
---|
| 160 | return std::vector<result_t>(1, result);
|
---|
| 161 | break;
|
---|
| 162 | }
|
---|
| 163 | case equilibrium_distance:
|
---|
| 164 | {
|
---|
| 165 | const result_t result =
|
---|
| 166 | -2. * params[spring_constant]
|
---|
| 167 | * ( r_ij.distance - params[equilibrium_distance]);
|
---|
| 168 | return std::vector<result_t>(1, result);
|
---|
| 169 | break;
|
---|
| 170 | }
|
---|
| 171 | case energy_offset:
|
---|
| 172 | {
|
---|
| 173 | const result_t result = +1.;
|
---|
| 174 | return std::vector<result_t>(1, result);
|
---|
| 175 | break;
|
---|
| 176 | }
|
---|
| 177 | default:
|
---|
| 178 | break;
|
---|
| 179 | }
|
---|
| 180 |
|
---|
| 181 | return PairPotential_Harmonic::results_t(1, 0.);
|
---|
| 182 | }
|
---|
| 183 |
|
---|
[7b019a] | 184 | FunctionModel::extractor_t
|
---|
[da2d5c] | 185 | PairPotential_Harmonic::getFragmentSpecificExtractor() const
|
---|
[7b019a] | 186 | {
|
---|
[da2d5c] | 187 | Fragment::charges_t charges;
|
---|
| 188 | charges.resize(getParticleTypes().size());
|
---|
| 189 | std::transform(getParticleTypes().begin(), getParticleTypes().end(),
|
---|
| 190 | charges.begin(), boost::lambda::_1);
|
---|
[7b019a] | 191 | FunctionModel::extractor_t returnfunction =
|
---|
| 192 | boost::bind(&Extractors::gatherDistancesFromFragment,
|
---|
| 193 | boost::bind(&Fragment::getPositions, _1),
|
---|
| 194 | boost::bind(&Fragment::getCharges, _1),
|
---|
[da2d5c] | 195 | charges,
|
---|
[7b019a] | 196 | _2);
|
---|
| 197 | return returnfunction;
|
---|
| 198 | }
|
---|
| 199 |
|
---|
[d52819] | 200 | void
|
---|
| 201 | PairPotential_Harmonic::setParametersToRandomInitialValues(
|
---|
| 202 | const TrainingData &data)
|
---|
| 203 | {
|
---|
| 204 | params[PairPotential_Harmonic::energy_offset] =
|
---|
| 205 | data.getTrainingOutputAverage()[0];// -1.;
|
---|
| 206 | params[PairPotential_Harmonic::equilibrium_distance] = 3e+0*rand()/(double)RAND_MAX + .5;// 1.;
|
---|
| 207 | params[PairPotential_Harmonic::spring_constant] = 1e+0*rand()/(double)RAND_MAX;// 0.2;
|
---|
| 208 | }
|
---|
| 209 |
|
---|