GBSAOBCForce

class openmm.openmm.GBSAOBCForce(*args)

This class implements an implicit solvation force using the GBSA-OBC model.

To use this class, create a GBSAOBCForce object, then call addParticle() once for each particle in the System to define its parameters. The number of particles for which you define GBSA 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(). This will have no effect on Contexts that already exist unless you call updateParametersInContext().

When using this Force, the System should also include a NonbondedForce, and both objects must specify identical charges for all particles. Otherwise, the results will not be correct. Furthermore, if the nonbonded method is set to CutoffNonPeriodic or CutoffPeriodic, you should call setReactionFieldDielectric(1.0) on the NonbondedForce to turn off the reaction field approximation, which does not produce correct results when combined with GBSA.

__init__(self)GBSAOBCForce
__init__(self, other)GBSAOBCForce

Create a GBSAOBCForce.

Methods

__init__(-> GBSAOBCForce)

Create a GBSAOBCForce.

addParticle(self, charge, radius, scalingFactor)

Add the GBSA parameters for a particle.

getCutoffDistance(self)

Get the cutoff distance (in nm) being used for nonbonded interactions.

getForceGroup(self)

Get the force group this Force belongs to.

getName(self)

Get the name of this Force.

getNonbondedMethod(self)

Get the method used for handling long range nonbonded interactions.

getNumParticles(self)

Get the number of particles in the system.

getParticleParameters(self, index)

Get the force field parameters for a particle.

getSoluteDielectric(self)

Get the dielectric constant for the solute.

getSolventDielectric(self)

Get the dielectric constant for the solvent.

getSurfaceAreaEnergy(self)

Get the energy scale for the surface energy term, measured in kJ/mol/nm^2.

setCutoffDistance(self, distance)

Set the cutoff distance (in nm) being used for nonbonded interactions.

setForceGroup(self, group)

Set the force group this Force belongs to.

setName(self, name)

Set the name of this Force.

setNonbondedMethod(self, method)

Set the method used for handling long range nonbonded interactions.

setParticleParameters(self, index, charge, …)

Set the force field parameters for a particle.

setSoluteDielectric(self, dielectric)

Set the dielectric constant for the solute.

setSolventDielectric(self, dielectric)

Set the dielectric constant for the solvent.

setSurfaceAreaEnergy(self, energy)

Set the energy scale for the surface energy term, measured in kJ/mol/nm^2.

updateParametersInContext(self, context)

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

usesPeriodicBoundaryConditions(self)

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

Attributes

CutoffNonPeriodic

CutoffPeriodic

NoCutoff

thisown

The membership flag

property thisown

The membership flag

getNumParticles(self)int

Get the number of particles in the system.

addParticle(self, charge, radius, scalingFactor)int

Add the GBSA 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.

Parameters
  • charge (double) – the charge of the particle, measured in units of the proton charge

  • radius (double) – the GBSA radius of the particle, measured in nm

  • scalingFactor (double) – the OBC scaling factor for the particle

Returns

the index of the particle that was added

Return type

int

getParticleParameters(self, index)

Get the force field parameters for a particle.

Parameters

index (int) – the index of the particle for which to get parameters

Returns

  • charge (double) – the charge of the particle, measured in units of the proton charge

  • radius (double) – the GBSA radius of the particle, measured in nm

  • scalingFactor (double) – the OBC scaling factor for the particle

setParticleParameters(self, index, charge, radius, scalingFactor)

Set the force field parameters for a particle.

Parameters
  • index (int) – the index of the particle for which to set parameters

  • charge (double) – the charge of the particle, measured in units of the proton charge

  • radius (double) – the GBSA radius of the particle, measured in nm

  • scalingFactor (double) – the OBC scaling factor for the particle

getSolventDielectric(self)double

Get the dielectric constant for the solvent.

setSolventDielectric(self, dielectric)

Set the dielectric constant for the solvent.

getSoluteDielectric(self)double

Get the dielectric constant for the solute.

setSoluteDielectric(self, dielectric)

Set the dielectric constant for the solute.

getSurfaceAreaEnergy(self)double

Get the energy scale for the surface energy term, measured in kJ/mol/nm^2.

setSurfaceAreaEnergy(self, energy)

Set the energy scale for the surface energy term, measured in kJ/mol/nm^2.

getNonbondedMethod(self)OpenMM::GBSAOBCForce::NonbondedMethod

Get the method used for handling long range nonbonded interactions.

setNonbondedMethod(self, method)

Set the method used for handling long range nonbonded interactions.

getCutoffDistance(self)double

Get the cutoff distance (in nm) being used for nonbonded interactions. If the NonbondedMethod in use is NoCutoff, this value will have no effect.

Returns

the cutoff distance, measured in nm

Return type

double

setCutoffDistance(self, distance)

Set the cutoff distance (in nm) being used for nonbonded interactions. If the NonbondedMethod in use is NoCutoff, this value will have no effect.

Parameters

distance (double) – the cutoff distance, measured in nm

updateParametersInContext(self, context)

Update the particle 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() to modify this object’s parameters, then call updateParametersInContext() to copy them over to the Context.

The only information this method updates is the values of per-particle parameters. All other aspects of the Force (the nonbonded method, the cutoff distance, etc.) are unaffected and can only be changed by reinitializing the Context. Furthermore, this method cannot be used to add new particles, only to change the parameters of existing ones.

usesPeriodicBoundaryConditions(self)bool

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

Returns

true if force uses PBC and false otherwise

Return type

bool

getForceGroup(self)int

Get the force group this Force belongs to.

getName(self)std::string const &

Get the name of this Force. This is an arbitrary, user modifiable identifier. By default it equals the class name, but you can change it to anything useful.

setForceGroup(self, group)

Set the force group this Force belongs to.

Parameters

group (int) – the group index. Legal values are between 0 and 31 (inclusive).

setName(self, name)

Set the name of this Force. This is an arbitrary, user modifiable identifier. By default it equals the class name, but you can change it to anything useful.