ReferenceRpmdKernels.cpp 12.4 KB
Newer Older
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.               *
 *                                                                            *
Peter Eastman's avatar
Peter Eastman committed
9
 * Portions copyright (c) 2011-2013 Stanford University and the Authors.      *
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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
 * Authors: Peter Eastman                                                     *
 * Contributors:                                                              *
 *                                                                            *
 * 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 "ReferenceRpmdKernels.h"
#include "openmm/internal/ContextImpl.h"
#include "SimTKUtilities/SimTKOpenMMUtilities.h"

using namespace OpenMM;
using namespace std;

static vector<RealVec>& extractPositions(ContextImpl& context) {
    ReferencePlatform::PlatformData* data = reinterpret_cast<ReferencePlatform::PlatformData*>(context.getPlatformData());
    return *((vector<RealVec>*) data->positions);
}

static vector<RealVec>& extractVelocities(ContextImpl& context) {
    ReferencePlatform::PlatformData* data = reinterpret_cast<ReferencePlatform::PlatformData*>(context.getPlatformData());
    return *((vector<RealVec>*) data->velocities);
}

static vector<RealVec>& extractForces(ContextImpl& context) {
    ReferencePlatform::PlatformData* data = reinterpret_cast<ReferencePlatform::PlatformData*>(context.getPlatformData());
    return *((vector<RealVec>*) data->forces);
}

ReferenceIntegrateRPMDStepKernel::~ReferenceIntegrateRPMDStepKernel() {
    if (fft != NULL)
        fftpack_destroy(fft);
}
void ReferenceIntegrateRPMDStepKernel::initialize(const System& system, const RPMDIntegrator& integrator) {
    int numCopies = integrator.getNumCopies();
    int numParticles = system.getNumParticles();
    positions.resize(numCopies);
    velocities.resize(numCopies);
    forces.resize(numCopies);
    for (int i = 0; i < numCopies; i++) {
        positions[i].resize(numParticles);
        velocities[i].resize(numParticles);
        forces[i].resize(numParticles);
    }
69
    fftpack_init_1d(&fft, numCopies);
70
71
72
    SimTKOpenMMUtilities::setRandomNumberSeed((unsigned int) integrator.getRandomNumberSeed());
}

