"platforms/cuda/vscode:/vscode.git/clone" did not exist on "6dc2f9a8cec35c7590cd69893818ef6748f2bcc8"
ReferenceBondIxn.cpp 10.9 KB
Newer Older
1

2
/* Portions copyright (c) 2006-2009 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
29
#include "SimTKOpenMMCommon.h"
#include "SimTKOpenMMUtilities.h"
30
31
32
#include "ReferenceForce.h"
#include "ReferenceBondIxn.h"

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

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

   ReferenceBondIxn constructor

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

42
ReferenceBondIxn::ReferenceBondIxn() {
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57

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

   // static const char* methodName = "\nReferenceBondIxn::ReferenceBondIxn";

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

}

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

   ReferenceBondIxn destructor

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

58
ReferenceBondIxn::~ReferenceBondIxn() {
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75

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

   // static const char* methodName = "\nReferenceBondIxn::~ReferenceBondIxn";

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

}

/**---------------------------------------------------------------------------------------
      
   Calculate Bond Ixn -- virtual method -- does nothing
      
   @param atomIndices      bond indices
   @param atomCoordinates  atom coordinates
   @param parameters       parameters
   @param forces           force array (forces added)
76
   @param totalEnergy      if not null, the energy will be added to this
77
78
79
      
   --------------------------------------------------------------------------------------- */
     
80
   void ReferenceBondIxn::calculateBondIxn(int* atomIndices, vector<RealVec>& atomCoordinates,
81
                                           RealOpenMM* parameters, vector<RealVec>& forces,
82
                                           RealOpenMM* totalEnergy) const {
83
84
85
86
87
88
89
90
91
92
93
94
95
96
   // ---------------------------------------------------------------------------------------

   // static const std::string methodName = "\nReferenceBondIxn::calculateBondIxn";

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

}
 
