Bussi¶
- class hoomd.md.methods.thermostats.Bussi(kT, tau=0.0)¶
Bases:
Thermostat
The Bussi-Donadio-Parrinello thermostat.
- Parameters:
kT (hoomd.variant.variant_like) – Temperature set point for the thermostat .
tau (float) – Thermostat time constant . Defaults to 0.
Bussi
controls the system temperature by separately rescaling the velocity and angular momenta by the factor sampled from the canonical distribution.When
tau
is 0, the stochastic evolution of system is instantly thermalized and is given by:where is the instantaneous kinetic energy of the corresponding translational or rotational degrees of freedom, is the number of degrees of freedom, and is a random value sampled from the distribution :
When
tau
is non-zero, the kinetic energies decay to equilibrium with the given characteristic time constant and is given by:where is the step size and is a random value sampled from the normal distribution .
See also
Example:
bussi = hoomd.md.methods.thermostats.Bussi( kT=1.5, tau=simulation.operations.integrator.dt * 20 ) simulation.operations.integrator.methods[0].thermostat = bussi
- kT¶
Temperature set point for the thermostat .
Examples:
bussi.kT = 1.0
bussi.kT = hoomd.variant.Ramp(A=1.0, B=2.0, t_start=0, t_ramp=1_000_000)