"vscode:/vscode.git/clone" did not exist on "ff7931dc236940514acd4465b54931605fa7d886"
ReferenceCustomTorsionIxn.cpp 7.31 KB
Newer Older
1
/* Portions copyright (c) 2010-2016 Stanford University and Simbios.
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
 * Contributors: Peter Eastman
 *
 * 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>

27
#include "SimTKOpenMMUtilities.h"
28
29
30
31
#include "ReferenceCustomTorsionIxn.h"
#include "ReferenceForce.h"

using namespace std;
32
using namespace OpenMM;
33
34
35
36
37
38
39

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

   ReferenceCustomTorsionIxn constructor

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

40
ReferenceCustomTorsionIxn::ReferenceCustomTorsionIxn(const Lepton::CompiledExpression& energyExpression,
41
42
43
44
45
46
47
48
        const Lepton::CompiledExpression& forceExpression, const vector<string>& parameterNames, map<string, double> globalParameters,
        const vector<Lepton::CompiledExpression> energyParamDerivExpressions) :
        energyExpression(energyExpression), forceExpression(forceExpression), usePeriodic(false), energyParamDerivExpressions(energyParamDerivExpressions) {
    expressionSet.registerExpression(this->energyExpression);
    expressionSet.registerExpression(this->forceExpression);
    for (int i = 0; i < this->energyParamDerivExpressions.size(); i++)
        expressionSet.registerExpression(this->energyParamDerivExpressions[i]);
    thetaIndex = expressionSet.getVariableIndex("theta");
49
    numParameters = parameterNames.size();
peastman's avatar
peastman committed
50
51
52
53
    for (auto& param : parameterNames)
        torsionParamIndex.push_back(expressionSet.getVariableIndex(param));
    for (auto& param : globalParameters)
        expressionSet.setVariable(expressionSet.getVariableIndex(param.first), param.second);
54
55
56
57
58
59
60
61
}

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

   ReferenceCustomTorsionIxn destructor

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

62
ReferenceCustomTorsionIxn::~ReferenceCustomTorsionIxn() {
63
}
64

peastman's avatar
peastman committed
65
void ReferenceCustomTorsionIxn::setPeriodic(OpenMM::Vec3* vectors) {
66
67
68
69
    usePeriodic = true;
    boxVectors[0] = vectors[0];
    boxVectors[1] = vectors[1];
    boxVectors[2] = vectors[2];
70
71
72
73
74
75
76
77
78
79
}

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

   Calculate Custom Torsion Ixn

   @param atomIndices      atom indices of atom participating in bond
   @param atomCoordinates  atom coordinates
   @param parameters       parameters values
   @param forces           force array (forces added to input values)
80
   @param totalEnergy      if not null, the energy will be added to this
81
82
83

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

84
void ReferenceCustomTorsionIxn::calculateBondIxn(int* atomIndices,
peastman's avatar
peastman committed
85
86
87
88
89
                                                vector<Vec3>& atomCoordinates,
                                                double* parameters,
                                                vector<Vec3>& forces,
                                                double* totalEnergy, double* energyParamDerivs) {
   double deltaR[3][ReferenceForce::LastDeltaRIndex];
90
91
   for (int i = 0; i < numParameters; i++)
       expressionSet.setVariable(torsionParamIndex[i], parameters[i]);
92
93
94
95
96
97
98
99
100

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

   // get deltaR, R2, and R between three pairs of atoms: [j,i], [j,k], [l,k]

   int atomAIndex = atomIndices[0];
   int atomBIndex = atomIndices[1];
   int atomCIndex = atomIndices[2];
   int atomDIndex = atomIndices[3];
101
102
103
104
105
106
107
108
109
110
   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]);  
   }
111
112
113

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

peastman's avatar
peastman committed
114
115
   double crossProductMemory[6];
   double* crossProduct[2];
116
117
118
119
120
   crossProduct[0] = crossProductMemory;
   crossProduct[1] = crossProductMemory + 3;

   // get dihedral angle

peastman's avatar
peastman committed
121
122
123
   double dotDihedral;
   double signOfAngle;
   double angle = getDihedralAngleBetweenThreeVectors(deltaR[0], deltaR[1], deltaR[2], crossProduct, &dotDihedral, deltaR[0], &signOfAngle, 1);
124
   expressionSet.setVariable(thetaIndex, angle);
125
126
127

   // evaluate delta angle, dE/d(angle)

peastman's avatar
peastman committed
128
   double dEdAngle = forceExpression.evaluate();
129
130
131

   // compute force

peastman's avatar
peastman committed
132
133
134
135
136
   double internalF[4][3];
   double forceFactors[4];
   double normCross1         = DOT3(crossProduct[0], crossProduct[0]);
   double normBC             = deltaR[1][ReferenceForce::RIndex];
          forceFactors[0]    = (-dEdAngle*normBC)/normCross1;
137

peastman's avatar
peastman committed
138
139
   double normCross2         = DOT3(crossProduct[1], crossProduct[1]);
          forceFactors[3]    = (dEdAngle*normBC)/normCross2;
140

peastman's avatar
peastman committed
141
142
          forceFactors[1]    = DOT3(deltaR[0], deltaR[1]);
          forceFactors[1]   /= deltaR[1][ReferenceForce::R2Index];
143

peastman's avatar
peastman committed
144
145
          forceFactors[2]    = DOT3(deltaR[2], deltaR[1]);
          forceFactors[2]   /= deltaR[1][ReferenceForce::R2Index];
146

147
   for (int ii = 0; ii < 3; ii++) {
148
149
150
151

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

peastman's avatar
peastman committed
152
      double s          = forceFactors[1]*internalF[0][ii] - forceFactors[2]*internalF[3][ii];
153
154
155
156
157
158
159

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

   // accumulate forces

160
   for (int ii = 0; ii < 3; ii++) {
161
162
163
164
165
166
      forces[atomAIndex][ii] += internalF[0][ii];
      forces[atomBIndex][ii] -= internalF[1][ii];
      forces[atomCIndex][ii] -= internalF[2][ii];
      forces[atomDIndex][ii] += internalF[3][ii];
   }

167
168
169
170
171
   // Record parameter derivatives.

   for (int i = 0; i < energyParamDerivExpressions.size(); i++)
       energyParamDerivs[i] += energyParamDerivExpressions[i].evaluate();

172
173
   // accumulate energies

174
   if (totalEnergy != NULL)
peastman's avatar
peastman committed
175
       *totalEnergy += energyExpression.evaluate();
176
177
}