ReferenceLangevinMiddleDynamics.cpp 5.32 KB
Newer Older
1

2
/* Portions copyright (c) 2006-2020 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
25
26
27
28
 * Contributors: 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.
 */

#include <cstring>
#include <sstream>

#include "SimTKOpenMMUtilities.h"
29
#include "ReferenceLangevinMiddleDynamics.h"
30
31
32
33
34
35
36
37
#include "ReferencePlatform.h"
#include "ReferenceVirtualSites.h"
#include "openmm/OpenMMException.h"
#include "openmm/internal/ContextImpl.h"

using std::vector;
using namespace OpenMM;

38
ReferenceLangevinMiddleDynamics::ReferenceLangevinMiddleDynamics(int numberOfAtoms,
39
40
41
42
43
44
45
46
                                               double deltaT, double friction,
                                               double temperature) : 
           ReferenceDynamics(numberOfAtoms, deltaT, temperature), friction(friction) {
   xPrime.resize(numberOfAtoms);
   oldx.resize(numberOfAtoms);
   inverseMasses.resize(numberOfAtoms);
}

47
ReferenceLangevinMiddleDynamics::~ReferenceLangevinMiddleDynamics() {
48
49
}

50
double ReferenceLangevinMiddleDynamics::getFriction() const {
51
52
53
   return friction;
}

54
void ReferenceLangevinMiddleDynamics::updatePart1(int numberOfAtoms, vector<Vec3>& velocities, vector<Vec3>& forces, vector<double>& inverseMasses) {
55
56
57
    for (int i = 0; i < numberOfAtoms; i++)
        if (inverseMasses[i] != 0.0)
            velocities[i] += (getDeltaT()*inverseMasses[i])*forces[i];
58
59
}

60
void ReferenceLangevinMiddleDynamics::updatePart2(int numberOfAtoms, vector<Vec3>& atomCoordinates,
61
62
                                         vector<Vec3>& velocities, vector<double>& inverseMasses,
                                         vector<Vec3>& xPrime) {
63
64
65
66
67
68
69
70
    const double halfdt = 0.5*getDeltaT();
    const double kT = BOLTZ*getTemperature();
    const double friction = getFriction();
    const double vscale = exp(-getDeltaT()*friction);
    const double noisescale = sqrt(1-vscale*vscale);

    for (int i = 0; i < numberOfAtoms; i++) {
        if (inverseMasses[i] != 0.0) {
71
            xPrime[i] = atomCoordinates[i] + velocities[i]*halfdt;
72
73
74
75
            velocities[i] = vscale*velocities[i] + noisescale*sqrt(kT*inverseMasses[i])*Vec3(
                    SimTKOpenMMUtilities::getNormallyDistributedRandomNumber(),
                    SimTKOpenMMUtilities::getNormallyDistributedRandomNumber(),
                    SimTKOpenMMUtilities::getNormallyDistributedRandomNumber());
76
            xPrime[i] = xPrime[i] + velocities[i]*halfdt;
77
78
79
80
81
            oldx[i] = xPrime[i];
        }
    }
}

82
void ReferenceLangevinMiddleDynamics::updatePart3(OpenMM::ContextImpl& context, int numberOfAtoms, vector<Vec3>& atomCoordinates,
83
                                         vector<Vec3>& velocities, vector<double>& inverseMasses, vector<Vec3>& xPrime) {
84
85
    for (int i = 0; i < numberOfAtoms; i++) {
        if (inverseMasses[i] != 0.0) {
86
            velocities[i] += (xPrime[i]-oldx[i])/getDeltaT();
87
88
89
90
91
            atomCoordinates[i] = xPrime[i];
        }
    }
}

92
void ReferenceLangevinMiddleDynamics::update(ContextImpl& context, vector<Vec3>& atomCoordinates,
93
                                    vector<Vec3>& velocities, vector<double>& masses, double tolerance) {
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
    int numberOfAtoms = context.getSystem().getNumParticles();
    ReferenceConstraintAlgorithm* referenceConstraintAlgorithm = getReferenceConstraintAlgorithm();
    if (getTimeStep() == 0) {
        // Invert masses

        for (int ii = 0; ii < numberOfAtoms; ii++) {
            if (masses[ii] == 0.0)
                inverseMasses[ii] = 0.0;
            else
                inverseMasses[ii] = 1.0/masses[ii];
        }
    }
    ReferencePlatform::PlatformData* data = reinterpret_cast<ReferencePlatform::PlatformData*>(context.getPlatformData());
    vector<Vec3>& forces = *data->forces;

    // 1st update

111
    updatePart1(numberOfAtoms, velocities, forces, inverseMasses);
112
    if (referenceConstraintAlgorithm)
113
        referenceConstraintAlgorithm->applyToVelocities(atomCoordinates, velocities, inverseMasses, tolerance);
114
115
116
117
118
119
120
121
122

    // 2nd update

    updatePart2(numberOfAtoms, atomCoordinates, velocities, inverseMasses, xPrime);
    if (referenceConstraintAlgorithm)
        referenceConstraintAlgorithm->apply(atomCoordinates, xPrime, inverseMasses, tolerance);

    // 3rd update

123
    updatePart3(context, numberOfAtoms, atomCoordinates, velocities, inverseMasses, xPrime);
124

125
    getVirtualSites().computePositions(context.getSystem(), atomCoordinates);
126
127
    incrementTimeStep();
}