/* * Project: MoleCuilder * Description: creates and alters molecular systems * Copyright (C) 2013 Frederik Heber. All rights reserved. * Please see the COPYING file or "Copyright notice" in builder.cpp for details. * * * This file is part of MoleCuilder. * * MoleCuilder is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * MoleCuilder is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with MoleCuilder. If not, see . */ /* * FourBodyPotential_Torsion.cpp * * Created on: Jul 08, 2013 * Author: heber */ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include "CodePatterns/MemDebug.hpp" #include "FourBodyPotential_Torsion.hpp" #include // for 'map_list_of()' #include #include #include #include "CodePatterns/Assert.hpp" #include "FunctionApproximation/Extractors.hpp" #include "FunctionApproximation/TrainingData.hpp" #include "Potentials/helpers.hpp" #include "Potentials/InternalCoordinates/FourBody_TorsionAngle.hpp" #include "Potentials/ParticleTypeCheckers.hpp" #include "RandomNumbers/RandomNumberGeneratorFactory.hpp" #include "RandomNumbers/RandomNumberGenerator.hpp" class Fragment; // static definitions1 const FourBodyPotential_Torsion::ParameterNames_t FourBodyPotential_Torsion::ParameterNames = boost::assign::list_of ("spring_constant") ("equilibrium_distance") ; const std::string FourBodyPotential_Torsion::potential_token("torsion"); Coordinator::ptr FourBodyPotential_Torsion::coordinator(Memory::ignore(new FourBody_TorsionAngle())); static BindingModel generateBindingModel(const EmpiricalPotential::ParticleTypes_t &_ParticleTypes) { // fill nodes BindingModel::vector_nodes_t nodes; { ASSERT( _ParticleTypes.size() == (size_t)4, "generateBindingModel() - FourBodyPotential_Torsion needs four types."); nodes.push_back( FragmentNode(_ParticleTypes[0], 1) ); nodes.push_back( FragmentNode(_ParticleTypes[1], 2) ); nodes.push_back( FragmentNode(_ParticleTypes[2], 2) ); nodes.push_back( FragmentNode(_ParticleTypes[3], 1) ); } // there are no edges HomologyGraph::edges_t edges; { std::pair inserter; inserter = edges.insert( std::make_pair( FragmentEdge(_ParticleTypes[0], _ParticleTypes[1]), 1) ); if (!inserter.second) ++(inserter.first->second); inserter = edges.insert( std::make_pair( FragmentEdge(_ParticleTypes[1], _ParticleTypes[2]), 1) ); if (!inserter.second) ++(inserter.first->second); inserter = edges.insert( std::make_pair( FragmentEdge(_ParticleTypes[2], _ParticleTypes[3]), 1) ); if (!inserter.second) ++(inserter.first->second); } return BindingModel(nodes, edges); } FourBodyPotential_Torsion::FourBodyPotential_Torsion() : EmpiricalPotential(), params(parameters_t(MAXPARAMS, 0.)), bindingmodel(BindingModel()) { // have some decent defaults for parameter_derivative checking params[spring_constant] = 1.; params[equilibrium_distance] = 0.1; } FourBodyPotential_Torsion::FourBodyPotential_Torsion( const ParticleTypes_t &_ParticleTypes ) : EmpiricalPotential(_ParticleTypes), params(parameters_t(MAXPARAMS, 0.)), bindingmodel(generateBindingModel(_ParticleTypes)) { // have some decent defaults for parameter_derivative checking params[spring_constant] = 1.; params[equilibrium_distance] = 0.1; } FourBodyPotential_Torsion::FourBodyPotential_Torsion( const ParticleTypes_t &_ParticleTypes, const double _spring_constant, const double _equilibrium_distance) : EmpiricalPotential(_ParticleTypes), params(parameters_t(MAXPARAMS, 0.)), bindingmodel(generateBindingModel(_ParticleTypes)) { params[spring_constant] = _spring_constant; params[equilibrium_distance] = _equilibrium_distance; } void FourBodyPotential_Torsion::setParameters(const parameters_t &_params) { const size_t paramsDim = _params.size(); ASSERT( paramsDim <= getParameterDimension(), "FourBodyPotential_Torsion::setParameters() - we need not more than " +toString(getParameterDimension())+" parameters."); for(size_t i=0;i