ReferenceRbDihedralBond.cpp 7.28 KB
Newer Older
1

2
/* Portions copyright (c) 2006-2016 Stanford University and Simbios.
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
 * Contributors: Pande Group
 *
 * 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, CONTRIBUTORS 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 <string.h>
#include <sstream>

28
#include "SimTKOpenMMUtilities.h"
29
30
31
#include "ReferenceRbDihedralBond.h"
#include "ReferenceForce.h"

32
using std::vector;
33
using namespace OpenMM;
34

35
36
37
38
39
40
/**---------------------------------------------------------------------------------------

   ReferenceRbDihedralBond constructor

   --------------------------------------------------------------------------------------- */

41
ReferenceRbDihedralBond::ReferenceRbDihedralBond() : usePeriodic(false) {
42
43
44
45
46
47
48
49
}

/**---------------------------------------------------------------------------------------

   ReferenceRbDihedralBond destructor

   --------------------------------------------------------------------------------------- */

50
ReferenceRbDihedralBond::~ReferenceRbDihedralBond() {
51
}
52

53
54
55
56
57
void ReferenceRbDihedralBond::setPeriodic(OpenMM::RealVec* vectors) {
    usePeriodic = true;
    boxVectors[0] = vectors[0];
    boxVectors[1] = vectors[1];
    boxVectors[2] = vectors[2];
58
59
60
61
62
63
64
65
66
67
}

/**---------------------------------------------------------------------------------------

   Calculate Ryckaert-Bellemans bond ixn

   @param atomIndices      atom indices of 4 atoms in bond
   @param atomCoordinates  atom coordinates
   @param parameters       six RB parameters
   @param forces           force array (forces added to current values)
68
   @param totalEnergy      if not null, the energy will be added to this
69
70
71

   --------------------------------------------------------------------------------------- */