73
74
75
76
77
78
void ReferenceIntegrateRPMDStepKernel::execute(ContextImpl& context, const RPMDIntegrator& integrator, bool forcesAreValid) {
    const int numCopies = positions.size();
    const int numParticles = positions[0].size();
    const RealOpenMM dt = integrator.getStepSize();
    const RealOpenMM halfdt = 0.5*dt;
    const System& system = context.getSystem();
79
80
81
82
83
84
    vector<RealVec>& pos = extractPositions(context);
    vector<RealVec>& vel = extractVelocities(context);
    vector<RealVec>& f = extractForces(context);
    
    // Loop over copies and compute the force on each one.
    
85
86
87
88
    if (!forcesAreValid) {
        for (int i = 0; i < numCopies; i++) {
            pos = positions[i];
            vel = velocities[i];
Peter Eastman's avatar
Peter Eastman committed
89
            context.computeVirtualSites();
90
91
92
            context.calcForcesAndEnergy(true, false);
            forces[i] = f;
        }
93
    }
94
95

    // Apply the PILE-L thermostat.
96
    
Peter Eastman's avatar
Peter Eastman committed
97
    vector<t_complex> v(numCopies);
98
99
    vector<t_complex> q(numCopies);
    const RealOpenMM hbar = 1.054571628e-34*AVOGADRO/(1000*1e-12);
Peter Eastman's avatar
Peter Eastman committed
100
    const RealOpenMM scale = 1.0/sqrt((RealOpenMM) numCopies);
101
102
103
104
105
    const RealOpenMM nkT = numCopies*BOLTZ*integrator.getTemperature();
    const RealOpenMM twown = 2.0*nkT/hbar;
    const RealOpenMM c1_0 = exp(-halfdt*integrator.getFriction());
    const RealOpenMM c2_0 = sqrt(1.0-c1_0*c1_0);
    for (int particle = 0; particle < numParticles; particle++) {
Peter Eastman's avatar
Peter Eastman committed
106
107
        if (system.getParticleMass(particle) == 0.0)
            continue;
Peter Eastman's avatar
Peter Eastman committed
108
        const RealOpenMM c3_0 = c2_0*sqrt(nkT/system.getParticleMass(particle));
109
110
        for (int component = 0; component < 3; component++) {
            for (int k = 0; k < numCopies; k++)
Peter Eastman's avatar
Peter Eastman committed
111
112
                v[k] = t_complex(scale*velocities[k][particle][component], 0.0);
            fftpack_exec_1d(fft, FFTPACK_FORWARD, &v[0], &v[0]);
113
114
115
            
            // Apply a local Langevin thermostat to the centroid mode.

Peter Eastman's avatar
Peter Eastman committed
116
            v[0].re = v[0].re*c1_0 + c3_0*SimTKOpenMMUtilities::getNormallyDistributedRandomNumber();
117
118
119
120
121
122
123
124

            // Use critical damping white noise for the remaining modes.
            
            for (int k = 1; k <= numCopies/2; k++) {
                const bool isCenter = (numCopies%2 == 0 && k == numCopies/2);
                const RealOpenMM wk = twown*sin(k*M_PI/numCopies);
                const RealOpenMM c1 = exp(-2.0*wk*halfdt);
                const RealOpenMM c2 = sqrt((1.0-c1*c1)/2) * (isCenter ? sqrt(2.0) : 1.0);
Peter Eastman's avatar
Peter Eastman committed
125
                const RealOpenMM c3 = c2*sqrt(nkT/system.getParticleMass(particle));
126
127
                RealOpenMM rand1 = c3*SimTKOpenMMUtilities::getNormallyDistributedRandomNumber();
                RealOpenMM rand2 = (isCenter ? 0.0 : c3*SimTKOpenMMUtilities::getNormallyDistributedRandomNumber());
Peter Eastman's avatar
Peter Eastman committed
128
                v[k] = v[k]*c1 + t_complex(rand1, rand2);
129
                if (k < numCopies-k)
Peter Eastman's avatar
Peter Eastman committed
130
                    v[numCopies-k] = v[numCopies-k]*c1 + t_complex(rand1, -rand2);
131
            }
Peter Eastman's avatar
Peter Eastman committed
132
            fftpack_exec_1d(fft, FFTPACK_BACKWARD, &v[0], &v[0]);
133
            for (int k = 0; k < numCopies; k++)
Peter Eastman's avatar
Peter Eastman committed
134
                velocities[k][particle][component] = scale*v[k].re;
135
136
137
        }
    }

138
139
140
141
    // Update velocities.
    
    for (int i = 0; i < numCopies; i++)
        for (int j = 0; j < numParticles; j++)
Peter Eastman's avatar
Peter Eastman committed
142
143
            if (system.getParticleMass(j) != 0.0)
                velocities[i][j] += forces[i][j]*(halfdt/system.getParticleMass(j));
144
145
146
147
    
    // Evolve the free ring polymer by transforming to the frequency domain.

    for (int particle = 0; particle < numParticles; particle++) {
Peter Eastman's avatar
Peter Eastman committed
148
149
        if (system.getParticleMass(particle) == 0.0)
            continue;
150
151
152
        for (int component = 0; component < 3; component++) {
            for (int k = 0; k < numCopies; k++) {
                q[k] = t_complex(scale*positions[k][particle][component], 0.0);
Peter Eastman's avatar
Peter Eastman committed
153
                v[k] = t_complex(scale*velocities[k][particle][component], 0.0);
154
155
            }
            fftpack_exec_1d(fft, FFTPACK_FORWARD, &q[0], &q[0]);
Peter Eastman's avatar
Peter Eastman committed
156
157
            fftpack_exec_1d(fft, FFTPACK_FORWARD, &v[0], &v[0]);
            q[0] += v[0]*dt;
158
159
160
            for (int k = 1; k < numCopies; k++) {
                const RealOpenMM wk = twown*sin(k*M_PI/numCopies);
                const RealOpenMM wt = wk*dt;
161
162
                const RealOpenMM coswt = cos(wt);
                const RealOpenMM sinwt = sin(wt);
163
                const RealOpenMM wm = wk*system.getParticleMass(particle);
Peter Eastman's avatar
Peter Eastman committed
164
165
166
                const t_complex vprime = v[k]*coswt - q[k]*(wk*sinwt); // Advance velocity from t to t+dt
                q[k] = v[k]*(sinwt/wk) + q[k]*coswt; // Advance position from t to t+dt
                v[k] = vprime;
167
168
            }
            fftpack_exec_1d(fft, FFTPACK_BACKWARD, &q[0], &q[0]);
Peter Eastman's avatar
Peter Eastman committed
169
            fftpack_exec_1d(fft, FFTPACK_BACKWARD, &v[0], &v[0]);
170
171
            for (int k = 0; k < numCopies; k++) {
                positions[k][particle][component] = scale*q[k].re;
Peter Eastman's avatar
Peter Eastman committed
172
                velocities[k][particle][component] = scale*v[k].re;
173
174
175
            }
        }
    }
176
177
178
179
180
181
    
    // Calculate forces based on the updated positions.
    
    for (int i = 0; i < numCopies; i++) {
        pos = positions[i];
        vel = velocities[i];
Peter Eastman's avatar
Peter Eastman committed
182
        context.computeVirtualSites();
183
184
185
186
187
188
        context.updateContextState();
        positions[i] = pos;
        velocities[i] = vel;
        context.calcForcesAndEnergy(true, false);
        forces[i] = f;
    }
189

190
191
192
193
    // Update velocities.
    
    for (int i = 0; i < numCopies; i++)
        for (int j = 0; j < numParticles; j++)
Peter Eastman's avatar
Peter Eastman committed
194
195
            if (system.getParticleMass(j) != 0.0)
                velocities[i][j] += forces[i][j]*(halfdt/system.getParticleMass(j));
196
197

    // Apply the PILE-L thermostat again.
198
199
    
    for (int particle = 0; particle < numParticles; particle++) {
Peter Eastman's avatar
Peter Eastman committed
200
201
        if (system.getParticleMass(particle) == 0.0)
            continue;
Peter Eastman's avatar
Peter Eastman committed
202
        const RealOpenMM c3_0 = c2_0*sqrt(nkT/system.getParticleMass(particle));
203
204
        for (int component = 0; component < 3; component++) {
            for (int k = 0; k < numCopies; k++)
Peter Eastman's avatar
Peter Eastman committed
205
206
                v[k] = t_complex(scale*velocities[k][particle][component], 0.0);
            fftpack_exec_1d(fft, FFTPACK_FORWARD, &v[0], &v[0]);
207
208
209
            
            // Apply a local Langevin thermostat to the centroid mode.

Peter Eastman's avatar
Peter Eastman committed
210
            v[0].re = v[0].re*c1_0 + c3_0*SimTKOpenMMUtilities::getNormallyDistributedRandomNumber();
211
212
213

            // Use critical damping white noise for the remaining modes.
            
214
            for (int k = 1; k <= numCopies/2; k++) {
215
216
                const bool isCenter = (numCopies%2 == 0 && k == numCopies/2);
                const RealOpenMM wk = twown*sin(k*M_PI/numCopies);
217
                const RealOpenMM c1 = exp(-2.0*wk*halfdt);
218
                const RealOpenMM c2 = sqrt((1.0-c1*c1)/2) * (isCenter ? sqrt(2.0) : 1.0);
Peter Eastman's avatar
Peter Eastman committed
219
                const RealOpenMM c3 = c2*sqrt(nkT/system.getParticleMass(particle));
220
221
                RealOpenMM rand1 = c3*SimTKOpenMMUtilities::getNormallyDistributedRandomNumber();
                RealOpenMM rand2 = (isCenter ? 0.0 : c3*SimTKOpenMMUtilities::getNormallyDistributedRandomNumber());
Peter Eastman's avatar
Peter Eastman committed
222
                v[k] = v[k]*c1 + t_complex(rand1, rand2);
223
                if (k < numCopies-k)
Peter Eastman's avatar
Peter Eastman committed
224
                    v[numCopies-k] = v[numCopies-k]*c1 + t_complex(rand1, -rand2);
225
            }
Peter Eastman's avatar
Peter Eastman committed
226
            fftpack_exec_1d(fft, FFTPACK_BACKWARD, &v[0], &v[0]);
227
            for (int k = 0; k < numCopies; k++)
Peter Eastman's avatar
Peter Eastman committed
228
                velocities[k][particle][component] = scale*v[k].re;
229
230
        }
    }
231
232
233
234
    
    // Update the time.
    
    context.setTime(context.getTime()+dt);
235
236
}

