PeriodicTorsionForceImpl.cpp 4.33 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-2024 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
 * 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.                                     *
 * -------------------------------------------------------------------------- */

30
#include "openmm/OpenMMException.h"
31
#include "openmm/internal/ContextImpl.h"
32
33
#include "openmm/internal/PeriodicTorsionForceImpl.h"
#include "openmm/kernels.h"
34
#include <sstream>
35
36

using namespace OpenMM;
37
using namespace std;
38

39
PeriodicTorsionForceImpl::PeriodicTorsionForceImpl(const PeriodicTorsionForce& owner) : owner(owner) {
40
    forceGroup = owner.getForceGroup();
41
}
42

43
44
PeriodicTorsionForceImpl::~PeriodicTorsionForceImpl() {
}
45

46
void PeriodicTorsionForceImpl::initialize(ContextImpl& context) {
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
    const System& system = context.getSystem();
    for (int i = 0; i < owner.getNumTorsions(); i++) {
        int particle[4], periodicity;
        double phase, k;
        owner.getTorsionParameters(i, particle[0], particle[1], particle[2], particle[3], periodicity, phase, k);
        for (int j = 0; j < 4; j++) {
            if (particle[j] < 0 || particle[j] >= system.getNumParticles()) {
                stringstream msg;
                msg << "PeriodicTorsionForce: Illegal particle index for a torsion: ";
                msg << particle[j];
                throw OpenMMException(msg.str());
            }
        }
        if (periodicity < 1)
            throw OpenMMException("PeriodicTorsionForce: periodicity must be positive");
    }
63
    kernel = context.getPlatform().createKernel(CalcPeriodicTorsionForceKernel::Name(), context);
64
    kernel.getAs<CalcPeriodicTorsionForceKernel>().initialize(context.getSystem(), owner);
65
}
66

67
double PeriodicTorsionForceImpl::calcForcesAndEnergy(ContextImpl& context, bool includeForces, bool includeEnergy, int groups) {
68
    if ((groups&(1<<forceGroup)) != 0)
69
        return kernel.getAs<CalcPeriodicTorsionForceKernel>().execute(context, includeForces, includeEnergy);
Peter Eastman's avatar
Peter Eastman committed
70
    return 0.0;
71
}
72

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

79
80
void PeriodicTorsionForceImpl::updateParametersInContext(ContextImpl& context, int firstTorsion, int lastTorsion) {
    kernel.getAs<CalcPeriodicTorsionForceKernel>().copyParametersToContext(context, owner, firstTorsion, lastTorsion);
81
    context.systemChanged();
82
}