Skip to content

Commit

Permalink
Merge branch 'main' into feat/equivator
Browse files Browse the repository at this point in the history
  • Loading branch information
ceriottm authored Sep 26, 2024
2 parents 006b235 + e738ed4 commit a0bf498
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions docs/src/onlinereso.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ In http://gle4md.org/ one can also obtain colored-noise parameters to
run Path Integral with Generalized Langevin Equation thermostat
(PI+GLE/PIGLET) calculations.

Several examples of usage of i-PI to perform advanced molecular simulations
can be found among the recipes of the
`atomistic cookbook <https://lab-cosmo.github.io/atomistic-cookbook/>`_.

Python resources
~~~~~~~~~~~~~~~~

Expand Down
2 changes: 2 additions & 0 deletions ipi/engine/smotion/dmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ def __init__(self, dmdff=""):
super(DMD, self).__init__()
self.dmdff = dmdff

self.mode = "dmd"

def step(self, step=None):
"""Updates driven md time step."""

Expand Down
2 changes: 2 additions & 0 deletions ipi/engine/smotion/metad.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ def __init__(self, metaff="", use_energy=False):
self.metaff = metaff
self.use_energy = use_energy

self.mode = "metad"

def bind(self, syslist, prng, omaker):
super(MetaDyn, self).bind(syslist, prng, omaker)

Expand Down

0 comments on commit a0bf498

Please sign in to comment.