Metadynminer 0.8.3 | GitLocker.com Product

metadynminer 0.8.3

Last updated:

0 purchases

metadynminer 0.8.3 Image
metadynminer 0.8.3 Images

Free

Languages

Categories

Add to Cart

Description:

metadynminer 0.8.3

metadynminer.py



Metadynminer is a package designed to help you analyse output HILLS files from PLUMED metadynamics simulations.
It is inspired by existing Metadynminer package for R. It supports HILLS files with one, two or three collective variables.
All built-in functions can be customized with many parameters. You can learn more about that in the documentation.
There are also other predefined functions allowing you to for example to enhance your presentation with animations of your 3D FES or remove a CV from existing FES.
Quickstart: run in Binder
Click the icon bellow and wait (couple of minutes) for the container to build and started on public MyBinder.

Alternatively, for Metacentrum users, somewhat better resources are available:

Once in the Jupyterlab environment, upload your HILLS file and start the python_metadynminer.ipynb notebook.
Installation:
pip install metadynminer

or
conda install -c jan8be metadynminer

Sample code:
Load metadynminer:
import metadynminer

Load your HILLS file:
hillsfile = metadynminer.Hills(name="HILLS")

Compute the free energy surface using the fast Bias Sum Algorithm:
fes = metadynminer.Fes(hillsfile)

You can also use slower (but exact) algorithm to sum the hills and compute the free energy surface
with the option original=True. This algorithm was checked and it gives the same result
(to the machine level precision) as the PLUMED sum_hills function (for plumed v2.8.0).
fes2 = metadynminer.Fes(hillsfile, original=True)

Visualize the free energy surface:
fes.plot()

Visualize and save the picture to a file:
fes.plot(png_name="fes.png")

Find local minima on the FES, print them and save FES with minima as a picture:
minima = metadynminer.Minima(fes)
print(minima.minima)
minima.plot()

You can also plot free energy profile to see, how the differences between each minima were evolving
during the simulation. Convergence in the free energy profile suggests that the resulting free energy surface converged to correct values.
fep = metadynminer.FEProfile(minima, hillsfile)
fep.plot()

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product: (if this is empty don't purchase this product)

Customer Reviews

There are no reviews.