TestReferenceAmoebaOutOfPlaneBendForce.cpp 20.6 KB
Newer Older
Mark Friedrichs's avatar
Mark Friedrichs committed
1
2
3
4
5
6
7
8
/* -------------------------------------------------------------------------- *
 *                                   OpenMM                                   *
 * -------------------------------------------------------------------------- *
 * This is part of the OpenMM molecular simulation toolkit originating from   *
 * Simbios, the NIH National Center for Physics-Based Simulation of           *
 * Biological Structures at Stanford, funded under the NIH Roadmap for        *
 * Medical Research, grant U54 GM072970. See https://simtk.org.               *
 *                                                                            *
9
 * Portions copyright (c) 2008-2016 Stanford University and the Authors.      *
Mark Friedrichs's avatar
Mark Friedrichs committed
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
 * Authors: Peter Eastman                                                     *
 * Contributors:                                                              *
 *                                                                            *
 * 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.                                     *
 * -------------------------------------------------------------------------- */

/**
 * This tests the Reference implementation of ReferenceAmoebaOutOfPlaneBendForce.
 */

36
#include "openmm/internal/AssertionUtilities.h"
Mark Friedrichs's avatar
Mark Friedrichs committed
37
38
//#include "AmoebaTinkerParameterFile.h"
#include "openmm/Context.h"
39
#include "OpenMMAmoeba.h"
Mark Friedrichs's avatar
Mark Friedrichs committed
40
41
#include "openmm/System.h"
#include "openmm/LangevinIntegrator.h"
42
#include "SimTKOpenMMRealType.h"
Mark Friedrichs's avatar
Mark Friedrichs committed
43
44
45
46
47
#include <iostream>
#include <vector>

using namespace OpenMM;

48
49
extern "C" OPENMM_EXPORT void registerAmoebaReferenceKernelFactories();

Mark Friedrichs's avatar
Mark Friedrichs committed
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
const double TOL = 1e-3;

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

   Compute cross product of two 3-vectors and place in 3rd vector

   vectorZ = vectorX x vectorY

   @param vectorX             x-vector
   @param vectorY             y-vector
   @param vectorZ             z-vector

   @return vector is vectorZ

   --------------------------------------------------------------------------------------- */
     
66
static void crossProductVector3(double* vectorX, double* vectorY, double* vectorZ) {
Mark Friedrichs's avatar
Mark Friedrichs committed
67
68
69
70
71
72
73
74

    vectorZ[0]  = vectorX[1]*vectorY[2] - vectorX[2]*vectorY[1];
    vectorZ[1]  = vectorX[2]*vectorY[0] - vectorX[0]*vectorY[2];
    vectorZ[2]  = vectorX[0]*vectorY[1] - vectorX[1]*vectorY[0];

    return;
}

75
static double dotVector3(double* vectorX, double* vectorY) {
Mark Friedrichs's avatar
Mark Friedrichs committed
76
77
78
79
80
    return vectorX[0]*vectorY[0] + vectorX[1]*vectorY[1] + vectorX[2]*vectorY[2];
}


