"plugins/vscode:/vscode.git/clone" did not exist on "ece7591040e9d368d195c5e864ea3a5407a993ab"
TestBrookCMMotionRemover.cpp 5.59 KB
Newer Older
Mark Friedrichs's avatar
Mods  
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.               *
 *                                                                            *
Mark Friedrichs's avatar
Mark Friedrichs committed
9
10
 * Portions copyright (c) 2009 Stanford University and the Authors.           *
 * Authors: Peter Eastman, Mark Friedrichs                                    *
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
11
12
 * Contributors:                                                              *
 *                                                                            *
Mark Friedrichs's avatar
Mark Friedrichs committed
13
14
15
16
 * This program is free software: you can redistribute it and/or modify       *
 * it under the terms of the GNU Lesser General Public License as published   *
 * by the Free Software Foundation, either version 3 of the License, or       *
 * (at your option) any later version.                                        *
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
17
 *                                                                            *
Mark Friedrichs's avatar
Mark Friedrichs committed
18
19
20
21
 * This program is distributed in the hope that it will be useful,            *
 * but WITHOUT ANY WARRANTY; without even the implied warranty of             *
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the              *
 * GNU Lesser General Public License for more details.                        *
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
22
 *                                                                            *
Mark Friedrichs's avatar
Mark Friedrichs committed
23
24
 * You should have received a copy of the GNU Lesser General Public License   *
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.      *
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
25
26
27
28
29
30
 * -------------------------------------------------------------------------- */

#include <vector>

#include "../../../tests/AssertionUtilities.h"
#include "BrookPlatform.h"
31
#include "openmm/Context.h"
32
33
34
35
36
#include "openmm/HarmonicBondForce.h"
#include "openmm/NonbondedForce.h"
#include "openmm/System.h"
#include "openmm/VerletIntegrator.h"
#include "openmm/CMMotionRemover.h"
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75

#include "../src/sfmt/SFMT.h"
#include "../../reference/src/SimTKUtilities/SimTKOpenMMRealType.h"

using namespace OpenMM;
using namespace std;

const double TOL = 1e-5;

Vec3 calcCM(const vector<Vec3>& values, System& system) {
    Vec3 cm;
    for (int j = 0; j < system.getNumParticles(); ++j) {
        cm[0] += values[j][0]*system.getParticleMass(j);
        cm[1] += values[j][1]*system.getParticleMass(j);
        cm[2] += values[j][2]*system.getParticleMass(j);
    }
    return cm;
}

void testMotionRemoval( FILE* log ) {

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

   static const std::string methodName      = "testMotionRemoval";
   int PrintOn                              = 1;
   int numberOfParticles                    = 8;
   double mass                              = 2.0; 

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

   PrintOn = log ? PrintOn : 0;

   if( PrintOn ){
      (void) fprintf( log, "%s\n", methodName.c_str() ); (void) fflush( log );
   }

   //ReferencePlatform platform;
   BrookPlatform platform( 32, "cal", log );

76
   System system;
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
77
   VerletIntegrator integrator(0.001);
78
79
   HarmonicBondForce* bonds = new HarmonicBondForce();
   bonds->addBond(2, 3, 2.0, 0.5);
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
80
   system.addForce(bonds);
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
81

82
   NonbondedForce* nonbonded = new NonbondedForce();
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
83
   for (int i = 0; i < numberOfParticles; ++i) {
84
       system.addParticle((double) (i+1) );
85
       nonbonded->addParticle((i%2 == 0 ? 1.0 : -1.0), 1.0, 5.0);
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
86
87
   }
   system.addForce(nonbonded);
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
88

89
   CMMotionRemover* remover = new CMMotionRemover( 1 );
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
90
   system.addForce(remover);
91
   Context context(system, integrator, platform);
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
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
   vector<Vec3> positions(numberOfParticles);
   vector<Vec3> velocities(numberOfParticles);
   init_gen_rand(0);
   for (int i = 0; i < numberOfParticles; ++i) {
       positions[i] = Vec3((i%2 == 0 ? 2 : -2), (i%4 < 2 ? 2 : -2), (i < 4 ? 2 : -2));
       velocities[i] = Vec3(genrand_real2()-0.5, genrand_real2()-0.5, genrand_real2()-0.5);
   }
   context.setPositions(positions);
   context.setVelocities(velocities);

   // Now run it for a while and see if the center of mass remains fixed.

   Vec3 cmPos = calcCM(context.getState(State::Positions).getPositions(), system);
   for (int i = 0; i < 1000; ++i) {
       integrator.step(1);
       State state = context.getState(State::Positions | State::Velocities);
       Vec3 pos = calcCM(state.getPositions(), system);
       ASSERT_EQUAL_VEC(cmPos, pos, 1e-2);
       Vec3 vel = calcCM(state.getVelocities(), system);
       ASSERT_EQUAL_VEC(Vec3(0, 0, 0), vel, 1e-2);
   }
   if( PrintOn ){
      (void) fprintf( log, "%s ok\n", methodName.c_str() ); (void) fflush( log );
   }
}

int main( ){

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

   static const std::string methodName      = "RemoveCMMotion";
   FILE* log                                = stdout;

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

   (void) fflush( stdout );
   (void) fflush( stderr );
   try {
      testMotionRemoval( log );
    } catch( const exception& e ){
      (void) fprintf( log, "Exception %s %.s\n", methodName.c_str(),  e.what() ); (void) fflush( log );
      return 1;
   }   
   (void) fprintf( log, "\n%s done\n", methodName.c_str() ); (void) fflush( log );

   return 0;
}