OpenMM
DrudeForce Class Reference

This class implements forces that are specific to Drude oscillators. More...

+ Inheritance diagram for DrudeForce:

List of all members.

Public Member Functions

def getNumParticles
 getNumParticles(self) -> int
def getNumScreenedPairs
 getNumScreenedPairs(self) -> int
def addParticle
 addParticle(self, particle, particle1, particle2, particle3, particle4, charge, polarizability, aniso12, aniso34) -> int
def getParticleParameters
 Get the parameters for a Drude particle.
def setParticleParameters
 Set the parameters for a Drude particle.
def addScreenedPair
 addScreenedPair(self, particle1, particle2, thole) -> int
def getScreenedPairParameters
 Get the force field parameters for screened pair.
def setScreenedPairParameters
 Set the force field parameters for screened pair.
def updateParametersInContext
 Update the particle and screened pair parameters in a Context to match those stored in this Force object.
def usesPeriodicBoundaryConditions
 usesPeriodicBoundaryConditions(self) -> bool
def __init__
 __init__(self) -> DrudeForce __init__(self, other) -> DrudeForce

Public Attributes

 this

Detailed Description

This class implements forces that are specific to Drude oscillators.

There are two distinct forces it applies: an anisotropic harmonic force connecting each Drude particle to its parent particle; and a screened Coulomb interaction between specific pairs of dipoles. The latter is typically used between closely bonded particles whose Coulomb interaction would otherwise be fully excluded.

To use this class, create a DrudeForce object, then call addParticle() once for each Drude particle in the System to define its parameters. After a particle has been added, you can modify its force field parameters by calling setParticleParameters(). This will have no effect on Contexts that already exist unless you call updateParametersInContext(). Likewise, call addScreenedPair() for each pair of dipoles (each dipole consisting of a Drude particle and its parent) that should be computed.


Constructor & Destructor Documentation

def __init__ (   self,
  args 
)

__init__(self) -> DrudeForce __init__(self, other) -> DrudeForce

Create a DrudeForce.


Member Function Documentation

def addParticle (   self,
  particle,
  particle1,
  particle2,
  particle3,
  particle4,
  charge,
  polarizability,
  aniso12,
  aniso34 
)

addParticle(self, particle, particle1, particle2, particle3, particle4, charge, polarizability, aniso12, aniso34) -> int

Add a Drude particle to which forces should be applied.

Parameters:
particle(int) the index within the System of the Drude particle
particle1(int) the index within the System of the particle to which the Drude particle is attached
particle2(int) the index within the System of the second particle used for defining anisotropic polarizability. This may be set to -1, in which case aniso12 will be ignored.
particle3(int) the index within the System of the third particle used for defining anisotropic polarizability. This may be set to -1, in which case aniso34 will be ignored.
particle4(int) the index within the System of the fourth particle used for defining anisotropic polarizability. This may be set to -1, in which case aniso34 will be ignored.
charge(double) The charge on the Drude particle
polarizability(double) The isotropic polarizability
aniso12(double) The scale factor for the polarizability along the direction defined by particle1 and particle2
aniso34(double) The scale factor for the polarizability along the direction defined by particle3 and particle4
Returns:
(int) the index of the particle that was added
def addScreenedPair (   self,
  particle1,
  particle2,
  thole 
)

addScreenedPair(self, particle1, particle2, thole) -> int

Add an interaction to the list of screened pairs.

Parameters:
particle1(int) the index within this Force of the first particle involved in the interaction
particle2(int) the index within this Force of the second particle involved in the interaction
thole(double) the Thole screening factor
Returns:
(int) the index of the screenedPair that was added
def getNumParticles (   self)

getNumParticles(self) -> int

Get the number of particles for which force field parameters have been defined.

def getNumScreenedPairs (   self)

getNumScreenedPairs(self) -> int

Get the number of special interactions that should be calculated differently from other interactions.

def getParticleParameters (   self,
  index 
)

Get the parameters for a Drude particle.

Parameters:
index(int) the index of the Drude particle for which to get parameters
Returns:
(int) the index within the System of the Drude particle
(int) the index within the System of the particle to which the Drude particle is attached
(int) the index within the System of the second particle used for defining anisotropic polarizability. This may be set to -1, in which case aniso12 will be ignored.
(int) the index within the System of the third particle used for defining anisotropic polarizability. This may be set to -1, in which case aniso34 will be ignored.
(int) the index within the System of the fourth particle used for defining anisotropic polarizability. This may be set to -1, in which case aniso34 will be ignored.
(double) The charge on the Drude particle
(double) The isotropic polarizability
(double) The scale factor for the polarizability along the direction defined by particle1 and particle2
(double) The scale factor for the polarizability along the direction defined by particle3 and particle4
def getScreenedPairParameters (   self,
  index 
)

Get the force field parameters for screened pair.

Parameters:
index(int) the index of the pair for which to get parameters
Returns:
(int) the index within this Force of the first particle involved in the interaction
(int) the index within this Force of the second particle involved in the interaction
(double) the Thole screening factor
def setParticleParameters (   self,
  index,
  particle,
  particle1,
  particle2,
  particle3,
  particle4,
  charge,
  polarizability,
  aniso12,
  aniso34 
)

Set the parameters for a Drude particle.

Parameters:
index(int) the index of the Drude particle for which to set parameters
particle(int) the index within the System of the Drude particle
particle1(int) the index within the System of the particle to which the Drude particle is attached
particle2(int) the index within the System of the second particle used for defining anisotropic polarizability. This may be set to -1, in which case aniso12 will be ignored.
particle3(int) the index within the System of the third particle used for defining anisotropic polarizability. This may be set to -1, in which case aniso34 will be ignored.
particle4(int) the index within the System of the fourth particle used for defining anisotropic polarizability. This may be set to -1, in which case aniso34 will be ignored.
charge(double) The charge on the Drude particle
polarizability(double) The isotropic polarizability
aniso12(double) The scale factor for the polarizability along the direction defined by particle1 and particle2
aniso34(double) The scale factor for the polarizability along the direction defined by particle3 and particle4
def setScreenedPairParameters (   self,
  index,
  particle1,
  particle2,
  thole 
)

Set the force field parameters for screened pair.

Parameters:
index(int) the index of the pair for which to get parameters
particle1(int) the index within this Force of the first particle involved in the interaction
particle2(int) the index within this Force of the second particle involved in the interaction
thole(double) the Thole screening factor
def updateParametersInContext (   self,
  context 
)

Update the particle and screened pair parameters in a Context to match those stored in this Force object.

This method provides an efficient method to update certain parameters in an existing Context without needing to reinitialize it. Simply call setParticleParameters() and setScreenedPairParameters() to modify this object's parameters, then call updateParametersInContext() to copy them over to the Context.

This method has several limitations. It can be used to modify the numeric parameters associated with a particle or screened pair (polarizability, thole, etc.), but not the identities of the particles they involve. It also cannot be used to add new particles or screenedPairs, only to change the parameters of existing ones.

usesPeriodicBoundaryConditions(self) -> bool

Returns whether or not this force makes use of periodic boundary conditions.

Returns:
(bool) true if nonbondedMethod uses PBC and false otherwise

Reimplemented from Force.


Member Data Documentation

Reimplemented from Force.


The documentation for this class was generated from the following file:
 All Classes Functions Variables