static void computeAmoebaOutOfPlaneBendForce(int bondIndex,  std::vector<Vec3>& positions, AmoebaOutOfPlaneBendForce& amoebaOutOfPlaneBendForce,
peastman's avatar
peastman committed
81
                                             std::vector<Vec3>& forces, double* energy) {
Mark Friedrichs's avatar
Mark Friedrichs committed
82
83
84
85
86
87
88
89
90


    double kAngleCubic     = amoebaOutOfPlaneBendForce.getAmoebaGlobalOutOfPlaneBendCubic();
    double kAngleQuartic   = amoebaOutOfPlaneBendForce.getAmoebaGlobalOutOfPlaneBendQuartic();
    double kAnglePentic    = amoebaOutOfPlaneBendForce.getAmoebaGlobalOutOfPlaneBendPentic();
    double kAngleSextic    = amoebaOutOfPlaneBendForce.getAmoebaGlobalOutOfPlaneBendSextic();

    int particle1, particle2, particle3, particle4;
    double kAngleQuadratic;
91
    amoebaOutOfPlaneBendForce.getOutOfPlaneBendParameters(bondIndex, particle1, particle2, particle3, particle4, kAngleQuadratic);
Mark Friedrichs's avatar
Mark Friedrichs committed
92
93
94
95
96
97
98
99
100
101

    enum { A, B, C, D, LastAtomIndex };
    enum { AB, CB, DB, AD, CD, LastDeltaIndex };
 
    // ---------------------------------------------------------------------------------------
 
    // get deltaR between various combinations of the 4 atoms
    // and various intermediate terms
 
    double deltaR[LastDeltaIndex][6];
102
    for (int ii = 0; ii < 3; ii++) {
Mark Friedrichs's avatar
Mark Friedrichs committed
103
104
105
106
107
         deltaR[AB][ii] = positions[particle1][ii] - positions[particle2][ii];
         deltaR[CB][ii] = positions[particle3][ii] - positions[particle2][ii];
         deltaR[DB][ii] = positions[particle4][ii] - positions[particle2][ii];
         deltaR[AD][ii] = positions[particle1][ii] - positions[particle4][ii];
         deltaR[CD][ii] = positions[particle3][ii] - positions[particle4][ii];
Jason Swails's avatar
More  
Jason Swails committed
108
    }
Mark Friedrichs's avatar
Mark Friedrichs committed
109

110
111
112
    double rDB2  = dotVector3(deltaR[DB], deltaR[DB]);
    double rAD2  = dotVector3(deltaR[AD], deltaR[AD]);
    double rCD2  = dotVector3(deltaR[CD], deltaR[CD]);
Mark Friedrichs's avatar
Mark Friedrichs committed
113
114
 
    double tempVector[3];
115
    crossProductVector3(deltaR[CB], deltaR[DB], tempVector);
116
    double   eE  = dotVector3(deltaR[AB], tempVector);
117
    double  dot  = dotVector3(deltaR[AD],  deltaR[CD]);
Mark Friedrichs's avatar
Mark Friedrichs committed
118
119
    double   cc  = rAD2*rCD2 - dot*dot;
 
120
    if (rDB2 <= 0.0 || cc == 0.0) {
Mark Friedrichs's avatar
Mark Friedrichs committed
121
122
123
124
125
       return;
    }
    double bkk2   = rDB2 - eE*eE/cc;
    double cosine = sqrt(bkk2/rDB2);
    double angle;
126
    if (cosine >= 1.0) {
Mark Friedrichs's avatar
Mark Friedrichs committed
127
        angle = 0.0;
Jason Swails's avatar
More  
Jason Swails committed
128
    }
129
    else if (cosine <= -1.0) {
Mark Friedrichs's avatar
Mark Friedrichs committed
130
        angle = PI_M;
Jason Swails's avatar
More  
Jason Swails committed
131
132
    }
    else {
Mark Friedrichs's avatar
Mark Friedrichs committed
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
        angle = RADIAN*acos(cosine);
    }

    // chain rule
 
    double dt    = angle;
    double dt2   = dt*dt;
    double dt3   = dt2*dt;
    double dt4   = dt2*dt2;
 
    double dEdDt = 2.0 + 3.0*kAngleCubic*dt  + 4.0*kAngleQuartic*dt2 + 5.0*kAnglePentic *dt3 + 6.0*kAngleSextic *dt4;
     dEdDt      *= kAngleQuadratic*dt*RADIAN;
 
    double dEdCos;
    dEdCos       = dEdDt/sqrt(cc*bkk2);
148
    if (eE > 0.0) {
Mark Friedrichs's avatar
Mark Friedrichs committed
149
150
151
152
153
154
        dEdCos *= -1.0;
    }
 
    double term = eE/cc;
 
    double dccd[LastAtomIndex][3];
155
    for (int ii = 0; ii < 3; ii++) {
Mark Friedrichs's avatar
Mark Friedrichs committed
156
157
158
159
160
161
        dccd[A][ii] = (deltaR[AD][ii]*rCD2 - deltaR[CD][ii]*dot)*term;
        dccd[C][ii] = (deltaR[CD][ii]*rAD2 - deltaR[AD][ii]*dot)*term;
        dccd[D][ii] = -1.0*(dccd[A][ii] + dccd[C][ii]);
    }
 
    double deed[LastAtomIndex][3];
162
163
164
    crossProductVector3(deltaR[DB], deltaR[CB], deed[A]);
    crossProductVector3(deltaR[AB], deltaR[DB], deed[C]);
    crossProductVector3(deltaR[CB], deltaR[AB], deed[D]);
Mark Friedrichs's avatar
Mark Friedrichs committed
165
166
167
168
169
170
171
172
173
174
175
 
    term        = eE/rDB2;
    deed[D][0] += deltaR[DB][0]*term;
    deed[D][1] += deltaR[DB][1]*term;
    deed[D][2] += deltaR[DB][2]*term;
 
    // ---------------------------------------------------------------------------------------
 
    // forces
 
    // calculate forces for atoms a, c, d
176
    // the force for b is then -(a+ c + d)
Mark Friedrichs's avatar
Mark Friedrichs committed
177
178
179
 
    double subForce[LastAtomIndex][3];
 
180
    for (int jj = 0; jj < LastAtomIndex; jj++) {
Mark Friedrichs's avatar
Mark Friedrichs committed
181
182
183
 
        // A, C, D
  
184
185
        for (int ii = 0; ii < 3; ii++) {
            subForce[jj][ii] = dEdCos*(dccd[jj][ii] + deed[jj][ii]);
Mark Friedrichs's avatar
Mark Friedrichs committed
186
187
        }
  
188
        if (jj == 0)jj++; // skip B
Mark Friedrichs's avatar
Mark Friedrichs committed
189
190
191
  
        // now compute B
  
192
193
        if (jj == 3) {
           for (int ii = 0; ii < 3; ii++) {
Mark Friedrichs's avatar
Mark Friedrichs committed
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
               subForce[1][ii] = -1.0*(subForce[0][ii] + subForce[2][ii] + subForce[3][ii]);
           }
        }
    }
 
    // accumulate forces and energy

    forces[particle1][0]       -= subForce[0][0];
    forces[particle1][1]       -= subForce[0][1];
    forces[particle1][2]       -= subForce[0][2];

    forces[particle2][0]       -= subForce[1][0];
    forces[particle2][1]       -= subForce[1][1];
    forces[particle2][2]       -= subForce[1][2];

    forces[particle3][0]       -= subForce[2][0];
    forces[particle3][1]       -= subForce[2][1];
    forces[particle3][2]       -= subForce[2][2];
    
    forces[particle4][0]       -= subForce[3][0];
    forces[particle4][1]       -= subForce[3][1];
    forces[particle4][2]       -= subForce[3][2];
    
    // ---------------------------------------------------------------------------------------
 
    // calculate energy if 'energy' is set
 
    double energyTerm  = 1.0 + kAngleCubic  *dt  +
                               kAngleQuartic*dt2 +
                               kAnglePentic *dt3 +
                               kAngleSextic *dt4;
    energyTerm        *= kAngleQuadratic*dt2;
    *energy           += energyTerm;
    return;
}
 