72
void ReferenceRbDihedralBond::calculateBondIxn(int* atomIndices,
73
                                               vector<RealVec>& atomCoordinates,
74
                                               RealOpenMM* parameters,
75
                                               vector<RealVec>& forces,
76
                                               RealOpenMM* totalEnergy, double* energyParamDerivs) {
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

   static const std::string methodName = "\nReferenceRbDihedralBond::calculateBondIxn";

   // constants -- reduce Visual Studio warnings regarding conversions between float & double

   static const RealOpenMM zero        =  0.0;
   static const RealOpenMM one         =  1.0;
   static const RealOpenMM two         =  2.0;
   static const RealOpenMM three       =  3.0;
   static const RealOpenMM oneM        = -1.0;

   static const int threeI             = 3;

   // number of parameters

   static const int numberOfParameters = 6;

   static const int LastAtomIndex      = 4;

   RealOpenMM deltaR[3][ReferenceForce::LastDeltaRIndex];

   RealOpenMM crossProductMemory[6];

   // ---------------------------------------------------------------------------------------

   // get deltaR, R2, and R between 2 atoms

   int atomAIndex = atomIndices[0];
   int atomBIndex = atomIndices[1];
   int atomCIndex = atomIndices[2];
   int atomDIndex = atomIndices[3];
108
109
110
111
112
113
114
115
116
117
   if (usePeriodic) {
      ReferenceForce::getDeltaRPeriodic(atomCoordinates[atomBIndex], atomCoordinates[atomAIndex], boxVectors, deltaR[0]);  
      ReferenceForce::getDeltaRPeriodic(atomCoordinates[atomBIndex], atomCoordinates[atomCIndex], boxVectors, deltaR[1]);  
      ReferenceForce::getDeltaRPeriodic(atomCoordinates[atomDIndex], atomCoordinates[atomCIndex], boxVectors, deltaR[2]);  
   }
   else {
      ReferenceForce::getDeltaR(atomCoordinates[atomBIndex], atomCoordinates[atomAIndex], deltaR[0]);  
      ReferenceForce::getDeltaR(atomCoordinates[atomBIndex], atomCoordinates[atomCIndex], deltaR[1]);  
      ReferenceForce::getDeltaR(atomCoordinates[atomDIndex], atomCoordinates[atomCIndex], deltaR[2]);  
   }
118
119
120
121
122
123
124
125
126
127

   RealOpenMM cosPhi;
   RealOpenMM signOfAngle;
   int hasREntry             = 1;

   // Visual Studio complains if crossProduct declared as 'crossProduct[2][3]'

   RealOpenMM* crossProduct[2];
   crossProduct[0]           = crossProductMemory;
   crossProduct[1]           = crossProductMemory + 3;
128
129
130
   RealOpenMM dihederalAngle = getDihedralAngleBetweenThreeVectors(deltaR[0], deltaR[1], deltaR[2],
                                                                   crossProduct, &cosPhi, deltaR[0], 
                                                                   &signOfAngle, hasREntry);
131
132
133

   // Gromacs: use polymer convention

134
   if (dihederalAngle < zero) {
135
136
137
138
139
140
141
142
      dihederalAngle += PI_M;
   } else {
      dihederalAngle -= PI_M;
   }
   cosPhi *= -one;

   // Ryckaert-Bellemans:

143
   // V = sum over i: { C_i*cos(psi)**i }, where psi = phi - PI, 
144
145
146
147
148
   //                                              C_i is ith RB coefficient

   RealOpenMM dEdAngle       = zero;
   RealOpenMM energy         = parameters[0];
   RealOpenMM cosFactor      = one;
149
   for (int ii = 1; ii < numberOfParameters; ii++) {
150
151
152
153
154
      dEdAngle  -= ((RealOpenMM) ii)*parameters[ii]*cosFactor;
      cosFactor *= cosPhi;
      energy    += cosFactor*parameters[ii];
   }

155
   dEdAngle *= SIN(dihederalAngle);
156
157
158

   RealOpenMM internalF[4][3];
   RealOpenMM forceFactors[4];
159
   RealOpenMM normCross1         = DOT3(crossProduct[0], crossProduct[0]);
160
161
162
   RealOpenMM normBC             = deltaR[1][ReferenceForce::RIndex];
              forceFactors[0]    = (-dEdAngle*normBC)/normCross1;

163
   RealOpenMM normCross2         = DOT3(crossProduct[1], crossProduct[1]);
164
165
              forceFactors[3]    = (dEdAngle*normBC)/normCross2;
  
166
              forceFactors[1]    = DOT3(deltaR[0], deltaR[1]);
167
168
              forceFactors[1]   /= deltaR[1][ReferenceForce::R2Index];

169
              forceFactors[2]    = DOT3(deltaR[2], deltaR[1]);
170
171
              forceFactors[2]   /= deltaR[1][ReferenceForce::R2Index];

172
   for (int ii = 0; ii < 3; ii++) {
173
174
175
176
177
178
179
180
181
182
183
184

      internalF[0][ii]  = forceFactors[0]*crossProduct[0][ii];
      internalF[3][ii]  = forceFactors[3]*crossProduct[1][ii];

      RealOpenMM s      = forceFactors[1]*internalF[0][ii] - forceFactors[2]*internalF[3][ii]; 

      internalF[1][ii]  = internalF[0][ii] - s;
      internalF[2][ii]  = internalF[3][ii] + s;
   }

   // accumulate forces

185
   for (int ii = 0; ii < 3; ii++) {
186
187
188
189
190
191
192
193
      forces[atomAIndex][ii] += internalF[0][ii];
      forces[atomBIndex][ii] -= internalF[1][ii];
      forces[atomCIndex][ii] -= internalF[2][ii];
      forces[atomDIndex][ii] += internalF[3][ii];
   }

   // accumulate energies

194
195
   if (totalEnergy != NULL)
       *totalEnergy += energy;
196
}