RPMDIntegrator.cpp 9.79 KB
Newer Older
1
2
3
/* -------------------------------------------------------------------------- *
 *                                   OpenMM                                   *
 * -------------------------------------------------------------------------- *
Evan Pretti's avatar
Evan Pretti committed
4
5
 * This is part of the OpenMM molecular simulation toolkit.                   *
 * See https://openmm.org/development.                                        *
6
 *                                                                            *
7
 * Portions copyright (c) 2008-2021 Stanford University and the Authors.      *
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
 * 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 "openmm/RPMDIntegrator.h"
#include "openmm/Context.h"
#include "openmm/OpenMMException.h"
#include "openmm/internal/ContextImpl.h"
Peter Eastman's avatar
Peter Eastman committed
34
#include "openmm/RpmdKernels.h"
peastman's avatar
peastman committed
35
#include "openmm/RPMDUpdater.h"
36
#include "SimTKOpenMMRealType.h"
37
#include <cmath>
38
39
40
#include <string>

using namespace OpenMM;
41
42
43
using namespace std;

RPMDIntegrator::RPMDIntegrator(int numCopies, double temperature, double frictionCoeff, double stepSize, const map<int, int>& contractions) :
44
        numCopies(numCopies), applyThermostat(true), contractions(contractions), forcesAreValid(false), hasSetPosition(false), hasSetVelocity(false), isFirstStep(true) {
45
46
47
48
    setTemperature(temperature);
    setFriction(frictionCoeff);
    setStepSize(stepSize);
    setConstraintTolerance(1e-5);
49
    setRandomNumberSeed(0);
50
}
51

52
RPMDIntegrator::RPMDIntegrator(int numCopies, double temperature, double frictionCoeff, double stepSize) :
53
        numCopies(numCopies), applyThermostat(true), forcesAreValid(false), hasSetPosition(false), hasSetVelocity(false), isFirstStep(true) {
54
55
56
    setTemperature(temperature);
    setFriction(frictionCoeff);
    setStepSize(stepSize);
57
    setConstraintTolerance(1e-5);
58
    setRandomNumberSeed(0);
59
60
61
62
63
}

void RPMDIntegrator::initialize(ContextImpl& contextRef) {
    if (owner != NULL && &contextRef.getOwner() != owner)
        throw OpenMMException("This Integrator is already bound to a context");
Peter Eastman's avatar
Peter Eastman committed
64
    if (contextRef.getSystem().getNumConstraints() > 0)
65
        throw OpenMMException("RPMDIntegrator cannot be used with Systems that include constraints");
66
67
68
    context = &contextRef;
    owner = &contextRef.getOwner();
    kernel = context->getPlatform().createKernel(IntegrateRPMDStepKernel::Name(), contextRef);
69
    kernel.getAs<IntegrateRPMDStepKernel>().initialize(contextRef.getSystem(), *this);
70
71
}

72
73
74
75
void RPMDIntegrator::cleanup() {
    kernel = Kernel();
}

76
77
78
79
void RPMDIntegrator::stateChanged(State::DataType changed) {
    forcesAreValid = false;
}

80
vector<string> RPMDIntegrator::getKernelNames() {
Peter Eastman's avatar
Peter Eastman committed
81
    return {IntegrateRPMDStepKernel::Name()};
82
83
84
}

void RPMDIntegrator::setPositions(int copy, const vector<Vec3>& positions) {
85
    kernel.getAs<IntegrateRPMDStepKernel>().setPositions(copy, positions);
peastman's avatar
peastman committed
86
    forcesAreValid = false;
Peter Eastman's avatar
Peter Eastman committed
87
    hasSetPosition = true;
88
89
90
}

void RPMDIntegrator::setVelocities(int copy, const vector<Vec3>& velocities) {
91
    kernel.getAs<IntegrateRPMDStepKernel>().setVelocities(copy, velocities);
Peter Eastman's avatar
Peter Eastman committed
92
    hasSetVelocity = true;
93
94
}

95
State RPMDIntegrator::getState(int copy, int types, bool enforcePeriodicBox, int groups) {
96
97
98
99
    if (isFirstStep) {
        // Call setPositions() on the Context so it doesn't think the user is trying to
        // run a simulation without setting positions first.  These positions will
        // immediately get overwritten by the ones stored in this integrator.
Kyle Beauchamp's avatar
Kyle Beauchamp committed
100

101
102
103
104
        vector<Vec3> p(context->getSystem().getNumParticles(), Vec3());
        context->getOwner().setPositions(p);
        isFirstStep = false;
    }
105
    kernel.getAs<IntegrateRPMDStepKernel>().copyToContext(copy, *context);
106
107
108
109
    State state = context->getOwner().getState(types, enforcePeriodicBox && copy == 0, groups);
    if (enforcePeriodicBox && copy > 0 && (types&State::Positions) != 0) {
        // Apply periodic boundary conditions based on copy 0.  Otherwise, molecules might end
        // up in different places for different copies.
Kyle Beauchamp's avatar
Kyle Beauchamp committed
110

111
112
113
114
115
116
117
        kernel.getAs<IntegrateRPMDStepKernel>().copyToContext(0, *context);
        State state2 = context->getOwner().getState(State::Positions, false, groups);
        vector<Vec3> positions = state.getPositions();
        const vector<Vec3>& refPos = state2.getPositions();
        const vector<vector<int> >& molecules = context->getMolecules();
        Vec3 periodicBoxSize[3];
        state2.getPeriodicBoxVectors(periodicBoxSize[0], periodicBoxSize[1], periodicBoxSize[2]);
peastman's avatar
peastman committed
118
        for (auto& mol : molecules) {
119
120
121
            // Find the molecule center.

            Vec3 center;
peastman's avatar
peastman committed
122
123
124
            for (int j : mol)
                center += refPos[j];
            center *= 1.0/mol.size();
125
126

            // Find the displacement to move it into the first periodic box.
127
            Vec3 diff;
128
129
130
            diff += periodicBoxSize[2]*floor(center[2]/periodicBoxSize[2][2]);
            diff += periodicBoxSize[1]*floor((center[1]-diff[1])/periodicBoxSize[1][1]);
            diff += periodicBoxSize[0]*floor((center[0]-diff[0])/periodicBoxSize[0][0]);
131
132

            // Translate all the particles in the molecule.
peastman's avatar
peastman committed
133
134
            for (int j : mol) {
                Vec3& pos = positions[j];
135
                pos -= diff;
136
137
            }
        }
Kyle Beauchamp's avatar
Kyle Beauchamp committed
138

139
        // Construct the new State.
Kyle Beauchamp's avatar
Kyle Beauchamp committed
140

141
        State::StateBuilder builder(state.getTime(), state.getStepCount());
142
143
144
145
146
147
148
149
150
151
152
153
154
        builder.setPositions(positions);
        builder.setPeriodicBoxVectors(periodicBoxSize[0], periodicBoxSize[1], periodicBoxSize[2]);
        if (types&State::Velocities)
            builder.setVelocities(state.getVelocities());
        if (types&State::Forces)
            builder.setForces(state.getForces());
        if (types&State::Parameters)
            builder.setParameters(state.getParameters());
        if (types&State::Energy)
            builder.setEnergy(state.getKineticEnergy(), state.getPotentialEnergy());
        state = builder.getState();
    }
    return state;
155
156
}

157
double RPMDIntegrator::computeKineticEnergy() {
Peter Eastman's avatar
Peter Eastman committed
158
    return kernel.getAs<IntegrateRPMDStepKernel>().computeKineticEnergy(*context, *this);
159
160
}

161
void RPMDIntegrator::step(int steps) {
Kyle Beauchamp's avatar
Kyle Beauchamp committed
162
    if (context == NULL)
163
        throw OpenMMException("This Integrator is not bound to a context!");
Peter Eastman's avatar
Peter Eastman committed
164
165
    if (!hasSetPosition) {
        // Initialize the positions from the context.
Kyle Beauchamp's avatar
Kyle Beauchamp committed
166

Peter Eastman's avatar
Peter Eastman committed
167
168
169
170
171
172
        State s = context->getOwner().getState(State::Positions);
        for (int i = 0; i < numCopies; i++)
            setPositions(i, s.getPositions());
    }
    if (!hasSetVelocity) {
        // Initialize the velocities from the context.
Kyle Beauchamp's avatar
Kyle Beauchamp committed
173

Peter Eastman's avatar
Peter Eastman committed
174
175
176
177
        State s = context->getOwner().getState(State::Velocities);
        for (int i = 0; i < numCopies; i++)
            setVelocities(i, s.getVelocities());
    }
178
179
180
181
    if (isFirstStep) {
        // Call setPositions() on the Context so it doesn't think the user is trying to
        // run a simulation without setting positions first.  These positions will
        // immediately get overwritten by the ones stored in this integrator.
Kyle Beauchamp's avatar
Kyle Beauchamp committed
182

183
184
185
186
        vector<Vec3> p(context->getSystem().getNumParticles(), Vec3());
        context->getOwner().setPositions(p);
        isFirstStep = false;
    }
peastman's avatar
peastman committed
187
188
    for (auto impl : context->getForceImpls()) {
        RPMDUpdater* updater = dynamic_cast<RPMDUpdater*>(impl);
peastman's avatar
peastman committed
189
190
191
        if (updater != NULL)
            updater->updateRPMDState(*context);
    }
192
    for (int i = 0; i < steps; ++i) {
193
        kernel.getAs<IntegrateRPMDStepKernel>().execute(*context, *this, forcesAreValid);
194
        forcesAreValid = true;
195
196
    }
}
197
198
199
200
201
202
203
204
205
206

double RPMDIntegrator::getTotalEnergy() {
    const System& system = owner->getSystem();
    int numParticles = system.getNumParticles();
    double energy = 0.0;
    const double hbar = 1.054571628e-34*AVOGADRO/(1000*1e-12);
    const double wn = numCopies*BOLTZ*temperature/hbar;
    State prevState = getState(numCopies-1, State::Positions);
    for (int i = 0; i < numCopies; i++) {
        // Add the energy of this copy.
Kyle Beauchamp's avatar
Kyle Beauchamp committed
207

208
209
        State state = getState(i, State::Positions | State::Energy);
        energy += state.getKineticEnergy()+state.getPotentialEnergy();
Kyle Beauchamp's avatar
Kyle Beauchamp committed
210

211
        // Add the energy from the springs connecting it to the previous copy.
Kyle Beauchamp's avatar
Kyle Beauchamp committed
212

213
214
215
216
217
218
219
220
        for (int j = 0; j < numParticles; j++) {
            Vec3 delta = state.getPositions()[j]-prevState.getPositions()[j];
            energy += 0.5*wn*wn*system.getParticleMass(j)*delta.dot(delta);
        }
        prevState = state;
    }
    return energy;
}