230
static void computeAmoebaOutOfPlaneBendForces(Context& context, AmoebaOutOfPlaneBendForce& amoebaOutOfPlaneBendForce,
peastman's avatar
peastman committed
231
                                              std::vector<Vec3>& expectedForces, double* expectedEnergy) {
Mark Friedrichs's avatar
Mark Friedrichs committed
232
233
234
235
236

    // get positions and zero forces

    State state                 = context.getState(State::Positions);
    std::vector<Vec3> positions = state.getPositions();
237
    expectedForces.resize(positions.size());
Mark Friedrichs's avatar
Mark Friedrichs committed
238
    
239
    for (unsigned int ii = 0; ii < expectedForces.size(); ii++) {
Mark Friedrichs's avatar
Mark Friedrichs committed
240
241
242
243
244
245
        expectedForces[ii][0] = expectedForces[ii][1] = expectedForces[ii][2] = 0.0;
    }

    // calculates forces/energy

    *expectedEnergy = 0.0;
246
    for (int ii = 0; ii < amoebaOutOfPlaneBendForce.getNumOutOfPlaneBends(); ii++) {
peastman's avatar
peastman committed
247
        computeAmoebaOutOfPlaneBendForce(ii, positions, amoebaOutOfPlaneBendForce, expectedForces, expectedEnergy);
Mark Friedrichs's avatar
Mark Friedrichs committed
248
249
250
    }
}

