"plugins/amoeba/openmmapi/vscode:/vscode.git/clone" did not exist on "58b094cec72f74db91e131277804e82e168c16e0"
ReferenceBrownianDynamics.cpp 5.25 KB
Newer Older
1

2
/* Portions copyright (c) 2006-2013 Stanford University and Simbios.
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
 * Contributors: Peter Eastman, Pande Group
 *
 * 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.
 */

25
#include <cstring>
26
27
#include <sstream>

28
#include "SimTKOpenMMUtilities.h"
29
#include "ReferenceBrownianDynamics.h"
30
#include "ReferenceVirtualSites.h"
peastman's avatar
peastman committed
31
#include "openmm/OpenMMException.h"
32

33
34
#include <cstdio>

35
using std::vector;
36
using namespace OpenMM;
37

38
39
40
41
42
43
44
45
46
47
48
/**---------------------------------------------------------------------------------------

   ReferenceBrownianDynamics constructor

   @param numberOfAtoms  number of atoms
   @param deltaT         delta t for dynamics
   @param friction       friction coefficient
   @param temperature    temperature

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

49
ReferenceBrownianDynamics::ReferenceBrownianDynamics(int numberOfAtoms,
peastman's avatar
peastman committed
50
51
                                                          double deltaT, double friction,
                                                          double temperature) : 
52
           ReferenceDynamics(numberOfAtoms, deltaT, temperature), friction(friction) {
53

peastman's avatar
peastman committed
54
   if (friction <= 0) {
55
      std::stringstream message;
peastman's avatar
peastman committed
56
57
      message << "illegal friction value: " << friction;
      throw OpenMMException(message.str());
58
   }
59
60
   xPrime.resize(numberOfAtoms);
   inverseMasses.resize(numberOfAtoms);
61
62
63
64
65
66
67
68
}

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

   ReferenceBrownianDynamics destructor

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

69
ReferenceBrownianDynamics::~ReferenceBrownianDynamics() {
70
71
72
73
74
75
76
77
78
79
}

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

   Get the friction coefficient

   @return friction

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

peastman's avatar
peastman committed
80
double ReferenceBrownianDynamics::getFriction() const {
81
82
83
84
85
86
87
88
   return friction;
}

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

   Update -- driver routine for performing Brownian dynamics update of coordinates
   and velocities

89
   @param system              the System to be integrated
90
91
92
93
94
95
96
   @param atomCoordinates     atom coordinates
   @param velocities          velocities
   @param forces              forces
   @param masses              atom masses

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

peastman's avatar
peastman committed
97
98
99
void ReferenceBrownianDynamics::update(const OpenMM::System& system, vector<Vec3>& atomCoordinates,
                                          vector<Vec3>& velocities,
                                          vector<Vec3>& forces, vector<double>& masses, double tolerance) {
100
101
102

   // first-time-through initialization

103
   int numberOfAtoms = system.getNumParticles();
104
   if (getTimeStep() == 0) {
105
106
      // invert masses

107
      for (int ii = 0; ii < numberOfAtoms; ii++) {
peastman's avatar
peastman committed
108
109
         if (masses[ii] == 0.0)
             inverseMasses[ii] = 0.0;
110
         else
peastman's avatar
peastman committed
111
             inverseMasses[ii] = 1.0/masses[ii];
112
113
114
115
116
      }
   }
   
   // Perform the integration.
   
peastman's avatar
peastman committed
117
118
   const double noiseAmplitude = sqrt(2.0*BOLTZ*getTemperature()*getDeltaT()/getFriction());
   const double forceScale = getDeltaT()/getFriction();
119
   for (int i = 0; i < numberOfAtoms; ++i) {
peastman's avatar
peastman committed
120
       if (masses[i] != 0.0)
121
           for (int j = 0; j < 3; ++j) {
peastman's avatar
peastman committed
122
               xPrime[i][j] = atomCoordinates[i][j] + forceScale*inverseMasses[i]*forces[i][j] + noiseAmplitude*sqrt(inverseMasses[i])*SimTKOpenMMUtilities::getNormallyDistributedRandomNumber();
123
           }
124
   }
125
   ReferenceConstraintAlgorithm* referenceConstraintAlgorithm = getReferenceConstraintAlgorithm();
126
   if (referenceConstraintAlgorithm)
127
      referenceConstraintAlgorithm->apply(atomCoordinates, xPrime, inverseMasses, tolerance);
128
129
130
   
   // Update the positions and velocities.
   
peastman's avatar
peastman committed
131
   double velocityScale = 1.0/getDeltaT();
132
   for (int i = 0; i < numberOfAtoms; ++i) {
peastman's avatar
peastman committed
133
       if (masses[i] != 0.0)
134
135
136
137
           for (int j = 0; j < 3; ++j) {
               velocities[i][j] = velocityScale*(xPrime[i][j] - atomCoordinates[i][j]);
               atomCoordinates[i][j] = xPrime[i][j];
           }
138
   }
139
   ReferenceVirtualSites::computePositions(system, atomCoordinates);
140
141
   incrementTimeStep();
}