/**---------------------------------------------------------------------------------------

   Get normed dot product between two vectors

   Do computation in double?

97
98
   @param  vector1            first vector
   @param  vector2            second vector
99
100
101
102
103
104
105
   @param  hasREntry          if set, then vector1[ReferenceForce::RIndex] = norm of vector
                              defaults to 0 (i.e., R unavailable)

   @return dot product

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

106
107
RealOpenMM ReferenceBondIxn::getNormedDotProduct(RealOpenMM* vector1, RealOpenMM* vector2,
                                                 int hasREntry = 0) {
108
109
110
111
112
113
114
115
116
117

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

   // static const std::string methodName = "\nReferenceBondIxn::getNormedDotProduct";

   static const RealOpenMM zero        = 0.0;
   static const RealOpenMM one         = 1.0;

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

118
119
120
// for angles near pi, double is required due to the 'steepness' of acos()
// in this regime.
  
Mark Friedrichs's avatar
Mark Friedrichs committed
121
//#define USE_DOUBLE_FOR_NORMED_DOT_PRODUCT
122
123
124
125

#if defined USE_DOUBLE_FOR_NORMED_DOT_PRODUCT
   double v1D[3];
   double v2D[3];
126
127
128
129
130
131
132
133
134
135
136
   v1D[0]                = static_cast<double>(vector1[0]);
   v1D[1]                = static_cast<double>(vector1[1]);
   v1D[2]                = static_cast<double>(vector1[2]);

   v2D[0]                = static_cast<double>(vector2[0]);
   v2D[1]                = static_cast<double>(vector2[1]);
   v2D[2]                = static_cast<double>(vector2[2]);
   double dotProductD    = DOT3(v1D, v2D);
   if (dotProductD != 0.0) {
      if (hasREntry) {
         dotProductD    /= (static_cast<double>(vector1[ReferenceForce::RIndex])*static_cast<double>(vector2[ReferenceForce::RIndex]));
137
      } else {
138
139
140
         double norm1    = DOT3(v1D, v1D);
         double norm2    = DOT3(v2D, v2D);
         dotProductD    /= sqrt(norm1*norm2);
141
142
143
144
145
146
      }
   }
   RealOpenMM dotProduct = static_cast<RealOpenMM>(dotProductD);

#else      

147
148
149
150
   RealOpenMM dotProduct = DOT3(vector1, vector2);
   if (dotProduct != zero) {
      if (hasREntry) {
         dotProduct       /= (vector1[ReferenceForce::RIndex]*vector2[ReferenceForce::RIndex]);
151
      } else {
152
153
154
         RealOpenMM norm1  = DOT3(vector1, vector1);
         RealOpenMM norm2  = DOT3(vector2, vector2);
         dotProduct       /= SQRT(norm1*norm2);
155
156
      }
   }
157
158
159

#endif
#undef USE_DOUBLE_FOR_NORMED_DOT_PRODUCT
160
161
162
      
   // clamp dot product to [-1,1]

163
   if (dotProduct > one) {
164
      dotProduct = one;
165
   } else if (dotProduct < -one) {
166
167
168
169
170
171
172
173
174
175
176
      dotProduct = -one;
   }

   return dotProduct;

}

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

   Get angle between two vectors

177
178
   @param  vector1            first vector
   @param  vector2            second vector
179
180
181
182
183
184
185
186
   @param  outputDotProduct   output cosine of angle between two vectors (optional)
   @param  hasREntry          if set, then vector1[ReferenceForce::RIndex] = norm of vector
                              defaults to 0 -> R unavailable

   @return cosine of angles in radians

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

187
188
189
RealOpenMM ReferenceBondIxn::getAngleBetweenTwoVectors(RealOpenMM* vector1, RealOpenMM* vector2, 
                                                       RealOpenMM* outputDotProduct = NULL,
                                                       int hasREntry = 0) {
190
191
192
193
194
195
196
197
198
199
200
201

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

   // static const std::string methodName = "\nReferenceBondIxn::getAngle";

   static const RealOpenMM zero        = 0.0;
   static const RealOpenMM one         = 1.0;

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

   // get dot product betweenn vectors and then angle

202
   RealOpenMM dotProduct = getNormedDotProduct(vector1, vector2, hasREntry);
203
204

   RealOpenMM angle;
205
206
207
208
209
210
211
212
   if (dotProduct > (RealOpenMM) 0.99 || dotProduct < (RealOpenMM) -0.99) {
       // We're close to the singularity in acos(), so take the cross product and use asin() instead.

       RealOpenMM cross[3];
       SimTKOpenMMUtilities::crossProductVector3(vector1, vector2, cross);
       RealOpenMM scale = DOT3(vector1, vector1)*DOT3(vector2, vector2);
       angle = ASIN(SQRT(DOT3(cross, cross)/scale));
       if (dotProduct < zero)
213
           angle = (RealOpenMM) (M_PI-angle);
214
215
216
217
   } else {
      angle = ACOS(dotProduct);
   }

218
   if (outputDotProduct) {
219
220
221
222
223
224
225
226
227
228
229
      *outputDotProduct = dotProduct;
   }

   return angle;

}

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

   Get dihedral angle between three vectors

230
231
232
   @param  vector1            first vector
   @param  vector2            second vector
   @param  vector3            third vector
233
234
235
236
237
238
239
240
241
242
243
   @param  outputCrossProduct output cross product vectors
   @param  cosineOfAngle      cosine of angle (output)
   @param  signVector         vector to test sign (optional)
   @param  signOfAngle        sign of angle (output) (optional)
   @param  hasREntry          if set, then vector1[ReferenceForce::RIndex] = norm of vector
                              defaults to 0

   @return cosine of dihedral angle in radians

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

244
245
246
247
248
249
250
251
RealOpenMM ReferenceBondIxn::getDihedralAngleBetweenThreeVectors(RealOpenMM*  vector1,
                                                                 RealOpenMM*  vector2, 
                                                                 RealOpenMM*  vector3, 
                                                                 RealOpenMM** outputCrossProduct  = NULL, 
                                                                 RealOpenMM*  cosineOfAngle       = NULL, 
                                                                 RealOpenMM*  signVector          = NULL, 
                                                                 RealOpenMM*  signOfAngle         = NULL, 
                                                                 int          hasREntry = 0) {
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266

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

   // static const std::string methodName = "\nReferenceBondIxn::getDihedralAngleBetweenThreeVectors";

   static const RealOpenMM zero        = 0.0;
   static const RealOpenMM one         = 1.0;

   RealOpenMM   tempVectors[6]         = { zero, zero, zero, zero, zero, zero };

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

   // get cross products between vectors and then angle between cross product vectors

   RealOpenMM* crossProduct[2];
267
   if (outputCrossProduct) {
268
269
270
271
272
273
274
      crossProduct[0] = outputCrossProduct[0];
      crossProduct[1] = outputCrossProduct[1];
   } else {
      crossProduct[0] = tempVectors;
      crossProduct[1] = tempVectors + 3;
   }
   
275
276
   SimTKOpenMMUtilities::crossProductVector3(vector1, vector2, crossProduct[0]);
   SimTKOpenMMUtilities::crossProductVector3(vector2, vector3, crossProduct[1]);
277

278
   RealOpenMM angle         = getAngleBetweenTwoVectors(crossProduct[0], crossProduct[1], cosineOfAngle, 0);
279
280
281

   // take care of sign of angle

282
283
   if (signVector) {
      RealOpenMM dotProduct = DOT3(signVector, crossProduct[1]);
284
      RealOpenMM sign       = dotProduct < zero ? -one : one; 
285
      if (signOfAngle) {
286
287
288
289
290
291
292
293
         *signOfAngle = sign;
      }
      angle *= sign;
   }

   return angle;

}