251
void compareWithExpectedForceAndEnergy(Context& context, AmoebaOutOfPlaneBendForce& amoebaOutOfPlaneBendForce,
peastman's avatar
peastman committed
252
                                       double tolerance, const std::string& idString) {
Mark Friedrichs's avatar
Mark Friedrichs committed
253
254
255

    std::vector<Vec3> expectedForces;
    double expectedEnergy;
peastman's avatar
peastman committed
256
    computeAmoebaOutOfPlaneBendForces(context, amoebaOutOfPlaneBendForce, expectedForces, &expectedEnergy);
Mark Friedrichs's avatar
Mark Friedrichs committed
257
258
259
260
   
    State state                      = context.getState(State::Forces | State::Energy);
    const std::vector<Vec3> forces   = state.getForces();

261
262
    for (unsigned int ii = 0; ii < forces.size(); ii++) {
        ASSERT_EQUAL_VEC(expectedForces[ii], forces[ii], tolerance);
Mark Friedrichs's avatar
Mark Friedrichs committed
263
    }
264
    ASSERT_EQUAL_TOL(expectedEnergy, state.getPotentialEnergy(), tolerance);
Mark Friedrichs's avatar
Mark Friedrichs committed
265
266
}

peastman's avatar
peastman committed
267
void testOneOutOfPlaneBend() {
Mark Friedrichs's avatar
Mark Friedrichs committed
268
269
270

    System system;
    int numberOfParticles = 4;
271
    for (int ii = 0; ii < numberOfParticles; ii++) {
Mark Friedrichs's avatar
Mark Friedrichs committed
272
273
274
275
276
277
278
        system.addParticle(1.0);
    }

    LangevinIntegrator integrator(0.0, 0.1, 0.01);

    AmoebaOutOfPlaneBendForce* amoebaOutOfPlaneBendForce = new AmoebaOutOfPlaneBendForce();

279
280
281
282
    amoebaOutOfPlaneBendForce->setAmoebaGlobalOutOfPlaneBendCubic( -0.1400000E-01);
    amoebaOutOfPlaneBendForce->setAmoebaGlobalOutOfPlaneBendQuartic(0.5600000E-04);
    amoebaOutOfPlaneBendForce->setAmoebaGlobalOutOfPlaneBendPentic(-0.7000000E-06);
    amoebaOutOfPlaneBendForce->setAmoebaGlobalOutOfPlaneBendSextic( 0.2200000E-07);
Mark Friedrichs's avatar
Mark Friedrichs committed
283
284

    double kOutOfPlaneBend = 0.328682196E-01;
285
    amoebaOutOfPlaneBendForce->addOutOfPlaneBend(0, 1, 2, 3, kOutOfPlaneBend);
Mark Friedrichs's avatar
Mark Friedrichs committed
286
287

    system.addForce(amoebaOutOfPlaneBendForce);
288
289
    ASSERT(!amoebaOutOfPlaneBendForce->usesPeriodicBoundaryConditions());
    ASSERT(!system.usesPeriodicBoundaryConditions());
290
    Context context(system, integrator, Platform::getPlatformByName("Reference"));
Mark Friedrichs's avatar
Mark Friedrichs committed
291
292
293

    std::vector<Vec3> positions(numberOfParticles);

294
295
    positions[0] = Vec3(0.262660000E+02,  0.254130000E+02,  0.284200000E+01);
    positions[1] = Vec3(0.269130000E+02,  0.266390000E+02,  0.353100000E+01);
Mark Friedrichs's avatar
Mark Friedrichs committed
296

297
298
    positions[2] = Vec3(0.278860000E+02,  0.264630000E+02,  0.426300000E+01);
    positions[3] = Vec3(0.245568230E+02,  0.250215290E+02,  0.796852800E+01);
Mark Friedrichs's avatar
Mark Friedrichs committed
299
300

    context.setPositions(positions);
peastman's avatar
peastman committed
301
    compareWithExpectedForceAndEnergy(context, *amoebaOutOfPlaneBendForce, TOL, "testOneOutOfPlaneBend");
302
303
304
305
306
307
308
    
    // Try changing the bend parameters and make sure it's still correct.
    
    amoebaOutOfPlaneBendForce->setOutOfPlaneBendParameters(0, 0, 1, 2, 3, 1.1*kOutOfPlaneBend);
    bool exceptionThrown = false;
    try {
        // This should throw an exception.
peastman's avatar
peastman committed
309
        compareWithExpectedForceAndEnergy(context, *amoebaOutOfPlaneBendForce, TOL, "testOneOutOfPlaneBend");
310
311
312
313
314
315
    }
    catch (std::exception ex) {
        exceptionThrown = true;
    }
    ASSERT(exceptionThrown);
    amoebaOutOfPlaneBendForce->updateParametersInContext(context);
peastman's avatar
peastman committed
316
    compareWithExpectedForceAndEnergy(context, *amoebaOutOfPlaneBendForce, TOL, "testOneOutOfPlaneBend");
Mark Friedrichs's avatar
Mark Friedrichs committed
317
318
}

