ReferenceCustomTorsionIxn.cpp 7.66 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
41
ReferenceCustomTorsionIxn::ReferenceCustomTorsionIxn(const Lepton::CompiledExpression& energyExpression,
        const Lepton::CompiledExpression& forceExpression, const vector<string>& parameterNames, map<string, double> globalParameters) :
42
        energyExpression(energyExpression), forceExpression(forceExpression), usePeriodic(false) {
43
44
45
46
47
48
49
50
51
52
53
54

    energyTheta = ReferenceForce::getVariablePointer(this->energyExpression, "theta");
    forceTheta = ReferenceForce::getVariablePointer(this->forceExpression, "theta");
    numParameters = parameterNames.size();
    for (int i = 0; i < (int) numParameters; i++) {
        energyParams.push_back(ReferenceForce::getVariablePointer(this->energyExpression, parameterNames[i]));
        forceParams.push_back(ReferenceForce::getVariablePointer(this->forceExpression, parameterNames[i]));
    }
    for (map<string, double>::const_iterator iter = globalParameters.begin(); iter != globalParameters.end(); ++iter) {
        ReferenceForce::setVariable(ReferenceForce::getVariablePointer(this->energyExpression, iter->first), iter->second);
        ReferenceForce::setVariable(ReferenceForce::getVariablePointer(this->forceExpression, iter->first), iter->second);
    }
55
56
57
58
59
60
61
62
}

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

   ReferenceCustomTorsionIxn destructor

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

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

66
67
68
69
70
void ReferenceCustomTorsionIxn::setPeriodic(OpenMM::RealVec* vectors) {
    usePeriodic = true;
    boxVectors[0] = vectors[0];
    boxVectors[1] = vectors[1];
    boxVectors[2] = vectors[2];
71
72
73
74
75
76
77
78
79
80
}

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

   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)
81
   @param totalEnergy      if not null, the energy will be added to this
82
83
84

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

85
void ReferenceCustomTorsionIxn::calculateBondIxn(int* atomIndices,
86
                                                vector<RealVec>& atomCoordinates,
87
                                                RealOpenMM* parameters,
88
                                                vector<RealVec>& forces,
89
                                                RealOpenMM* totalEnergy, double* energyParamDerivs) {
90
91
92
93
94
95
96

   static const std::string methodName = "\nReferenceCustomTorsionIxn::calculateTorsionIxn";

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

   RealOpenMM deltaR[3][ReferenceForce::LastDeltaRIndex];
97
98
99
100
   for (int i = 0; i < numParameters; i++) {
       ReferenceForce::setVariable(energyParams[i], parameters[i]);
       ReferenceForce::setVariable(forceParams[i], parameters[i]);
   }
101
102
103
104
105
106
107
108
109

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

   // 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];
110
111
112
113
114
115
116
117
118
119
   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]);  
   }
120
121
122
123
124
125
126
127
128
129
130
131

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

   RealOpenMM crossProductMemory[6];
   RealOpenMM* crossProduct[2];
   crossProduct[0] = crossProductMemory;
   crossProduct[1] = crossProductMemory + 3;

   // get dihedral angle

   RealOpenMM dotDihedral;
   RealOpenMM signOfAngle;
132
133
134
   RealOpenMM angle = getDihedralAngleBetweenThreeVectors(deltaR[0], deltaR[1], deltaR[2], crossProduct, &dotDihedral, deltaR[0], &signOfAngle, 1);
   ReferenceForce::setVariable(energyTheta, angle);
   ReferenceForce::setVariable(forceTheta, angle);
135
136
137

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

138
   RealOpenMM dEdAngle = (RealOpenMM) forceExpression.evaluate();
139
140
141
142
143

   // compute force

   RealOpenMM internalF[4][3];
   RealOpenMM forceFactors[4];
144
   RealOpenMM normCross1         = DOT3(crossProduct[0], crossProduct[0]);
145
146
147
   RealOpenMM normBC             = deltaR[1][ReferenceForce::RIndex];
              forceFactors[0]    = (-dEdAngle*normBC)/normCross1;

148
   RealOpenMM normCross2         = DOT3(crossProduct[1], crossProduct[1]);
149
150
              forceFactors[3]    = (dEdAngle*normBC)/normCross2;

151
              forceFactors[1]    = DOT3(deltaR[0], deltaR[1]);
152
153
              forceFactors[1]   /= deltaR[1][ReferenceForce::R2Index];

154
              forceFactors[2]    = DOT3(deltaR[2], deltaR[1]);
155
156
              forceFactors[2]   /= deltaR[1][ReferenceForce::R2Index];

157
   for (int ii = 0; ii < 3; ii++) {
158
159
160
161
162
163
164
165
166
167
168
169

      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

170
   for (int ii = 0; ii < 3; ii++) {
171
172
173
174
175
176
177
178
      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

179
   if (totalEnergy != NULL)
180
       *totalEnergy += (RealOpenMM) energyExpression.evaluate();
181
182
}