TestReferenceGBVIForce.cpp 14.7 KB
Newer Older
Mark Friedrichs's avatar
Mark Friedrichs committed
1
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/* -------------------------------------------------------------------------- *
 *                                   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.               *
 *                                                                            *
 * Portions copyright (c) 2008-2009 Stanford University and the Authors.      *
 * 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 GBVIForce.
 */

#include "../../../tests/AssertionUtilities.h"
#include "OpenMMContext.h"
#include "ReferencePlatform.h"
#include "HarmonicBondForce.h"
#include "GBVIForce.h"
#include "GBSAOBCForce.h"
#include "System.h"
#include "LangevinIntegrator.h"
#include "NonbondedForce.h"
#include "../src/SimTKUtilities/SimTKOpenMMRealType.h"
#include "../src/sfmt/SFMT.h"
#include <iostream>
#include <vector>

using namespace OpenMM;
using namespace std;

const double TOL = 1e-5;

void testSingleParticle() {
    ReferencePlatform platform;
57
58
    System system;
    system.addParticle(2.0);
Mark Friedrichs's avatar
Mark Friedrichs committed
59
60
    LangevinIntegrator integrator(0, 0.1, 0.01);

61
    GBVIForce* forceField = new GBVIForce();
Mark Friedrichs's avatar
Mark Friedrichs committed
62
63
64
65

    double charge         = 0.0;
    double radius         = 0.15;
    double gamma          = 1.0;
66
    forceField->addParticle(charge, radius, gamma);
Mark Friedrichs's avatar
Mark Friedrichs committed
67
68
69
70
71
72
73
74
75
76
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
    system.addForce(forceField);

    OpenMMContext context(system, integrator, platform);
    vector<Vec3> positions(1);
    positions[0] = Vec3(0, 0, 0);
    context.setPositions(positions);
    State state = context.getState(State::Energy);

    double bornRadius     = radius; 
    double eps0           = EPSILON0;
    double tau            = (1.0/forceField->getSoluteDielectric()-1.0/forceField->getSolventDielectric());

    double bornEnergy     = (-charge*charge/(8*PI_M*eps0))*tau/bornRadius;
    double nonpolarEnergy = -CAL2JOULE*gamma*tau*std::pow( radius/bornRadius, 3.0);

    double expectedE      = (bornEnergy+nonpolarEnergy); 
    double obtainedE      = state.getPotentialEnergy(); 
    double diff           = fabs( obtainedE - expectedE );
    (void) fprintf( stderr, "testSingleParticle expected=%14.6e obtained=%14.6e diff=%14.6e breakdown:[%14.6e %14.6e]\n",
                    expectedE, obtainedE, diff, bornEnergy, nonpolarEnergy );
    ASSERT_EQUAL_TOL((bornEnergy+nonpolarEnergy), state.getPotentialEnergy(), 0.01);
}