peastman's avatar
peastman committed
319
void testOneOutOfPlaneBend2(int setId) {
Mark Friedrichs's avatar
Mark Friedrichs committed
320
321
322

    System system;
    int numberOfParticles = 4;
323
    for (int ii = 0; ii < numberOfParticles; ii++) {
Mark Friedrichs's avatar
Mark Friedrichs committed
324
325
326
327
328
329
330
        system.addParticle(1.0);
    }

    LangevinIntegrator integrator(0.0, 0.1, 0.01);

    AmoebaOutOfPlaneBendForce* amoebaOutOfPlaneBendForce = new AmoebaOutOfPlaneBendForce();

331
332
333
334
    amoebaOutOfPlaneBendForce->setAmoebaGlobalOutOfPlaneBendCubic( -0.1400000E-01);
    amoebaOutOfPlaneBendForce->setAmoebaGlobalOutOfPlaneBendQuartic(0.5600000E-04);
    amoebaOutOfPlaneBendForce->setAmoebaGlobalOutOfPlaneBendPentic(-0.7000000E-06);
    amoebaOutOfPlaneBendForce->setAmoebaGlobalOutOfPlaneBendSextic( 0.2200000E-07);
Mark Friedrichs's avatar
Mark Friedrichs committed
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
/*
   285    441    442    443    444  0.328682196E-01
   286    441    442    444    443  0.164493407E-01
   287    443    442    444    441  0.636650407E-02
   288    442    444    447    448  0.392956472E-02
   289    442    444    448    447  0.392956472E-02
   290    447    444    448    442  0.214755281E-01
  441  0.893800000E+01  0.439800000E+01  0.343100000E+01
  442  0.779100000E+01  0.614600000E+01  0.390100000E+01
  443  0.915400000E+01  0.683900000E+01  0.389400000E+01
  444  0.101770000E+02  0.619000000E+01  0.379900000E+01
  445  0.921000000E+01  0.813800000E+01  0.398600000E+01
  446  0.708500000E+01  0.672900000E+01  0.332700000E+01
  447  0.744300000E+01  0.605200000E+01  0.491900000E+01
  448  0.100820000E+02  0.859300000E+01  0.398200000E+01
  449  0.838000000E+01  0.866100000E+01  0.406000000E+01
*/

    std::map<int,Vec3> coordinates;
354
355
356
357
358
359
360
361
362
    coordinates[440] = Vec3(0.893800000E+01,  0.439800000E+01,  0.343100000E+01);
    coordinates[441] = Vec3(0.779100000E+01,  0.614600000E+01,  0.390100000E+01);
    coordinates[442] = Vec3(0.915400000E+01,  0.683900000E+01,  0.389400000E+01);
    coordinates[443] = Vec3(0.101770000E+02,  0.619000000E+01,  0.379900000E+01);
    coordinates[444] = Vec3(0.921000000E+01,  0.813800000E+01,  0.398600000E+01);
    coordinates[445] = Vec3(0.708500000E+01,  0.672900000E+01,  0.332700000E+01);
    coordinates[446] = Vec3(0.744300000E+01,  0.605200000E+01,  0.491900000E+01);
    coordinates[447] = Vec3(0.100820000E+02,  0.859300000E+01,  0.398200000E+01);
    coordinates[448] = Vec3(0.838000000E+01,  0.866100000E+01,  0.406000000E+01);
Mark Friedrichs's avatar
Mark Friedrichs committed
363
364
365
    
    double kOutOfPlaneBend = 0.328682196E-01;
    std::vector<int> particleIndices;
366
367
368
369
370
    if (setId == 1) {
        particleIndices.push_back(441); 
        particleIndices.push_back(442); 
        particleIndices.push_back(443); 
        particleIndices.push_back(444); 
Mark Friedrichs's avatar
Mark Friedrichs committed
371
        kOutOfPlaneBend = 0.328682196E-01;
Jason Swails's avatar
More  
Jason Swails committed
372
    }
373
374
375
376
377
    else if (setId == 2) {
        particleIndices.push_back(441); 
        particleIndices.push_back(442); 
        particleIndices.push_back(444); 
        particleIndices.push_back(443); 
Mark Friedrichs's avatar
Mark Friedrichs committed
378
        kOutOfPlaneBend = 0.164493407E-01;
Jason Swails's avatar
More  
Jason Swails committed
379
    }
380
381
382
383
384
    else if (setId == 3) {
        particleIndices.push_back(443); 
        particleIndices.push_back(442); 
        particleIndices.push_back(444); 
        particleIndices.push_back(441); 
Mark Friedrichs's avatar
Mark Friedrichs committed
385
        kOutOfPlaneBend = 0.636650407E-02;
Jason Swails's avatar
More  
Jason Swails committed
386
    }
387
388
389
390
391
    else if (setId == 4) {
        particleIndices.push_back(442); 
        particleIndices.push_back(444); 
        particleIndices.push_back(447); 
        particleIndices.push_back(448); 
Mark Friedrichs's avatar
Mark Friedrichs committed
392
        kOutOfPlaneBend = 0.392956472E-02;
Jason Swails's avatar
More  
Jason Swails committed
393
    }
394
395
396
397
398
    else if (setId == 5) {
        particleIndices.push_back(442); 
        particleIndices.push_back(444); 
        particleIndices.push_back(448); 
        particleIndices.push_back(447); 
Mark Friedrichs's avatar
Mark Friedrichs committed
399
        kOutOfPlaneBend = 0.392956472E-02;
Jason Swails's avatar
More  
Jason Swails committed
400
    }
401
402
403
404
405
    else if (setId == 6) {
        particleIndices.push_back(447); 
        particleIndices.push_back(444); 
        particleIndices.push_back(448); 
        particleIndices.push_back(442); 
Mark Friedrichs's avatar
Mark Friedrichs committed
406
        kOutOfPlaneBend = 0.214755281E-01;
Jason Swails's avatar
More  
Jason Swails committed
407
408
    }
    else {
Mark Friedrichs's avatar
Mark Friedrichs committed
409
410
        std::stringstream buffer;
        buffer << "Set id " << setId << " not recognized.";
411
        throw OpenMMException(buffer.str());
Mark Friedrichs's avatar
Mark Friedrichs committed
412
413
    }

414
    amoebaOutOfPlaneBendForce->addOutOfPlaneBend(0, 1, 2, 3, kOutOfPlaneBend);
Mark Friedrichs's avatar
Mark Friedrichs committed
415
416

    system.addForce(amoebaOutOfPlaneBendForce);
417
    Context context(system, integrator, Platform::getPlatformByName("Reference"));
Mark Friedrichs's avatar
Mark Friedrichs committed
418
419
    std::vector<Vec3> positions(numberOfParticles);

420
421
    for (unsigned int ii = 0; ii < static_cast<unsigned int>(numberOfParticles); ii++) {
        if (coordinates.find(particleIndices[ii]) == coordinates.end()) {
Mark Friedrichs's avatar
Mark Friedrichs committed
422
423
            std::stringstream buffer;
            buffer << "Coordinates " << particleIndices[ii] << " not loaded.";
424
            throw OpenMMException(buffer.str());
Mark Friedrichs's avatar
Mark Friedrichs committed
425
426
427
428
429
        }
        positions[ii] = coordinates[particleIndices[ii]];
    }

    context.setPositions(positions);
peastman's avatar
peastman committed
430
    compareWithExpectedForceAndEnergy(context, *amoebaOutOfPlaneBendForce, TOL, "testOneOutOfPlaneBend");
Mark Friedrichs's avatar
Mark Friedrichs committed
431
432
433
434

    static int iter = 0;
    static std::map<int,Vec3> totalForces;
    static double totalEnergy;
435
436
    if (iter == 0) {

437
438
439
440
441
442
443
444
445
        totalForces[441] = Vec3(0.0, 0.0, 0.0);
        totalForces[442] = Vec3(0.0, 0.0, 0.0);
        totalForces[443] = Vec3(0.0, 0.0, 0.0);
        totalForces[444] = Vec3(0.0, 0.0, 0.0);
        totalForces[445] = Vec3(0.0, 0.0, 0.0);
        totalForces[446] = Vec3(0.0, 0.0, 0.0);
        totalForces[447] = Vec3(0.0, 0.0, 0.0);
        totalForces[448] = Vec3(0.0, 0.0, 0.0);
        totalForces[449] = Vec3(0.0, 0.0, 0.0);
Mark Friedrichs's avatar
Mark Friedrichs committed
446
447
448
449
450
        totalEnergy      = 0.0;
    }
    iter++;

    std::vector<Vec3> forces;
451
    forces.resize(numberOfParticles);
Mark Friedrichs's avatar
Mark Friedrichs committed
452
    double energy;
peastman's avatar
peastman committed
453
    computeAmoebaOutOfPlaneBendForce(0, positions, *amoebaOutOfPlaneBendForce, forces, &energy);
Mark Friedrichs's avatar
Mark Friedrichs committed
454
455

    totalEnergy += energy;
456
457
    for (unsigned int ii = 0; ii < static_cast<unsigned int>(numberOfParticles); ii++) {
        for (unsigned int jj = 0; jj < 3; jj++) {
Mark Friedrichs's avatar
Mark Friedrichs committed
458
459
460
461
462
            totalForces[particleIndices[ii]][jj] += forces[ii][jj]; 
        }
    }
}

