Package ffx.openmm.drude
Class DrudeLangevinIntegrator
java.lang.Object
ffx.openmm.Integrator
ffx.openmm.drude.DrudeIntegrator
ffx.openmm.drude.DrudeLangevinIntegrator
This Integrator simulates systems that include Drude particles. It applies two different Langevin
thermostats to different parts of the system. The first is applied to ordinary particles (ones that
are not part of a Drude particle pair), as well as to the center of mass of each Drude particle pair.
A second thermostat, typically with a much lower temperature, is applied to the relative internal
displacement of each pair.
This integrator can optionally set an upper limit on how far any Drude particle is ever allowed to get from its parent particle. This can sometimes help to improve stability. The limit is enforced with a hard wall constraint. By default the limit is set to 0.02 nm.
This Integrator requires the System to include a DrudeForce, which it uses to identify the Drude particles.
-
Field Summary
Fields inherited from class ffx.openmm.Integrator
pointer
-
Constructor Summary
ConstructorsConstructorDescriptionDrudeLangevinIntegrator
(double stepSize, double temperature, double friction, double drudeTemperature, double drudeFriction) Create a DrudeLangevinIntegrator. -
Method Summary
Modifier and TypeMethodDescriptiondouble
Compute the instantaneous temperature of the Drude system, measured in Kelvin.double
Compute the instantaneous temperature of the System, measured in Kelvin.void
destroy()
Destroy the integrator.double
Get the friction coefficient which determines how strongly the internal coordinates of Drude particles are coupled to the heat bath (in inverse ps).double
Get the friction coefficient which determines how strongly the system is coupled to the main heat bath (in inverse ps).double
Get the temperature of the main heat bath (in Kelvin).void
setDrudeFriction
(double friction) Set the friction coefficient which determines how strongly the internal coordinates of Drude particles are coupled to the heat bath (in inverse ps).void
setFriction
(double friction) Set the friction coefficient which determines how strongly the system is coupled to the main heat bath (in inverse ps).void
setTemperature
(double temperature) Set the temperature of the main heat bath (in Kelvin).void
step
(int steps) Advance a simulation through time by taking a series of time steps.Methods inherited from class ffx.openmm.drude.DrudeIntegrator
getDrudeTemperature, getMaxDrudeDistance, getRandomNumberSeed, setDrudeTemperature, setMaxDrudeDistance, setRandomNumberSeed
Methods inherited from class ffx.openmm.Integrator
getConstraintTolerance, getIntegrationForceGroups, getPointer, getStepSize, setConstraintTolerance, setIntegrationForceGroups, setPointer, setStepSize
-
Constructor Details
-
DrudeLangevinIntegrator
public DrudeLangevinIntegrator(double stepSize, double temperature, double friction, double drudeTemperature, double drudeFriction) Create a DrudeLangevinIntegrator.- Parameters:
stepSize
- the step size with which to integrator the system (in picoseconds)temperature
- the temperature of the main heat bath (in Kelvin)friction
- the friction coefficient which couples the system to the main heat bath (in inverse picoseconds)drudeTemperature
- the temperature of the heat bath applied to internal coordinates of Drude particles (in Kelvin)drudeFriction
- the friction coefficient which couples the system to the heat bath applied to internal coordinates of Drude particles (in inverse picoseconds)
-
-
Method Details
-
computeDrudeTemperature
public double computeDrudeTemperature()Compute the instantaneous temperature of the Drude system, measured in Kelvin. This is calculated based on the kinetic energy of the internal motion of Drude pairs and should remain close to the prescribed Drude temperature. -
computeSystemTemperature
public double computeSystemTemperature()Compute the instantaneous temperature of the System, measured in Kelvin. This is calculated based on the kinetic energy of the ordinary particles (ones not attached to a Drude particle), as well as the center of mass motion of the Drude particle pairs. It does not include the internal motion of the pairs. On average, this should be approximately equal to the value returned by getTemperature(). -
destroy
public void destroy()Destroy the integrator.This method releases the memory associated with the DrudeLangevinIntegrator object. After calling this method, the integrator should not be used.
- Overrides:
destroy
in classDrudeIntegrator
-
getDrudeFriction
public double getDrudeFriction()Get the friction coefficient which determines how strongly the internal coordinates of Drude particles are coupled to the heat bath (in inverse ps).- Returns:
- the friction coefficient, measured in 1/ps
-
getFriction
public double getFriction()Get the friction coefficient which determines how strongly the system is coupled to the main heat bath (in inverse ps).- Returns:
- the friction coefficient, measured in 1/ps
-
getTemperature
public double getTemperature()Get the temperature of the main heat bath (in Kelvin).- Returns:
- the temperature of the heat bath, measured in Kelvin
-
setDrudeFriction
public void setDrudeFriction(double friction) Set the friction coefficient which determines how strongly the internal coordinates of Drude particles are coupled to the heat bath (in inverse ps).- Parameters:
friction
- the friction coefficient, measured in 1/ps
-
setFriction
public void setFriction(double friction) Set the friction coefficient which determines how strongly the system is coupled to the main heat bath (in inverse ps).- Parameters:
friction
- the friction coefficient, measured in 1/ps
-
setTemperature
public void setTemperature(double temperature) Set the temperature of the main heat bath (in Kelvin).- Parameters:
temperature
- the temperature of the heat bath, measured in Kelvin
-
step
public void step(int steps) Advance a simulation through time by taking a series of time steps.- Overrides:
step
in classDrudeIntegrator
- Parameters:
steps
- the number of time steps to take
-