LCOV - code coverage report
Current view: top level - colvar - GHBFIX.cpp (source / functions) Hit Total Coverage
Test: plumed test coverage Lines: 77 77 100.0 %
Date: 2024-10-18 14:00:25 Functions: 3 4 75.0 %

          Line data    Source code
       1             : /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
       2             :    Copyright (c) 2021-2023 The plumed team
       3             :    (see the PEOPLE file at the root of the distribution for a list of names)
       4             : 
       5             :    See http://www.plumed.org for more information.
       6             : 
       7             :    This file is part of plumed, version 2.
       8             : 
       9             :    plumed 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             :    plumed 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 plumed.  If not, see <http://www.gnu.org/licenses/>.
      21             : +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
      22             : #include "CoordinationBase.h"
      23             : #include "tools/SwitchingFunction.h"
      24             : #include "core/ActionRegister.h"
      25             : #include "core/PlumedMain.h"
      26             : #include "tools/IFile.h"
      27             : 
      28             : #include <iostream>
      29             : 
      30             : #include <string>
      31             : 
      32             : namespace PLMD {
      33             : namespace colvar {
      34             : 
      35             : //+PLUMEDOC COLVAR GHBFIX
      36             : /*
      37             : Calculate the GHBFIX interaction energy among GROUPA and GROUPB
      38             : using a potential defined in Kührová et al., Improving the performance of the AMBER RNA force field by
      39             : tuning the hydrogen-bonding interactions, JCTC, 2019. Essentially it is a switching function being -1 for small distances and 0 for large distances with a smooth interpolation in the middle. This can be scaled as desired by specifying interaction scaling parameters and energy units.
      40             : 
      41             : This collective variable can be used to analyze hydrogen bond interactions, or to generate bias potentials.
      42             : Notice that the value of the GHBFIX is returned in plumed units (see \ref UNITS), if not specified differently via ENERGY_UNITS.
      43             : 
      44             : \par Examples
      45             : This example prints the GHBFIX interaction in kcal/mol between two groups of atoms using D_0, D_MAX and C
      46             : It is applied in the functional form introduced in the pioneering paper.
      47             : The types of atoms 1-6 should be defined in typesTable_examples.dat while their interaction parameters should be defined in scalingParameters_examples.dat in kBT units.
      48             : 
      49             : \plumedfile
      50             : #SETTINGS AUXFOLDER=regtest/basic/rt-ghbfix
      51             : gh: GHBFIX PAIR GROUPA=1,2,3 GROUP=4,5,6 D_0=0.2 D_MAX=0.3 C=0.8 TYPES=typesTable_examples.dat PARAMS=scalingParameters_examples.dat ENERGY_UNITS=kcal/mol
      52             : PRINT FILE=output ARG=gh
      53             : \endplumedfile
      54             : 
      55             : */
      56             : //+ENDPLUMEDOC
      57             : 
      58             : class GHBFIX : public CoordinationBase {
      59             : 
      60             :   double dmax;
      61             :   double dmax_squared;
      62             :   double d0;
      63             :   double c;
      64             : 
      65             :   std::vector<unsigned> typesTable;
      66             : 
      67             :   std::vector<double> etas;
      68             : 
      69             :   unsigned n;
      70             : 
      71             :   double dmax2;
      72             :   double A;
      73             :   double B;
      74             :   double C;
      75             :   double D;
      76             : 
      77             : public:
      78             :   explicit GHBFIX(const ActionOptions&);
      79             : // active methods:
      80             :   static void registerKeywords( Keywords& keys );
      81             :   double pairing(double distance,double&dfunc,unsigned i,unsigned j)const override;
      82             : };
      83             : 
      84             : PLUMED_REGISTER_ACTION(GHBFIX,"GHBFIX")
      85             : 
      86           3 : void GHBFIX::registerKeywords( Keywords& keys ) {
      87           3 :   CoordinationBase::registerKeywords(keys);
      88             : 
      89           6 :   keys.add("optional","ENERGY_UNITS","the value of ENERGY_UNITS in the switching function");
      90           6 :   keys.add("compulsory","TYPES","the value of TYPES in the switching function");
      91           6 :   keys.add("compulsory","PARAMS","the value of PARAMS in the switching function");
      92           6 :   keys.add("compulsory","D_MAX","the value of D_MAX in the switching function");
      93           6 :   keys.add("compulsory","D_0","the value of D_0 in the switching function");
      94           6 :   keys.add("compulsory","C","the value of C in the switching function");
      95           3 :   keys.setValueDescription("the GHBFIX interaction energy between the atoms in GROUPA and GROUPB");
      96           3 : }
      97             : 
      98           1 : GHBFIX::GHBFIX(const ActionOptions&ao):
      99             :   Action(ao),
     100           1 :   CoordinationBase(ao)
     101             : {
     102             :   std::string types;
     103             :   std::string params;
     104           1 :   std::string energy_units ="plumed" ;
     105             : 
     106           1 :   parse("D_MAX",dmax);
     107           1 :   dmax_squared = dmax*dmax;
     108           1 :   parse("D_0",d0);
     109           1 :   parse("C",c);
     110           1 :   parse("TYPES",types);
     111           1 :   parse("PARAMS",params);
     112           1 :   parse("ENERGY_UNITS",energy_units);
     113             : 
     114           1 :   dmax2 = dmax-d0;
     115             : 
     116           1 :   A = (-c*dmax2*dmax2)/((1-c)*dmax2*dmax2);
     117           1 :   B = (2*dmax2)/((1-c)*dmax2*dmax2);
     118           1 :   C = -1/((1-c)*dmax2*dmax2);
     119           1 :   D = 1/(c*dmax2*dmax2);
     120             : 
     121             :   std::map<std::string,unsigned> MapTypesTable;
     122             : 
     123             :   //typesTable
     124           1 :   IFile typesfile;
     125           1 :   typesfile.link(*this);
     126           1 :   typesfile.open(types);
     127             :   std::string itype;
     128           6 :   while(typesfile.scanField("itype",itype).scanField()) {
     129           2 :     plumed_assert(itype.empty()==false)<<"itype is empty";
     130             : 
     131           2 :     if (MapTypesTable.empty()) {
     132           1 :       MapTypesTable.insert({itype, 0});
     133             :     }
     134             :     else if (MapTypesTable.count(itype) == 0) {
     135             :       unsigned currentMax = 0;
     136           2 :       for(auto it = MapTypesTable.cbegin(); it != MapTypesTable.cend(); ++it ) {
     137           1 :         if (it ->second > currentMax) {
     138             :           currentMax = it->second;
     139             :         }
     140             :       }
     141           2 :       MapTypesTable.insert({itype, currentMax+1});
     142             :     }
     143             : 
     144           2 :     typesTable.push_back(MapTypesTable[itype]);
     145             :   }
     146             : 
     147           1 :   n = (int)*std::max_element(std::begin(typesTable), std::end(typesTable));
     148           1 :   n+=1;
     149             : 
     150             :   //scalingParameters
     151           1 :   etas.resize(n*n,0.0);
     152           1 :   IFile etafile;
     153           1 :   etafile.open(params);
     154             :   std::string it,jt;
     155             :   double eta;
     156          14 :   while(etafile.scanField("itype",it).scanField("jtype",jt).scanField("eta",eta).scanField()) {
     157           6 :     plumed_assert(it.empty()==false)<<"itype is empty";
     158           6 :     plumed_assert(jt.empty()==false)<<"jtype is empty";
     159           6 :     etas[n*MapTypesTable[it]+MapTypesTable[jt]]=eta;
     160             :   }
     161             : 
     162           1 :   if(energy_units!="plumed") {
     163           1 :     Units units;
     164           1 :     units.setEnergy(energy_units);
     165           5 :     for(auto i=0; i<etas.size(); i++) etas[i]*=units.getEnergy()/getUnits().getEnergy();
     166           1 :   }
     167             : 
     168           3 : }
     169             : 
     170             : 
     171         150 : double GHBFIX::pairing(double distance2,double&dfunc,unsigned i,unsigned j)const {
     172             : 
     173         150 :   const auto i1=getAbsoluteIndex(i).index();
     174         150 :   plumed_assert(i1<typesTable.size())<<"your types table only covers "<<typesTable.size()<<" atoms, but you are trying to access atom number "<<(i1+1);
     175         150 :   const auto t1=typesTable[i1];
     176             : 
     177         150 :   const auto i2=getAbsoluteIndex(j).index();
     178         150 :   plumed_assert(i2<typesTable.size())<<"your types table only covers "<<typesTable.size()<<" atoms, but you are trying to access atom number "<<(i2+1);
     179         150 :   const auto t2=typesTable[i2];
     180             : 
     181         150 :   const double scale=etas[n*t1+t2];
     182             : 
     183             :   double result;
     184         150 :   if(distance2>dmax_squared) {
     185             :     result=0.;
     186           1 :     dfunc=0.0;
     187           1 :     return result;
     188             :   }
     189         149 :   double distance=std::sqrt(distance2);
     190         149 :   const double rdist = (distance-d0);
     191             : 
     192         149 :   if(rdist<=0.) {
     193             :     result=-1.;
     194         100 :     dfunc=0.0;
     195             :   } else {
     196             :     result=-1.;
     197          49 :     dfunc=0.0;
     198             : 
     199          49 :     if (rdist > c*dmax2) {
     200           9 :       result+=(A + B*rdist + C*rdist*rdist);
     201           9 :       dfunc+=B+2*C*rdist;
     202          40 :     } else if (rdist > 0.0) {
     203          40 :       result+=D*(rdist*rdist);
     204          40 :       dfunc+=2*D*rdist;
     205             :     }
     206             : 
     207          49 :     dfunc/=distance;
     208             :   }
     209             : 
     210         149 :   result*=scale;
     211         149 :   dfunc*=scale;
     212             : 
     213         149 :   return result;
     214             : }
     215             : 
     216             : }
     217             : 
     218             : }

Generated by: LCOV version 1.16