ReferenceBrownianDynamics.cpp 5.21 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"
peastman's avatar
peastman committed
30
#include "openmm/OpenMMException.h"
31

32
33
#include <cstdio>

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

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

   ReferenceBrownianDynamics constructor

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

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

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

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

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

   ReferenceBrownianDynamics destructor

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

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

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

   Get the friction coefficient

   @return friction

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

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

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

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

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

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

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

   // first-time-through initialization

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

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