LCOV - code coverage report
Current view: top level - ves - FermiSwitchingFunction.cpp (source / functions) Hit Total Coverage
Test: plumed test coverage Lines: 33 69 47.8 %
Date: 2025-03-25 09:33:27 Functions: 4 9 44.4 %

          Line data    Source code
       1             : /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
       2             :    Copyright (c) 2016-2021 The VES code team
       3             :    (see the PEOPLE-VES file at the root of this folder for a list of names)
       4             : 
       5             :    See http://www.ves-code.org for more information.
       6             : 
       7             :    This file is part of VES code module.
       8             : 
       9             :    The VES code module is free software: you can redistribute it and/or modify
      10             :    it under the terms of the GNU Lesser General Public License as published by
      11             :    the Free Software Foundation, either version 3 of the License, or
      12             :    (at your option) any later version.
      13             : 
      14             :    The VES code module is distributed in the hope that it will be useful,
      15             :    but WITHOUT ANY WARRANTY; without even the implied warranty of
      16             :    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
      17             :    GNU Lesser General Public License for more details.
      18             : 
      19             :    You should have received a copy of the GNU Lesser General Public License
      20             :    along with the VES code module.  If not, see <http://www.gnu.org/licenses/>.
      21             : +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
      22             : 
      23             : #include "FermiSwitchingFunction.h"
      24             : 
      25             : #include "tools/Tools.h"
      26             : #include "tools/Keywords.h"
      27             : 
      28             : #include <vector>
      29             : #include <limits>
      30             : 
      31             : 
      32             : namespace PLMD {
      33             : namespace ves {
      34             : 
      35             : 
      36           0 : void FermiSwitchingFunction::registerKeywords( Keywords& keys ) {
      37           0 :   keys.add("compulsory","R_0","the value of R_0 in the switching function");
      38           0 :   keys.add("compulsory","FERMI_LAMBDA","the value of lambda in the Fermi-type switching function (only needed for TYPE=FERMI).");
      39           0 :   keys.add("optional","FERMI_EXP_MAX","only needed for TYPE=FERMI");
      40           0 : }
      41             : 
      42           3 : void FermiSwitchingFunction::set(const std::string& definition,std::string& errormsg) {
      43           3 :   std::vector<std::string> data=Tools::getWords(definition);
      44           3 :   if( data.size()<1 ) {
      45             :     errormsg="missing all input for switching function";
      46             :     return;
      47             :   }
      48           3 :   std::string name=data[0];
      49             :   data.erase(data.begin());
      50           3 :   if(name!="FERMI") {
      51             :     errormsg="only FERMI is supported";
      52             :   }
      53           3 :   type=fermi;
      54             :   //
      55           3 :   bool found_r0=Tools::parse(data,"R_0",r0_);
      56           3 :   if(!found_r0) {
      57             :     errormsg="R_0 is required";
      58             :   }
      59             : 
      60             :   //
      61           3 :   fermi_exp_max_=std::numeric_limits<double>::max();
      62           3 :   Tools::parse(data,"FERMI_EXP_MAX",fermi_exp_max_);
      63             :   //
      64           3 :   bool found_lambda=Tools::parse(data,"FERMI_LAMBDA",fermi_lambda_);
      65           3 :   if(!found_lambda) {
      66             :     errormsg="FERMI_LAMBDA is required for FERMI";
      67             :   }
      68           3 :   if( !data.empty() ) {
      69             :     errormsg="found the following rogue keywords in switching function input : ";
      70           0 :     for(unsigned i=0; i<data.size(); ++i) {
      71           0 :       errormsg = errormsg + data[i] + " ";
      72             :     }
      73             :   }
      74           3 :   init=true;
      75           3 :   if(errormsg.size()>0) {
      76           0 :     init=false;
      77             :   }
      78           3 : }
      79             : 
      80           0 : std::string FermiSwitchingFunction::description() const {
      81           0 :   std::ostringstream ostr;
      82           0 :   ostr<<1./invr0_<<".  Using ";
      83           0 :   if(type==fermi) {
      84           0 :     ostr<< "fermi switching function with parameter";
      85           0 :     ostr<< " lambda="<<fermi_lambda_;
      86             :   } else {
      87           0 :     plumed_merror("Unknown switching function type");
      88             :   }
      89           0 :   return ostr.str();
      90           0 : }
      91             : 
      92             : 
      93        3263 : double FermiSwitchingFunction::calculate(double distance, double& dfunc) const {
      94        3263 :   plumed_massert(init,"you are trying to use an unset FermiSwitchingFunction");
      95        3263 :   double rdist=fermi_lambda_*(distance-r0_);
      96        3263 :   if(rdist >= fermi_exp_max_) {
      97             :     rdist = fermi_exp_max_;
      98             :   }
      99        3263 :   double result = 1.0/(1.0+exp(rdist));
     100        3263 :   dfunc=-fermi_lambda_*exp(rdist)*result*result;
     101             :   // this is because calculate() sets dfunc to the derivative divided times the distance.
     102             :   // (I think this is misleading and I would like to modify it - GB)
     103             :   // dfunc/=distance;
     104             :   //
     105        3263 :   return result;
     106             : }
     107             : 
     108             : 
     109           3 : FermiSwitchingFunction::FermiSwitchingFunction():
     110           3 :   init(false),
     111           3 :   type(fermi),
     112           3 :   r0_(0.0),
     113           3 :   invr0_(0.0),
     114           3 :   fermi_lambda_(1.0),
     115           3 :   fermi_exp_max_(100.0) {
     116           3 : }
     117             : 
     118           0 : FermiSwitchingFunction::FermiSwitchingFunction(const FermiSwitchingFunction&sf):
     119           0 :   init(sf.init),
     120           0 :   type(sf.type),
     121           0 :   r0_(sf.r0_),
     122           0 :   invr0_(sf.invr0_),
     123           0 :   fermi_lambda_(sf.fermi_lambda_),
     124           0 :   fermi_exp_max_(sf.fermi_exp_max_) {
     125           0 : }
     126             : 
     127           0 : void FermiSwitchingFunction::set(const double r0, const double fermi_lambda, const double fermi_exp_max) {
     128           0 :   init=true;
     129           0 :   type=fermi;
     130           0 :   r0_=r0;
     131           0 :   fermi_lambda_=fermi_lambda;
     132           0 :   if(fermi_exp_max>0.0) {
     133           0 :     fermi_exp_max_=fermi_exp_max;
     134             :   } else {
     135           0 :     fermi_exp_max_=100.0;
     136             :   }
     137             : 
     138           0 : }
     139             : 
     140           0 : double FermiSwitchingFunction::get_r0() const {
     141           0 :   return r0_;
     142             : }
     143             : 
     144             : 
     145           3 : FermiSwitchingFunction::~FermiSwitchingFunction() {
     146           3 : }
     147             : 
     148             : 
     149             : }
     150             : }

Generated by: LCOV version 1.16