463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
void testPeriodic() {
    // Create a force that uses periodic boundary conditions.

    System system;
    system.setDefaultPeriodicBoxVectors(Vec3(3, 0, 0), Vec3(0, 3, 0), Vec3(0, 0, 3));
    int numberOfParticles = 4;
    for (int ii = 0; ii < numberOfParticles; ii++)
        system.addParticle(1.0);
    LangevinIntegrator integrator(0.0, 0.1, 0.01);
    AmoebaOutOfPlaneBendForce* amoebaOutOfPlaneBendForce = new AmoebaOutOfPlaneBendForce();
    amoebaOutOfPlaneBendForce->setAmoebaGlobalOutOfPlaneBendCubic( -0.1400000E-01);
    amoebaOutOfPlaneBendForce->setAmoebaGlobalOutOfPlaneBendQuartic(0.5600000E-04);
    amoebaOutOfPlaneBendForce->setAmoebaGlobalOutOfPlaneBendPentic(-0.7000000E-06);
    amoebaOutOfPlaneBendForce->setAmoebaGlobalOutOfPlaneBendSextic( 0.2200000E-07);
    double kOutOfPlaneBend = 0.328682196E-01;
    amoebaOutOfPlaneBendForce->addOutOfPlaneBend(0, 1, 2, 3, kOutOfPlaneBend);
    amoebaOutOfPlaneBendForce->setUsesPeriodicBoundaryConditions(true);
    system.addForce(amoebaOutOfPlaneBendForce);
    Context context(system, integrator, Platform::getPlatformByName("Reference"));
    std::vector<Vec3> positions(numberOfParticles);
    positions[0] = Vec3(0, 0, 0);
    positions[1] = Vec3(1, 0, 0);
    positions[2] = Vec3(0, 1, 0);
    positions[3] = Vec3(0, 0, 1);
    context.setPositions(positions);
    State s1 = context.getState(State::Forces | State::Energy);
    
    // Move one atom to a position that should give identical results.

    positions[3] = Vec3(0, 0, -2);
    context.setPositions(positions);
    State s2 = context.getState(State::Forces | State::Energy);
    ASSERT_EQUAL_TOL(s1.getPotentialEnergy(), s2.getPotentialEnergy(), 1e-5);
    for (int i = 0; i < numberOfParticles; i++)
        ASSERT_EQUAL_VEC(s1.getForces()[i], s2.getForces()[i], 1e-5);
}

500
int main(int numberOfArguments, char* argv[]) {
Mark Friedrichs's avatar
Mark Friedrichs committed
501
502
503

    try {
        std::cout << "TestReferenceAmoebaOutOfPlaneBendForce running test..." << std::endl;
504
        registerAmoebaReferenceKernelFactories();
peastman's avatar
peastman committed
505
        testOneOutOfPlaneBend();
506
        testPeriodic();
peastman's avatar
peastman committed
507
        //testOneOutOfPlaneBend2(atoi(argv[1]));
508
        //for (int ii = 1; ii <= 6; ii++) {
peastman's avatar
peastman committed
509
        //     testOneOutOfPlaneBend2(ii);
Mark Friedrichs's avatar
Mark Friedrichs committed
510
511
512
513
514
515
516
        //}
    }
    catch(const std::exception& e) {
        std::cout << "exception: " << e.what() << std::endl;
        std::cout << "FAIL - ERROR.  Test failed." << std::endl;
        return 1;
    }
517
518
    //std::cout << "PASS - Test succeeded." << std::endl;
    std::cout << "Done" << std::endl;
Mark Friedrichs's avatar
Mark Friedrichs committed
519
520
    return 0;
}