ReferenceBrownianDynamics.cpp 6.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,
50
                                                          RealOpenMM deltaT, RealOpenMM friction,
51
52
                                                          RealOpenMM temperature) : 
           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
80
81
82
83
84
85
86

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

   // static const char* methodName = "\nReferenceBrownianDynamics::~ReferenceBrownianDynamics";

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

}

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

   Get the friction coefficient

   @return friction

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

87
RealOpenMM ReferenceBrownianDynamics::getFriction() const {
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102

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

   // static const char* methodName  = "\nReferenceBrownianDynamics::getFriction";

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

   return friction;
}

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

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

103
   @param system              the System to be integrated
104
105
106
107
108
109
110
   @param atomCoordinates     atom coordinates
   @param velocities          velocities
   @param forces              forces
   @param masses              atom masses

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

111
void ReferenceBrownianDynamics::update(const OpenMM::System& system, vector<RealVec>& atomCoordinates,
112
                                          vector<RealVec>& velocities,
113
                                          vector<RealVec>& forces, vector<RealOpenMM>& masses, RealOpenMM tolerance) {
114
115
116
117
118
119
120
121
122
123
124
125

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

   static const char* methodName      = "\nReferenceBrownianDynamics::update";

   static const RealOpenMM zero       =  0.0;
   static const RealOpenMM one        =  1.0;

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

   // first-time-through initialization

126
   int numberOfAtoms = system.getNumParticles();
127
   if (getTimeStep() == 0) {
128
129
      // invert masses

130
      for (int ii = 0; ii < numberOfAtoms; ii++) {
131
         if (masses[ii] == zero)
132
             inverseMasses[ii] = zero;
133
134
         else
             inverseMasses[ii] = one/masses[ii];
135
136
137
138
139
      }
   }
   
   // Perform the integration.
   
140
   const RealOpenMM noiseAmplitude = static_cast<RealOpenMM>(sqrt(2.0*BOLTZ*getTemperature()*getDeltaT()/getFriction()));
141
142
   const RealOpenMM forceScale = getDeltaT()/getFriction();
   for (int i = 0; i < numberOfAtoms; ++i) {
143
144
145
146
       if (masses[i] != zero)
           for (int j = 0; j < 3; ++j) {
               xPrime[i][j] = atomCoordinates[i][j] + forceScale*inverseMasses[i]*forces[i][j] + noiseAmplitude*SQRT(inverseMasses[i])*SimTKOpenMMUtilities::getNormallyDistributedRandomNumber();
           }
147
   }
148
   ReferenceConstraintAlgorithm* referenceConstraintAlgorithm = getReferenceConstraintAlgorithm();
149
   if (referenceConstraintAlgorithm)
150
      referenceConstraintAlgorithm->apply(atomCoordinates, xPrime, inverseMasses, tolerance);
151
152
153
   
   // Update the positions and velocities.
   
154
   RealOpenMM velocityScale = static_cast<RealOpenMM>(1.0/getDeltaT());
155
   for (int i = 0; i < numberOfAtoms; ++i) {
156
157
158
159
160
       if (masses[i] != zero)
           for (int j = 0; j < 3; ++j) {
               velocities[i][j] = velocityScale*(xPrime[i][j] - atomCoordinates[i][j]);
               atomCoordinates[i][j] = xPrime[i][j];
           }
161
   }
162
   ReferenceVirtualSites::computePositions(system, atomCoordinates);
163
164
   incrementTimeStep();
}