/*
void testCutoffAndPeriodic() {
    ReferencePlatform platform;
    System system(2, 0);
    LangevinIntegrator integrator(0, 0.1, 0.01);
    GBSAOBCForce* gbsa = new GBSAOBCForce(2);
    NonbondedForce* nonbonded = new NonbondedForce(2, 0);
    gbsa->setParticleParameters(0, -1, 0.15, 1);
    nonbonded->setParticleParameters(0, -1, 1, 0);
    gbsa->setParticleParameters(1, 1, 0.15, 1);
    nonbonded->setParticleParameters(1, 1, 1, 0);
    const double cutoffDistance = 3.0;
    const double boxSize = 10.0;
    nonbonded->setCutoffDistance(cutoffDistance);
    nonbonded->setPeriodicBoxVectors(Vec3(boxSize, 0, 0), Vec3(0, boxSize, 0), Vec3(0, 0, boxSize));
    system.addForce(gbsa);
    system.addForce(nonbonded);
    vector<Vec3> positions(2);
    positions[0] = Vec3(0, 0, 0);
    positions[1] = Vec3(2, 0, 0);

    // Calculate the forces for both cutoff and periodic with two different atom positions.

    nonbonded->setNonbondedMethod(NonbondedForce::CutoffNonPeriodic);
    OpenMMContext context(system, integrator, platform);
    context.setPositions(positions);
    State state1 = context.getState(State::Forces);
    nonbonded->setNonbondedMethod(NonbondedForce::CutoffPeriodic);
    context.reinitialize();
    context.setPositions(positions);
    State state2 = context.getState(State::Forces);
    positions[1][0]+= boxSize;
    nonbonded->setNonbondedMethod(NonbondedForce::CutoffNonPeriodic);
    context.reinitialize();
    context.setPositions(positions);
    State state3 = context.getState(State::Forces);
    nonbonded->setNonbondedMethod(NonbondedForce::CutoffPeriodic);
    context.reinitialize();
    context.setPositions(positions);
    State state4 = context.getState(State::Forces);

    // All forces should be identical, exception state3 which should be zero.

    ASSERT_EQUAL_VEC(state1.getForces()[0], state2.getForces()[0], 0.01);
    ASSERT_EQUAL_VEC(state1.getForces()[1], state2.getForces()[1], 0.01);
    ASSERT_EQUAL_VEC(state1.getForces()[0], state4.getForces()[0], 0.01);
    ASSERT_EQUAL_VEC(state1.getForces()[1], state4.getForces()[1], 0.01);
    ASSERT_EQUAL_VEC(state3.getForces()[0], Vec3(0, 0, 0), 0.01);
    ASSERT_EQUAL_VEC(state3.getForces()[1], Vec3(0, 0, 0), 0.01);
}
*/

