/usr/include/GNUstep/Base/AdGeneralizedBornFunctions.h is in adun.app 0.81-6.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 | /*
Project: AdunBase
Copyright (C) 2008 Michael Johnston & Jordi Villa-Freixa
Author: Michael Johnston
This application 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.
This application 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
Library General Public License for more details.
You should have received a copy of the GNU General Public
License along with this library; if not, write to the Free
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
*/
#ifndef GBFUNCTIONS
#define GBFUNCTIONS
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <Base/AdVector.h>
#include <Base/AdMatrix.h>
#include <Base/AdLinkedList.h>
/**
These are the primitive functions used to calculate the GB radius using the GBSW method.
\defgroup GBSWFunctions Smoothed GB Functions
\ingroup Functions
*/
/**
These are the functions used to calculate the GB energy and its derivatives.
\f[
\Delta G^{elec}_{ab} = -\frac{1}{4\pi\epsilon_{0}} * \frac{\tau}{2} *
\frac{ q_{a}q_{b} } { \sqrt{ r_{ab}^{2} + R_{a}R_{b} \exp(\frac{-r_{ab}^{2}} {4R_{a}R_{b}})} }
\f]
Where \f$ R_{a}, R_{b} \f$ are the Born radii of the atoms a and b.
Note that the case where \f$ a == b \f$ is allowed and gives the self-energy of atom \f$ a \f$.
However this case is handled using special optimised functions.
The derivative of this function with respect to the position of one of the atoms, \f$ \mathbf{r_{a}} \f$, is
\f[
\frac{ \Delta G^{elec}_{ab}} {d \mathbf{r_{a}}} = \frac{ \Delta G^{elec}_{ab}} {d r_{ab}} \frac{ d r_{ab}}{d \mathbf{r_{a}}}
+ \frac{ \Delta G^{elec}_{ab}} {d R_{a}} \frac{ d R_{a}}{d \mathbf{r_{a}}}
+ \frac{ \Delta G^{elec}_{ab}} {d R_{b}} \frac{ d R_{b}}{d \mathbf{r_{a}}}
\f]
This formula can be obtain using the chain rule for partial derivatives.
The second and third terms are due to the fact that the Born radius of an atom depends on the positions of \e all atoms in the solute.
Each full term is a force vector.
In the function names GBE stands for Generalized Born Energy.
AdGBESeparationDerivative() gives the force vector for first term for both atoms.
AdGBEBornRadiusDerivative() gives the first factor in the second and third terms which is a scalar.
If a == b then this gives the self energy of the atom
\f[
\Delta G^{elec}_{a} = -\frac{\tau}{2} \frac{1}{4\pi \epsilon_{0}} \frac{q^{2}_{a}}{R_{a}}
\f]
This is usually calculated during the calculation of the atoms born radius so no function is provided for it here.
The derivative of this w.r.t. the position of the atom is simply
\f[
\frac{ \Delta G^{elec}_{a}} {d \mathbf{r_{a}}} = \frac{\tau}{2}\frac{q_{a}^{2}}{R_{a}^{2}} \frac{ d R_{a}}{d \mathbf{r_{a}}}
\f]
Hence only the derivative of the born radius of the atom is needed.
If this is known then AdGBESelfDerivative() returns the force vector.
\defgroup GBFunctions GB Functions
\ingroup GBSWFunctions
@{
*/
/**
Sets an internal variable equal to tau*estConstant
*/
void AdSetGeneralizedBornVariables(double tau, double estConstant);
/**
Calculates the contribution of the interaction between the two atoms given by \e interaction to the total electrostatic component of the solvation energy,
\f$ \Delta G^{elec}_{ab} \f$.
The energy is added to the value in \e est_pot.
*/
void AdGeneralizedBornEnergy(ListElement* interaction,
double** coordinates,
double* radii,
double* est_pot);
/**
This gives the derivate of the born energy with respect to the separation between the two atoms.
\f[
\frac{ \Delta G^{elec}_{ab}} {d r_{ab}} \frac{ d r_{ab}}{d \mathbf{r_{a}}}
\f]
The resulting forces on the two atoms are equal in magnitude and opposite in direction.
The force vectors are accumulated into the corresponding rows of the matrix \e forces.
\note This derivative only exists when the interaction is between two different atoms.
*/
void AdGBESeparationDerivative(ListElement* interaction,
double** coordinates,
double** forces,
double* radii,
double* est_pot);
/**
Calculated the magnitude of the derivative of the GB energy with respect to the separation of the atoms.
On return \e forceMagnitude contains the result.
*/
void AdGBESeparationDerivativeMagnitude(ListElement* interaction,
double** coordinates,
double* radii,
double* forceMagnitude);
/**
Calculates derivative of the Born energy with respect to the born radii, \f$ R_{a}, R_{b} \f$ of the atoms.
\f[
\frac{ \Delta G^{elec}_{ab}} {d R_{a}}, \frac{ \Delta G^{elec}_{ab}} {d R_{b}}
\f]
coefficient1 is the derivate w.r.t \f$ R_{a} \f$ and coefficient2 the derivative w.r.t. \f$ R_{b} \f$.
\note This function is only for derivatives of the Born energy between two atoms, \f$ \Delta G^{elec}_{ab} \f$.
The self energy derivative is handled by AdGBESelfDerivative()
*/
void AdGBEBornRadiusDerivative(ListElement* interaction,
double** coordinates,
double* radii,
double *coefficient1,
double *coefficient2);
/**
AS AdGBEBornRadiusDerivative but only calculating one of the two terms
*/
void AdGBEBornRadiusCoefficient(int atomOne, int atomTwo, double** coordinates,
double* bornRadii, double* charges, double* value);
/**
Returns the solvation force acting on the atom i.e. the derivative of the atoms self-energy.
Note the derivative of the atoms born radius w.r.t. itself must have been previously calculated.
*/
void AdGBESelfDerivative(unsigned int atomIndex,
double bornRadius,
double charge,
Vector3D* radiusDerivative,
double** forces);
/** \@}**/
#endif
|