AmoebaSASAForce.h 5.6 KB
Newer Older
Mark Friedrichs's avatar
Mark Friedrichs committed
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
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
#ifndef AMOEBA_OPENMM_SASA_FORCE_FIELD_H_
#define AMOEBA_OPENMM_SASA_FORCE_FIELD_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-2009 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.                                     *
 * -------------------------------------------------------------------------- */

#include "openmm/Force.h"
#include <vector>
#include "openmm/internal/windowsExport.h"

namespace OpenMM {

/**
 * This class implements an SASA force
 * by performing an analytical computation of the weighted
 * solvent accessible surface area of each atom and the first
 * derivatives of the area with respect to Cartesian coordinates
 * 
 * Literature references:
 * 
 * T. J. Richmond, "Solvent Accessible Surface Area and
 * Excluded Volume in Proteins", Journal of Molecular Biology,
 * 178, 63-89 (1984)
 * 
 * L. Wesson and D. Eisenberg, "Atomic Solvation Parameters
 * Applied to Molecular Dynamics of Proteins in Solution",
 * Protein Science, 1, 227-235 (1992)
 *
 * <p>
 * To use this class, create a AmoebaSASAForce object, then call addParticle() once for each particle in the
 * System to define its parameters.  The number of particles for which you define SASA parameters must
 * be exactly equal to the number of particles in the System, or else an exception will be thrown when you
 * try to create a Context.  After a particle has been added, you can modify its force field parameters
 * by calling setParticleParameters().
 */

class OPENMM_EXPORT AmoebaSASAForce : public Force {
public:
    /*
     * Create a AmoebaSASAForce.
     */
    AmoebaSASAForce();

    /**
     * Get the number of particles in the system.
     */
    int getNumParticles() const {
        return particles.size();
    }

    /**
     * Add the SASA parameters for a particle.  This should be called once for each particle
     * in the System.  When it is called for the i'th time, it specifies the parameters for the i'th particle.
     *
     * @param radius         the radius of the particle, measured in nm
     * @param weight         the sasa weight (Tinker asolv())
     * @return the index of the particle that was added
     */
    int addParticle(double radius, double weight);

    /**
     * Get the force field parameters for a particle.
     * 
     * @param index          the index of the particle for which to get parameters
     * @param radius         the radius of the particle, measured in nm
     * @param weight         the sasa weight(Tinker asolv())
     */
    void getParticleParameters(int index, double& radius, double& weight) const;

    /**
     * Set the force field parameters for a particle.
     * 
     * @param index          the index of the particle for which to set parameters
     * @param radius         the radius of the particle, measured in nm
     * @param weight         the sasa weight(Tinker asolv())
     */
    void setParticleParameters(int index, double radius, double weight);

    /**
     * Get the probe radius
     */
    double getProbeRadius() const;

    /**
     * Set the probe radius
     */
    void setProbeRadius(double distance);

protected:
    ForceImpl* createImpl();
private:
    class ParticleInfo;
    double probeRadius;
    std::vector<ParticleInfo> particles;
};

class AmoebaSASAForce::ParticleInfo {
public:
    double radius, weight;
    ParticleInfo() {
        radius = weight = 0.0;
    }
    ParticleInfo(double radius, double weight) :
        radius(radius), weight(weight) {
    }
};

} // namespace OpenMM

#endif /*AMOEBA_OPENMM_GBSA_OBC_FORCE_FIELD_H_*/