kernels.h 15.7 KB
Newer Older
1
2
3
4
5
6
7
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
34
#ifndef OPENMM_KERNELS_H_
#define OPENMM_KERNELS_H_

/* -------------------------------------------------------------------------- *
 *                                   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.               *
 *                                                                            *
 * Portions copyright (c) 2008 Stanford University and the Authors.           *
 * 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.                                     *
 * -------------------------------------------------------------------------- */

35
36
37
#include "AndersenThermostat.h"
#include "BrownianIntegrator.h"
#include "CMMotionRemover.h"
38
#include "GBSAOBCForce.h"
39
40
#include "HarmonicAngleForce.h"
#include "HarmonicBondForce.h"
41
#include "KernelImpl.h"
42
#include "LangevinIntegrator.h"
43
44
45
#include "PeriodicTorsionForce.h"
#include "RBTorsionForce.h"
#include "NonbondedForce.h"
46
#include "Stream.h"
47
48
#include "System.h"
#include "VerletIntegrator.h"
49
50
51
52
53
54
#include <set>
#include <string>
#include <vector>

namespace OpenMM {

55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/**
 * This kernel is invoked at the start of each force evaluation to clear the forces.
 */
class InitializeForcesKernel : public KernelImpl {
public:
    static std::string Name() {
        return "InitializeForces";
    }
    InitializeForcesKernel(std::string name, const Platform& platform) : KernelImpl(name, platform) {
    }
    /**
     * Initialize the kernel.
     * 
     * @param system     the System this kernel will be applied to
     */
    virtual void initialize(const System& system) = 0;
    /**
     * Execute the kernel.
     * 
     * @param context    the context in which to execute this kernel
     */
    virtual double execute(OpenMMContextImpl& context) = 0;
};

79
/**
80
 * This kernel is invoked by HarmonicBondForce to calculate the forces acting on the system and the energy of the system.
81
 */
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
class CalcHarmonicBondForceKernel : public KernelImpl {
public:
    static std::string Name() {
        return "CalcHarmonicBondForce";
    }
    CalcHarmonicBondForceKernel(std::string name, const Platform& platform) : KernelImpl(name, platform) {
    }
    /**
     * Initialize the kernel.
     * 
     * @param system     the System this kernel will be applied to
     * @param force      the HarmonicBondForce this kernel will be used for
     */
    virtual void initialize(const System& system, const HarmonicBondForce& force) = 0;
    /**
     * Execute the kernel to calculate the forces.
     * 
     * @param context    the context in which to execute this kernel
     */
    virtual void executeForces(OpenMMContextImpl& context) = 0;
    /**
     * Execute the kernel to calculate the energy.
     * 
     * @param context    the context in which to execute this kernel
     * @return the potential energy due to the HarmonicBondForce
     */
    virtual double executeEnergy(OpenMMContextImpl& context) = 0;
};

/**
 * This kernel is invoked by HarmonicAngleForce to calculate the forces acting on the system and the energy of the system.
 */
class CalcHarmonicAngleForceKernel : public KernelImpl {
public:
    static std::string Name() {
        return "CalcHarmonicAngleForce";
    }
    CalcHarmonicAngleForceKernel(std::string name, const Platform& platform) : KernelImpl(name, platform) {
    }
    /**
     * Initialize the kernel.
     * 
     * @param system     the System this kernel will be applied to
     * @param force      the HarmonicAngleForce this kernel will be used for
     */
    virtual void initialize(const System& system, const HarmonicAngleForce& force) = 0;
    /**
     * Execute the kernel to calculate the forces.
     * 
     * @param context    the context in which to execute this kernel
     */
    virtual void executeForces(OpenMMContextImpl& context) = 0;
    /**
     * Execute the kernel to calculate the energy.
     * 
     * @param context    the context in which to execute this kernel
     * @return the potential energy due to the HarmonicAngleForce
     */
    virtual double executeEnergy(OpenMMContextImpl& context) = 0;
};

/**
 * This kernel is invoked by PeriodicTorsionForce to calculate the forces acting on the system and the energy of the system.
 */
class CalcPeriodicTorsionForceKernel : public KernelImpl {
public:
    static std::string Name() {
        return "CalcPeriodicTorsionForce";
    }
    CalcPeriodicTorsionForceKernel(std::string name, const Platform& platform) : KernelImpl(name, platform) {
    }
    /**
     * Initialize the kernel.
     * 
     * @param system     the System this kernel will be applied to
     * @param force      the PeriodicTorsionForce this kernel will be used for
     */
    virtual void initialize(const System& system, const PeriodicTorsionForce& force) = 0;
    /**
     * Execute the kernel to calculate the forces.
     * 
     * @param context    the context in which to execute this kernel
     */
    virtual void executeForces(OpenMMContextImpl& context) = 0;
    /**
     * Execute the kernel to calculate the energy.
     * 
     * @param context    the context in which to execute this kernel
     * @return the potential energy due to the PeriodicTorsionForce
     */
    virtual double executeEnergy(OpenMMContextImpl& context) = 0;
};

/**
 * This kernel is invoked by RBTorsionForce to calculate the forces acting on the system and the energy of the system.
 */
class CalcRBTorsionForceKernel : public KernelImpl {
public:
    static std::string Name() {
        return "CalcRBTorsionForce";
    }
    CalcRBTorsionForceKernel(std::string name, const Platform& platform) : KernelImpl(name, platform) {
    }
    /**
     * Initialize the kernel.
     * 
     * @param system     the System this kernel will be applied to
     * @param force      the RBTorsionForce this kernel will be used for
     */
    virtual void initialize(const System& system, const RBTorsionForce& force) = 0;
    /**
     * Execute the kernel to calculate the forces.
     * 
     * @param context    the context in which to execute this kernel
     */
    virtual void executeForces(OpenMMContextImpl& context) = 0;
    /**
     * Execute the kernel to calculate the energy.
     * 
     * @param context    the context in which to execute this kernel
     * @return the potential energy due to the RBTorsionForce
     */
    virtual double executeEnergy(OpenMMContextImpl& context) = 0;
};

/**
 * This kernel is invoked by NonbondedForce to calculate the forces acting on the system and the energy of the system.
 */
class CalcNonbondedForceKernel : public KernelImpl {
211
public:
212
213
214
215
216
    enum NonbondedMethod {
        NoCutoff = 0,
        CutoffNonPeriodic = 1,
        CutoffPeriodic = 2
    };
217
    static std::string Name() {
218
        return "CalcNonbondedForce";
219
    }
220
    CalcNonbondedForceKernel(std::string name, const Platform& platform) : KernelImpl(name, platform) {
221
222
    }
    /**
223
     * Initialize the kernel.
224
     * 
225
     * @param system     the System this kernel will be applied to
226
     * @param force      the NonbondedForce this kernel will be used for
Peter Eastman's avatar
Peter Eastman committed
227
     * @param exclusions the i'th element lists the indices of all particles with which the i'th particle should not interact through
228
229
     *                   nonbonded forces.  Bonded 1-4 pairs are also included in this list, since they should be omitted from
     *                   the standard nonbonded calculation.
230
     */
231
    virtual void initialize(const System& system, const NonbondedForce& force, const std::vector<std::set<int> >& exclusions) = 0;
232
    /**
233
     * Execute the kernel to calculate the forces.
234
     * 
235
     * @param context    the context in which to execute this kernel
236
     */
237
    virtual void executeForces(OpenMMContextImpl& context) = 0;
238
    /**
239
     * Execute the kernel to calculate the energy.
240
     * 
241
     * @param context    the context in which to execute this kernel
242
     * @return the potential energy due to the NonbondedForce
243
     */
244
    virtual double executeEnergy(OpenMMContextImpl& context) = 0;
245
246
247
};

/**
248
 * This kernel is invoked by GBSAOBCForce to calculate the forces acting on the system and the energy of the system.
249
 */
250
class CalcGBSAOBCForceKernel : public KernelImpl {
251
252
253
254
public:
    static std::string Name() {
        return "CalcGBSAOBCForces";
    }
255
    CalcGBSAOBCForceKernel(std::string name, const Platform& platform) : KernelImpl(name, platform) {
256
257
    }
    /**
258
     * Initialize the kernel.
259
     * 
260
     * @param system     the System this kernel will be applied to
261
     * @param force      the GBSAOBCForce this kernel will be used for
262
     */
263
    virtual void initialize(const System& system, const GBSAOBCForce& force) = 0;
264
    /**
265
     * Execute the kernel to calculate the forces.
266
     * 
267
     * @param context    the context in which to execute this kernel
268
     */
269
    virtual void executeForces(OpenMMContextImpl& context) = 0;
270
    /**
271
     * Execute the kernel to calculate the energy.
272
     * 
273
     * @param context    the context in which to execute this kernel
274
     * @return the potential energy due to the GBSAOBCForce
275
     */
276
    virtual double executeEnergy(OpenMMContextImpl& context) = 0;
277
278
279
280
281
282
283
284
285
286
};

/**
 * This kernel is invoked by VerletIntegrator to take one time step.
 */
class IntegrateVerletStepKernel : public KernelImpl {
public:
    static std::string Name() {
        return "IntegrateVerletStep";
    }
287
    IntegrateVerletStepKernel(std::string name, const Platform& platform) : KernelImpl(name, platform) {
288
289
    }
    /**
290
     * Initialize the kernel.
291
     * 
292
293
     * @param system     the System this kernel will be applied to
     * @param integrator the VerletIntegrator this kernel will be used for
294
     */
295
    virtual void initialize(const System& system, const VerletIntegrator& integrator) = 0;
296
297
298
    /**
     * Execute the kernel.
     * 
299
300
     * @param context    the context in which to execute this kernel
     * @param integrator the VerletIntegrator this kernel is being used for
301
     */
302
    virtual void execute(OpenMMContextImpl& context, const VerletIntegrator& integrator) = 0;
303
304
305
306
307
308
309
310
311
312
};

/**
 * This kernel is invoked by LangevinIntegrator to take one time step.
 */
class IntegrateLangevinStepKernel : public KernelImpl {
public:
    static std::string Name() {
        return "IntegrateLangevinStep";
    }
313
    IntegrateLangevinStepKernel(std::string name, const Platform& platform) : KernelImpl(name, platform) {
314
315
    }
    /**
316
     * Initialize the kernel.
317
     * 
318
319
     * @param system     the System this kernel will be applied to
     * @param integrator the LangevinIntegrator this kernel will be used for
320
     */
321
    virtual void initialize(const System& system, const LangevinIntegrator& integrator) = 0;
322
323
324
    /**
     * Execute the kernel.
     * 
325
326
     * @param context    the context in which to execute this kernel
     * @param integrator the LangevinIntegrator this kernel is being used for
327
     */
328
    virtual void execute(OpenMMContextImpl& context, const LangevinIntegrator& integrator) = 0;
329
330
331
332
333
334
335
336
337
338
};

/**
 * This kernel is invoked by BrownianIntegrator to take one time step.
 */
class IntegrateBrownianStepKernel : public KernelImpl {
public:
    static std::string Name() {
        return "IntegrateBrownianStep";
    }
339
    IntegrateBrownianStepKernel(std::string name, const Platform& platform) : KernelImpl(name, platform) {
340
341
    }
    /**
342
     * Initialize the kernel.
343
     * 
344
345
     * @param system     the System this kernel will be applied to
     * @param integrator the BrownianIntegrator this kernel will be used for
346
     */
347
    virtual void initialize(const System& system, const BrownianIntegrator& integrator) = 0;
348
349
350
    /**
     * Execute the kernel.
     * 
351
352
     * @param context    the context in which to execute this kernel
     * @param integrator the BrownianIntegrator this kernel is being used for
353
     */
354
    virtual void execute(OpenMMContextImpl& context, const BrownianIntegrator& integrator) = 0;
355
356
357
};

/**
Peter Eastman's avatar
Peter Eastman committed
358
 * This kernel is invoked by AndersenThermostat at the start of each time step to adjust the particle velocities.
359
360
361
362
363
364
 */
class ApplyAndersenThermostatKernel : public KernelImpl {
public:
    static std::string Name() {
        return "ApplyAndersenThermostat";
    }
365
    ApplyAndersenThermostatKernel(std::string name, const Platform& platform) : KernelImpl(name, platform) {
366
367
    }
    /**
368
     * Initialize the kernel.
369
     * 
370
371
     * @param system     the System this kernel will be applied to
     * @param thermostat the AndersenThermostat this kernel will be used for
372
     */
373
    virtual void initialize(const System& system, const AndersenThermostat& thermostat) = 0;
374
375
376
    /**
     * Execute the kernel.
     * 
377
     * @param context    the context in which to execute this kernel
378
     */
379
    virtual void execute(OpenMMContextImpl& context) = 0;
380
381
382
383
384
385
386
387
388
389
};

/**
 * This kernel is invoked to calculate the kinetic energy of the system.
 */
class CalcKineticEnergyKernel : public KernelImpl {
public:
    static std::string Name() {
        return "CalcKineticEnergy";
    }
390
    CalcKineticEnergyKernel(std::string name, const Platform& platform) : KernelImpl(name, platform) {
391
392
    }
    /**
393
     * Initialize the kernel.
394
     * 
395
     * @param system     the System this kernel will be applied to
396
     */
397
    virtual void initialize(const System& system) = 0;
398
399
400
    /**
     * Execute the kernel.
     * 
401
     * @param context    the context in which to execute this kernel
402
     */
403
    virtual double execute(OpenMMContextImpl& context) = 0;
404
405
};

406
407
408
409
410
411
412
413
414
415
416
/**
 * This kernel is invoked to remove center of mass motion from the system.
 */
class RemoveCMMotionKernel : public KernelImpl {
public:
    static std::string Name() {
        return "RemoveCMMotion";
    }
    RemoveCMMotionKernel(std::string name, const Platform& platform) : KernelImpl(name, platform) {
    }
    /**
417
     * Initialize the kernel.
418
     * 
419
420
     * @param system     the System this kernel will be applied to
     * @param force      the CMMotionRemover this kernel will be used for
421
     */
422
    virtual void initialize(const System& system, const CMMotionRemover& force) = 0;
423
424
425
    /**
     * Execute the kernel.
     * 
426
     * @param context    the context in which to execute this kernel
427
     */
428
    virtual void execute(OpenMMContextImpl& context) = 0;
429
430
};

431
432
433
} // namespace OpenMM

#endif /*OPENMM_KERNELS_H_*/