237
double ReferenceIntegrateRPMDStepKernel::computeKineticEnergy(ContextImpl& context, const RPMDIntegrator& integrator) {
238
    const System& system = context.getSystem();
239
240
241
242
243
244
245
246
247
248
249
250
251
    int numParticles = system.getNumParticles();
    vector<RealVec>& velData = extractVelocities(context);
    double energy = 0.0;
    for (int i = 0; i < numParticles; ++i) {
        double mass = system.getParticleMass(i);
        if (mass > 0) {
            RealVec v = velData[i];
            energy += mass*(v.dot(v));
        }
    }
    return 0.5*energy;
}

252
253
254
255
256
257
258
259
260
261
262
263
void ReferenceIntegrateRPMDStepKernel::setPositions(int copy, const vector<Vec3>& pos) {
    int numParticles = positions[copy].size();
    for (int i = 0; i < numParticles; i++)
        positions[copy][i] = pos[i];
}

void ReferenceIntegrateRPMDStepKernel::setVelocities(int copy, const vector<Vec3>& vel) {
    int numParticles = velocities[copy].size();
    for (int i = 0; i < numParticles; i++)
        velocities[copy][i] = vel[i];
}

264
void ReferenceIntegrateRPMDStepKernel::copyToContext(int copy, ContextImpl& context) {
265
266
267
    extractPositions(context) = positions[copy];
    extractVelocities(context) = velocities[copy];
}