NonbondedForceImpl.h 4.67 KB
Newer Older
1
2
#ifndef OPENMM_NONBONDEDFORCEIMPL_H_
#define OPENMM_NONBONDEDFORCEIMPL_H_
3
4
5
6
7
8
9
10
11

/* -------------------------------------------------------------------------- *
 *                                   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.               *
 *                                                                            *
12
 * Portions copyright (c) 2008-2010 Stanford University and the Authors.      *
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 "ForceImpl.h"
36
37
#include "openmm/NonbondedForce.h"
#include "openmm/Kernel.h"
38
39
40
41
42
43
#include <utility>
#include <set>
#include <string>

namespace OpenMM {

44
45
class System;

46
/**
47
 * This is the internal implementation of NonbondedForce.
48
49
 */

50
class OPENMM_EXPORT NonbondedForceImpl : public ForceImpl {
51
public:
52
    NonbondedForceImpl(const NonbondedForce& owner);
53
    ~NonbondedForceImpl();
54
    void initialize(ContextImpl& context);
55
    const NonbondedForce& getOwner() const {
56
57
        return owner;
    }
58
    void updateContextState(ContextImpl& context) {
59
60
        // This force field doesn't update the state directly.
    }
61
    double calcForcesAndEnergy(ContextImpl& context, bool includeForces, bool includeEnergy, int groups);
62
63
64
65
    std::map<std::string, double> getDefaultParameters() {
        return std::map<std::string, double>(); // This force field doesn't define any parameters.
    }
    std::vector<std::string> getKernelNames();
66
    void updateParametersInContext(ContextImpl& context);
67
    void getPMEParameters(double& alpha, int& nx, int& ny, int& nz) const;
68
    void getLJPMEParameters(double& alpha, int& nx, int& ny, int& nz) const;
69
70
71
72
73
74
75
76
77
    /**
     * This is a utility routine that calculates the values to use for alpha and kmax when using
     * Ewald summation.
     */
    static void calcEwaldParameters(const System& system, const NonbondedForce& force, double& alpha, int& kmaxx, int& kmaxy, int& kmaxz);
    /**
     * This is a utility routine that calculates the values to use for alpha and grid size when using
     * Particle Mesh Ewald.
     */
78
    static void calcPMEParameters(const System& system, const NonbondedForce& force, double& alpha, int& xsize, int& ysize, int& zsize, bool lj);
79
80
81
82
83
    /**
     * Compute the coefficient which, when divided by the periodic box volume, gives the
     * long range dispersion correction to the energy.
     */
    static double calcDispersionCorrection(const System& system, const NonbondedForce& force);
84
private:
85
86
    class ErrorFunction;
    class EwaldErrorFunction;
87
    static int findZero(const ErrorFunction& f, int initialGuess);
88
    static double evalIntegral(double r, double rs, double rc, double sigma);
89
    const NonbondedForce& owner;
90
    Kernel kernel;
91
92
93
94
};

} // namespace OpenMM

95
#endif /*OPENMM_NONBONDEDFORCEIMPL_H_*/