void testEnergyEthane() {

    ReferencePlatform platform;
    const int numParticles = 8;
146
    System system;
Mark Friedrichs's avatar
Mark Friedrichs committed
147
148
149
150
151
    LangevinIntegrator integrator(0, 0.1, 0.01);

    //void HarmonicBondForce::getBondParameters(int index, int& particle1, int& particle2, double& length, double& k)
    double C_HBondDistance   = 0.1097;
    double C_CBondDistance   = 0.1504;
152
153
154
155
    HarmonicBondForce* bonds = new HarmonicBondForce();
    bonds->addBond(0, 1, C_HBondDistance, 0.0);
    bonds->addBond(2, 1, C_HBondDistance, 0.0);
    bonds->addBond(3, 1, C_HBondDistance, 0.0);
Mark Friedrichs's avatar
Mark Friedrichs committed
156

157
    bonds->addBond(1, 4, C_CBondDistance, 0.0);
Mark Friedrichs's avatar
Mark Friedrichs committed
158

159
160
161
    bonds->addBond(5, 4, C_HBondDistance, 0.0);
    bonds->addBond(6, 4, C_HBondDistance, 0.0);
    bonds->addBond(7, 4, C_HBondDistance, 0.0);
Mark Friedrichs's avatar
Mark Friedrichs committed
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184

    system.addForce(bonds);

    double C_radius, C_gamma, C_charge, H_radius, H_gamma, H_charge;

    int AM1_BCC = 1;
    H_charge    = -0.053;
    C_charge    = -3.0*H_charge;
    if( AM1_BCC ){
       C_radius =  0.180;
       C_gamma  = -0.2863;
       H_radius =  0.125;
       H_gamma  =  0.2437;
    } else {
       C_radius =  0.215;
       C_gamma  = -1.1087;
       H_radius =  0.150;
       H_gamma  =  0.1237;
    }

    int VI = 1;
    if( VI ){
       (void) fprintf( stderr, "Applying GB/VI\n" );
185
       GBVIForce* forceField = new GBVIForce();
Mark Friedrichs's avatar
Mark Friedrichs committed
186
       for( int i = 0; i < numParticles; i++ ){
187
188
          system.addParticle(1.0);
          forceField->addParticle( H_charge, H_radius, H_gamma);
Mark Friedrichs's avatar
Mark Friedrichs committed
189
190
191
192
193
194
       }
       forceField->setParticleParameters(1, C_charge, C_radius, C_gamma);
       forceField->setParticleParameters(4, C_charge, C_radius, C_gamma);
       system.addForce(forceField);
    } else {
       (void) fprintf( stderr, "Applying GBSA OBC\n" );
195
       GBSAOBCForce* forceField = new GBSAOBCForce();
Mark Friedrichs's avatar
Mark Friedrichs committed
196
197
198
       double H_scale           =  0.85;
       double C_scale           =  0.72;
       for( int i = 0; i < numParticles; i++ ){
199
200
          system.addParticle(1.0);
          forceField->addParticle(H_charge, H_radius, H_scale );
Mark Friedrichs's avatar
Mark Friedrichs committed
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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
       }
       forceField->setParticleParameters(1, C_charge, C_radius, C_scale);
       forceField->setParticleParameters(4, C_charge, C_radius, C_scale);
       system.addForce(forceField);
    }

    OpenMMContext context(system, integrator, platform);
    
/*    
    0.5480    1.7661    0.0000 H   0  0  0  0  0  0           0  0  0
    0.7286    0.8978    0.6468 C   0  0  0  0  0  0           0  0  0
    0.4974    0.0000    0.0588 H   0  0  0  0  0  0           0  0  0
    0.0000    0.9459    1.4666 H   0  0  0  0  0  0           0  0  0
    2.1421    0.8746    1.1615 C   0  0  0  0  0  0           0  0  0
    2.3239    0.0050    1.8065 H   0  0  0  0  0  0           0  0  0
    2.8705    0.8295    0.3416 H   0  0  0  0  0  0           0  0  0
    2.3722    1.7711    1.7518 H   0  0  0  0  0  0           0  0  0
*/

    vector<Vec3> positions(numParticles);
    positions[0] = Vec3(0.5480,    1.7661,    0.0000);
    positions[1] = Vec3(0.7286,    0.8978,    0.6468);
    positions[2] = Vec3(0.4974,    0.0000,    0.0588);
    positions[3] = Vec3(0.0000,    0.9459,    1.4666);
    positions[4] = Vec3(2.1421,    0.8746,    1.1615);
    positions[5] = Vec3(2.3239,    0.0050,    1.8065);
    positions[6] = Vec3(2.8705,    0.8295,    0.3416);
    positions[7] = Vec3(2.3722,    1.7711,    1.7518);
    context.setPositions(positions);

    State state = context.getState(State::Forces | State::Energy);
    (void) fprintf( stderr, "Energy %.4e\n", state.getPotentialEnergy() );
    
    // Take a small step in the direction of the energy gradient.
    
    double norm        = 0.0;
    double forceSum[3] = { 0.0, 0.0, 0.0 };
    for (int i = 0; i < numParticles; ++i) {
        Vec3 f  = state.getForces()[i];
        (void) fprintf( stderr, "F %d [%14.6e %14.6e %14.6e]\n", i, f[0], f[1], f[2] );
        norm   += f[0]*f[0] + f[1]*f[1] + f[2]*f[2];
        forceSum[0] += f[0];
        forceSum[1] += f[1];
        forceSum[2] += f[2];
    }
    norm               = std::sqrt(norm);
    (void) fprintf( stderr, "Fsum [%14.6e %14.6e %14.6e] norm=%14.6e\n", forceSum[0], forceSum[1], forceSum[2], norm );

    const double delta = 1e-4;
    double step = delta/norm;
    for (int i = 0; i < numParticles; ++i) {
        Vec3 p = positions[i];
        Vec3 f = state.getForces()[i];
        positions[i] = Vec3(p[0]-f[0]*step, p[1]-f[1]*step, p[2]-f[2]*step);
    }
    context.setPositions(positions);
    
    State state2 = context.getState(State::Energy);

    (void) fprintf( stderr, "Energies %.8e %.8e\n", state.getPotentialEnergy(), state2.getPotentialEnergy() );

    // See whether the potential energy changed by the expected amount.
    
    ASSERT_EQUAL_TOL(norm, (state2.getPotentialEnergy()-state.getPotentialEnergy())/delta, 0.01)
}

