HarmonicAngleForceImpl.cpp 4.35 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
31
32
33
#ifdef WIN32
  #define _USE_MATH_DEFINES // Needed to get M_PI
#endif
#include "openmm/OpenMMException.h"
34
#include "openmm/internal/ContextImpl.h"
35
36
#include "openmm/internal/HarmonicAngleForceImpl.h"
#include "openmm/kernels.h"
37
38
#include <cmath>
#include <sstream>
39
40

using namespace OpenMM;
41
using namespace std;
42

43
HarmonicAngleForceImpl::HarmonicAngleForceImpl(const HarmonicAngleForce& owner) : owner(owner) {
44
    forceGroup = owner.getForceGroup();
45
}
46

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

50
void HarmonicAngleForceImpl::initialize(ContextImpl& context) {
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
    const System& system = context.getSystem();
    for (int i = 0; i < owner.getNumAngles(); i++) {
        int particle[3];
        double angle, k;
        owner.getAngleParameters(i, particle[0], particle[1], particle[2], angle, k);
        for (int j = 0; j < 3; j++) {
            if (particle[j] < 0 || particle[j] >= system.getNumParticles()) {
                stringstream msg;
                msg << "HarmonicAngleForce: Illegal particle index for an angle: ";
                msg << particle[j];
                throw OpenMMException(msg.str());
            }
        }
        if (angle < 0 || angle > M_PI*1.000001)
            throw OpenMMException("HarmonicAngleForce: angle must be between 0 and pi");
    }
67
    kernel = context.getPlatform().createKernel(CalcHarmonicAngleForceKernel::Name(), context);
68
    kernel.getAs<CalcHarmonicAngleForceKernel>().initialize(context.getSystem(), owner);
69
}
70

71
double HarmonicAngleForceImpl::calcForcesAndEnergy(ContextImpl& context, bool includeForces, bool includeEnergy, int groups) {
72
    if ((groups&(1<<forceGroup)) != 0)
73
        return kernel.getAs<CalcHarmonicAngleForceKernel>().execute(context, includeForces, includeEnergy);
Peter Eastman's avatar
Peter Eastman committed
74
    return 0.0;
75
}
76

77
78
79
80
81
std::vector<std::string> HarmonicAngleForceImpl::getKernelNames() {
    std::vector<std::string> names;
    names.push_back(CalcHarmonicAngleForceKernel::Name());
    return names;
}
82

83
84
void HarmonicAngleForceImpl::updateParametersInContext(ContextImpl& context, int firstAngle, int lastAngle) {
    kernel.getAs<CalcHarmonicAngleForceKernel>().copyParametersToContext(context, owner, firstAngle, lastAngle);
85
    context.systemChanged();
86
}