RPMDIntegrator.cpp 5.32 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.               *
 *                                                                            *
9
 * Portions copyright (c) 2008-2012 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
 * 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
36
#include "openmm/RpmdKernels.h"
37
38
39
40
41
42
43
#include <ctime>
#include <string>

using namespace OpenMM;
using std::string;
using std::vector;

44
RPMDIntegrator::RPMDIntegrator(int numCopies, double temperature, double frictionCoeff, double stepSize) :
Peter Eastman's avatar
Peter Eastman committed
45
        owner(NULL), numCopies(numCopies), forcesAreValid(false), hasSetPosition(false), hasSetVelocity(false) {
46
47
48
49
50
51
52
53
54
55
    setTemperature(temperature);
    setFriction(frictionCoeff);
    setStepSize(stepSize);
    setConstraintTolerance(1e-4);
    setRandomNumberSeed((int) time(NULL));
}

void RPMDIntegrator::initialize(ContextImpl& contextRef) {
    if (owner != NULL && &contextRef.getOwner() != owner)
        throw OpenMMException("This Integrator is already bound to a context");
56
57
    if (contextRef.getSystem().getNumConstraints() > 0)
        throw OpenMMException("RPMDIntegrator cannot be used with Systems that include constraints");
58
59
60
    context = &contextRef;
    owner = &contextRef.getOwner();
    kernel = context->getPlatform().createKernel(IntegrateRPMDStepKernel::Name(), contextRef);
61
    kernel.getAs<IntegrateRPMDStepKernel>().initialize(contextRef.getSystem(), *this);
62
63
}

64
65
66
67
void RPMDIntegrator::cleanup() {
    kernel = Kernel();
}

68
69
70
71
void RPMDIntegrator::stateChanged(State::DataType changed) {
    forcesAreValid = false;
}

72
73
74
75
76
77
78
vector<string> RPMDIntegrator::getKernelNames() {
    std::vector<std::string> names;
    names.push_back(IntegrateRPMDStepKernel::Name());
    return names;
}

void RPMDIntegrator::setPositions(int copy, const vector<Vec3>& positions) {
79
    kernel.getAs<IntegrateRPMDStepKernel>().setPositions(copy, positions);
Peter Eastman's avatar
Peter Eastman committed
80
    hasSetPosition = true;
81
82
83
}

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

88
State RPMDIntegrator::getState(int copy, int types, bool enforcePeriodicBox, int groups) {
89
    kernel.getAs<IntegrateRPMDStepKernel>().copyToContext(copy, *context);
90
    return context->getOwner().getState(types, enforcePeriodicBox, groups);
91
92
}

93
double RPMDIntegrator::computeKineticEnergy() {
Peter Eastman's avatar
Peter Eastman committed
94
    return kernel.getAs<IntegrateRPMDStepKernel>().computeKineticEnergy(*context, *this);
95
96
}

97
void RPMDIntegrator::step(int steps) {
Peter Eastman's avatar
Peter Eastman committed
98
99
100
101
102
103
104
105
106
107
108
109
110
111
    if (!hasSetPosition) {
        // Initialize the positions from the context.
        
        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.
        
        State s = context->getOwner().getState(State::Velocities);
        for (int i = 0; i < numCopies; i++)
            setVelocities(i, s.getVelocities());
    }
112
    for (int i = 0; i < steps; ++i) {
113
        kernel.getAs<IntegrateRPMDStepKernel>().execute(*context, *this, forcesAreValid);
114
        forcesAreValid = true;
115
116
    }
}