void testEnergyTwoParticle() {

    ReferencePlatform platform;
    const int numParticles = 2;
271
272
273
    System system;
    system.addParticle(1.0);
    system.addParticle(1.0);
Mark Friedrichs's avatar
Mark Friedrichs committed
274
275
276
277
    LangevinIntegrator integrator(0, 0.1, 0.01);

    //void HarmonicBondForce::getBondParameters(int index, int& particle1, int& particle2, double& length, double& k)
    double C_HBondDistance   = 3.0;
278
279
    HarmonicBondForce* bonds = new HarmonicBondForce();
    bonds->addBond(0, 1, C_HBondDistance, 0.0);
Mark Friedrichs's avatar
Mark Friedrichs committed
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
    system.addForce(bonds);

    double C_radius, C_gamma, C_charge, H_radius, H_gamma, H_charge;
/*
    H_charge    = -1.0;
    C_charge    =  1.0;

    H_gamma     =  1.0;
    C_gamma     =  1.0;

    H_radius    =  1.0;
    C_radius    =  1.0;
*/ 
    H_charge    = -0.5;
    C_charge    =  0.5;

    H_gamma     =  0.5;
    C_gamma     =  0.5;

    H_radius    =  1.5;
    C_radius    =  1.5;
 
    int VI = 1;
    if( VI ){
       (void) fprintf( stderr, "Applying GB/VI\n" );
305
306
307
       GBVIForce* forceField = new GBVIForce();
       forceField->addParticle(H_charge, H_radius, H_gamma);
       forceField->addParticle(C_charge, C_radius, C_gamma);
Mark Friedrichs's avatar
Mark Friedrichs committed
308
309
310
       system.addForce(forceField);
    } else {
       (void) fprintf( stderr, "Applying GBSA OBC\n" );
311
312
313
       GBSAOBCForce* forceField = new GBSAOBCForce();
       forceField->addParticle(H_charge, H_radius, 1.0);
       forceField->addParticle(C_charge, C_radius, 1.0);
Mark Friedrichs's avatar
Mark Friedrichs committed
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
       system.addForce(forceField);
    }

    OpenMMContext context(system, integrator, platform);
    
    vector<Vec3> positions(numParticles);
    positions[0] = Vec3(         0.0000,    0.0000,    0.0000);
    positions[1] = Vec3(C_HBondDistance,    0.0000,    0.0000);
    context.setPositions(positions);

    State state = context.getState(State::Forces | State::Energy);
    
    // Take a small step in the direction of the energy gradient.
    
    double norm        = 0.0;
    double forceSum[3] = { 0.0, 0.0, 0.0 };
    for (int i = 0; i < numParticles; ++i) {
        Vec3 f  = state.getForces()[i];
        (void) fprintf( stderr, "F %d [%14.6e %14.6e %14.6e]\n", i, f[0], f[1], f[2] );
        norm   += f[0]*f[0] + f[1]*f[1] + f[2]*f[2];
        forceSum[0] += f[0];
        forceSum[1] += f[1];
        forceSum[2] += f[2];
    }
    norm               = std::sqrt(norm);
    (void) fprintf( stderr, "Fsum [%14.6e %14.6e %14.6e] norm=%14.6e\n", forceSum[0], forceSum[1], forceSum[2], norm );

    const double delta = 1e-4;
    double step = delta/norm;
    for (int i = 0; i < numParticles; ++i) {
        Vec3 p = positions[i];
        Vec3 f = state.getForces()[i];
        positions[i] = Vec3(p[0]-f[0]*step, p[1]-f[1]*step, p[2]-f[2]*step);
    }
    context.setPositions(positions);
    
    State state2 = context.getState(State::Energy);

    double diff = fabs( norm - (state2.getPotentialEnergy()-state.getPotentialEnergy())/delta );
    (void) fprintf( stderr, "Energies %14.6e %14.6e diff=%14.6e [%14.6e %14.6e]\n",
                    state.getPotentialEnergy(), state2.getPotentialEnergy(), diff, norm, (state2.getPotentialEnergy()-state.getPotentialEnergy())/delta );

    // See whether the potential energy changed by the expected amount.
    
    ASSERT_EQUAL_TOL(norm, (state2.getPotentialEnergy()-state.getPotentialEnergy())/delta, 0.01)
}

int main() {
    try {
/*
        testSingleParticle();
        testCutoffAndPeriodic();
        testForce();
        testEnergyEthane();
        testEnergy1();
*/
//        testSingleParticle();
        testEnergyTwoParticle();
        testEnergyEthane();
    }
    catch(const exception& e) {
        cout << "exception: " << e.what() << endl;
        return 1;
    }
    cout << "Done" << endl;
    return 0;
}