95 lines
3.1 KiB
C
95 lines
3.1 KiB
C
/*
|
|
* Copyright (C) 1992-1994 Dmitrij Frishman <d.frishman at wzw.tum.de>
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
* THE SOFTWARE.
|
|
*/
|
|
|
|
|
|
#include "stride.h"
|
|
|
|
/*************************************************
|
|
Calculate the hydrogen bond energy as defined by
|
|
Boobbyer et al., 1989
|
|
**************************************************/
|
|
|
|
void GRID_Energy(float *CA2, float *C, float *O, float *H, float *N, COMMAND *Cmd, HBOND *HBond)
|
|
{
|
|
|
|
float ProjH[3];
|
|
|
|
/***** Distance dependence ( 8-6 potential ) ****/
|
|
|
|
if( Cmd->Truncate && HBond->AccDonDist < RmGRID )
|
|
HBond->AccDonDist = RmGRID;
|
|
HBond->Er = CGRID/pow(HBond->AccDonDist,8.0) - DGRID/pow(HBond->AccDonDist,6.0);
|
|
|
|
/************** Angular dependance ****************/
|
|
|
|
/* Find projection of the hydrogen on the O-C-CA plane */
|
|
Project4_123(O,C,CA2,H,ProjH);
|
|
|
|
|
|
/* Three angles determining the direction of the hydrogen bond */
|
|
HBond->ti = fabs(180.0 - Ang(ProjH,O,C));
|
|
HBond->to = Ang(H,O,ProjH);
|
|
HBond->p = Ang(N,H,O);
|
|
|
|
/* Calculate both angle-dependent HB energy components Et and Ep */
|
|
if( HBond->ti >= 0.0 && HBond->ti < 90.0 )
|
|
HBond->Et = cos(RAD(HBond->to))*(0.9+0.1*sin(RAD(2*HBond->ti)));
|
|
else
|
|
if( HBond->ti >= 90.0 && HBond->ti < 110.0 )
|
|
HBond->Et = K1GRID*cos(RAD(HBond->to))*
|
|
(pow((K2GRID-pow(cos(RAD(HBond->ti)),2.0)),3.0));
|
|
else
|
|
HBond->Et = 0.0;
|
|
|
|
if( HBond->p > 90.0 && HBond->p < 270.0 )
|
|
HBond->Ep = pow(cos(RAD(HBond->p)),2.0);
|
|
else
|
|
HBond->Ep = 0.0;
|
|
|
|
/******** Full hydrogen bond energy *********************/
|
|
HBond->Energy = 1000.0*HBond->Er*HBond->Et*HBond->Ep;
|
|
}
|
|
|
|
#define Q -27888.0
|
|
|
|
/********************************************************
|
|
Calculate the energy of polar interaction as defined by
|
|
Kabsch and Sander (1983)
|
|
*********************************************************/
|
|
|
|
void DSSP_Energy(float *Dummy, float *C, float *O, float *H, float *N, COMMAND *Cmd,
|
|
HBOND *HBond)
|
|
|
|
/* Dummy not used, for compatibility with GRID_Energy */
|
|
{ HBond->Energy = Q/Dist(O,H) + Q/Dist(C,N) - Q/HBond->AccDonDist - Q/Dist(C,H); }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|