|
| CustomNonbondedForce (const std::string &energy) |
| Create a CustomNonbondedForce. More...
|
|
| CustomNonbondedForce (const CustomNonbondedForce &rhs) |
|
| ~CustomNonbondedForce () |
|
int | getNumParticles () const |
| Get the number of particles for which force field parameters have been defined. More...
|
|
int | getNumExclusions () const |
| Get the number of particle pairs whose interactions should be excluded. More...
|
|
int | getNumPerParticleParameters () const |
| Get the number of per-particle parameters that the interaction depends on. More...
|
|
int | getNumGlobalParameters () const |
| Get the number of global parameters that the interaction depends on. More...
|
|
int | getNumTabulatedFunctions () const |
| Get the number of tabulated functions that have been defined. More...
|
|
int | getNumFunctions () const |
| Get the number of tabulated functions that have been defined. More...
|
|
int | getNumInteractionGroups () const |
| Get the number of interaction groups that have been defined. More...
|
|
const std::string & | getEnergyFunction () const |
| Get the algebraic expression that gives the interaction energy between two particles. More...
|
|
void | setEnergyFunction (const std::string &energy) |
| Set the algebraic expression that gives the interaction energy between two particles. More...
|
|
NonbondedMethod | getNonbondedMethod () const |
| Get the method used for handling long range nonbonded interactions. More...
|
|
void | setNonbondedMethod (NonbondedMethod method) |
| Set the method used for handling long range nonbonded interactions. More...
|
|
double | getCutoffDistance () const |
| Get the cutoff distance (in nm) being used for nonbonded interactions. More...
|
|
void | setCutoffDistance (double distance) |
| Set the cutoff distance (in nm) being used for nonbonded interactions. More...
|
|
bool | getUseSwitchingFunction () const |
| Get whether a switching function is applied to the interaction. More...
|
|
void | setUseSwitchingFunction (bool use) |
| Set whether a switching function is applied to the interaction. More...
|
|
double | getSwitchingDistance () const |
| Get the distance at which the switching function begins to reduce the interaction. More...
|
|
void | setSwitchingDistance (double distance) |
| Set the distance at which the switching function begins to reduce the interaction. More...
|
|
bool | getUseLongRangeCorrection () const |
| Get whether to add a correction to the energy to compensate for the cutoff and switching function. More...
|
|
void | setUseLongRangeCorrection (bool use) |
| Set whether to add a correction to the energy to compensate for the cutoff and switching function. More...
|
|
int | addPerParticleParameter (const std::string &name) |
| Add a new per-particle parameter that the interaction may depend on. More...
|
|
const std::string & | getPerParticleParameterName (int index) const |
| Get the name of a per-particle parameter. More...
|
|
void | setPerParticleParameterName (int index, const std::string &name) |
| Set the name of a per-particle parameter. More...
|
|
int | addGlobalParameter (const std::string &name, double defaultValue) |
| Add a new global parameter that the interaction may depend on. More...
|
|
const std::string & | getGlobalParameterName (int index) const |
| Get the name of a global parameter. More...
|
|
void | setGlobalParameterName (int index, const std::string &name) |
| Set the name of a global parameter. More...
|
|
double | getGlobalParameterDefaultValue (int index) const |
| Get the default value of a global parameter. More...
|
|
void | setGlobalParameterDefaultValue (int index, double defaultValue) |
| Set the default value of a global parameter. More...
|
|
int | addParticle (const std::vector< double > ¶meters) |
| Add the nonbonded force parameters for a particle. More...
|
|
void | getParticleParameters (int index, std::vector< double > ¶meters) const |
| Get the nonbonded force parameters for a particle. More...
|
|
void | setParticleParameters (int index, const std::vector< double > ¶meters) |
| Set the nonbonded force parameters for a particle. More...
|
|
int | addExclusion (int particle1, int particle2) |
| Add a particle pair to the list of interactions that should be excluded. More...
|
|
void | getExclusionParticles (int index, int &particle1, int &particle2) const |
| Get the particles in a pair whose interaction should be excluded. More...
|
|
void | setExclusionParticles (int index, int particle1, int particle2) |
| Set the particles in a pair whose interaction should be excluded. More...
|
|
void | createExclusionsFromBonds (const std::vector< std::pair< int, int > > &bonds, int bondCutoff) |
| Identify exclusions based on the molecular topology. More...
|
|
int | addTabulatedFunction (const std::string &name, TabulatedFunction *function) |
| Add a tabulated function that may appear in the energy expression. More...
|
|
const TabulatedFunction & | getTabulatedFunction (int index) const |
| Get a const reference to a tabulated function that may appear in the energy expression. More...
|
|
TabulatedFunction & | getTabulatedFunction (int index) |
| Get a reference to a tabulated function that may appear in the energy expression. More...
|
|
const std::string & | getTabulatedFunctionName (int index) const |
| Get the name of a tabulated function that may appear in the energy expression. More...
|
|
int | addFunction (const std::string &name, const std::vector< double > &values, double min, double max) |
| Add a tabulated function that may appear in the energy expression. More...
|
|
void | getFunctionParameters (int index, std::string &name, std::vector< double > &values, double &min, double &max) const |
| Get the parameters for a tabulated function that may appear in the energy expression. More...
|
|
void | setFunctionParameters (int index, const std::string &name, const std::vector< double > &values, double min, double max) |
| Set the parameters for a tabulated function that may appear in the energy expression. More...
|
|
int | addInteractionGroup (const std::set< int > &set1, const std::set< int > &set2) |
| Add an interaction group. More...
|
|
void | getInteractionGroupParameters (int index, std::set< int > &set1, std::set< int > &set2) const |
| Get the parameters for an interaction group. More...
|
|
void | setInteractionGroupParameters (int index, const std::set< int > &set1, const std::set< int > &set2) |
| Set the parameters for an interaction group. More...
|
|
void | updateParametersInContext (Context &context) |
| Update the per-particle parameters in a Context to match those stored in this Force object. More...
|
|
| Force () |
|
virtual | ~Force () |
|
int | getForceGroup () const |
| Get the force group this Force belongs to. More...
|
|
void | setForceGroup (int group) |
| Set the force group this Force belongs to. More...
|
|
This class implements nonbonded interactions between particles.
Unlike NonbondedForce, the functional form of the interaction is completely customizable, and may involve arbitrary algebraic expressions and tabulated functions. It may depend on the distance between particles, as well as on arbitrary global and per-particle parameters. It also optionally supports periodic boundary conditions and cutoffs for long range interactions.
To use this class, create a CustomNonbondedForce object, passing an algebraic expression to the constructor that defines the interaction energy between each pair of particles. The expression may depend on r, the distance between the particles, as well as on any parameters you choose. Then call addPerParticleParameter() to define per-particle parameters, and addGlobalParameter() to define global parameters. The values of per-particle parameters are specified as part of the system definition, while values of global parameters may be modified during a simulation by calling Context::setParameter().
Next, call addParticle() once for each particle in the System to set the values of its per-particle parameters. The number of particles for which you set 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 parameters by calling setParticleParameters(). This will have no effect on Contexts that already exist unless you call updateParametersInContext().
CustomNonbondedForce also lets you specify "exclusions", particular pairs of particles whose interactions should be omitted from force and energy calculations. This is most often used for particles that are bonded to each other.
As an example, the following code creates a CustomNonbondedForce that implements a 12-6 Lennard-Jones potential:
CustomNonbondedForce* force = new CustomNonbondedForce("4*epsilon*((sigma/r)^12-(sigma/r)^6); sigma=0.5*(sigma1+sigma2); epsilon=sqrt(epsilon1*epsilon2)");
This force depends on two parameters: sigma and epsilon. The following code defines these as per-particle parameters:
force->addPerParticleParameter("sigma");
force->addPerParticleParameter("epsilon");
The expression must be symmetric with respect to the two particles. It typically will only be evaluated once for each pair of particles, and no guarantee is made about which particle will be identified as "particle 1". In the above example, the energy only depends on the products sigma1*sigma2 and epsilon1*epsilon2, both of which are unchanged if the labels 1 and 2 are reversed. In contrast, if it depended on the difference sigma1-sigma2, the results would be undefined, because reversing the labels 1 and 2 would change the energy.
CustomNonbondedForce can operate in two modes. By default, it computes the interaction of every particle in the System with every other particle. Alternatively, you can restrict it to only a subset of particle pairs. To do this, specify one or more "interaction groups". An interaction group consists of two sets of particles that should interact with each other. Every particle in the first set interacts with every particle in the second set. For example, you might use this feature to compute a solute-solvent interaction energy, while omitting all interactions between two solute atoms or two solvent atoms.
To create an interaction group, call addInteractionGroup(). You may add as many interaction groups as you want. Be aware of the following:
-
Exclusions are still taken into account, so the interactions between excluded pairs are omitted.
-
Likewise, a particle will never interact with itself, even if it appears in both sets of an interaction group.
-
If a particle pair appears in two different interaction groups, its interaction will be computed twice. This is sometimes useful, but be aware of it so you do not accidentally create unwanted duplicate interactions.
-
If you do not add any interaction groups to a CustomNonbondedForce, it operates in the default mode where every particle interacts with every other particle.
When using a cutoff, by default the interaction is sharply truncated at the cutoff distance. Optionally you can instead use a switching function to make the interaction smoothly go to zero over a finite distance range. To enable this, call setUseSwitchingFunction(). You must also call setSwitchingDistance() to specify the distance at which the interaction should begin to decrease. The switching distance must be less than the cutoff distance. Of course, you could also incorporate the switching function directly into your energy expression, but there are several advantages to keeping it separate. It makes your energy expression simpler to write and understand. It allows you to use the same energy expression with or without a cutoff. Also, when using a long range correction (see below), separating out the switching function allows the correction to be calculated more accurately.
Another optional feature of this class is to add a contribution to the energy which approximates the effect of all interactions beyond the cutoff in a periodic system. When running a simulation at constant pressure, this can improve the quality of the result. Call setUseLongRangeCorrection() to enable it.
Computing the long range correction takes negligible work in each time step, but it does require an expensive precomputation at the start of the simulation. Furthermore, that precomputation must be repeated every time a global parameter changes (or when you modify per-particle parameters by calling updateParametersInContext()). This means that if parameters change frequently, the long range correction can be very slow. For this reason, it is disabled by default.
Expressions may involve the operators + (add), - (subtract), * (multiply), / (divide), and ^ (power), and the following functions: sqrt, exp, log, sin, cos, sec, csc, tan, cot, asin, acos, atan, sinh, cosh, tanh, erf, erfc, min, max, abs, step, delta. All trigonometric functions are defined in radians, and log is the natural logarithm. step(x) = 0 if x is less than 0, 1 otherwise. delta(x) = 1 if x is 0, 0 otherwise. The names of per-particle parameters have the suffix "1" or "2" appended to them to indicate the values for the two interacting particles. As seen in the above example, the expression may also involve intermediate quantities that are defined following the main expression, using ";" as a separator.
In addition, you can call addTabulatedFunction() to define a new function based on tabulated values. You specify the function by creating a TabulatedFunction object. That function can then appear in the expression.