High Efficiency Configuration Space Sampler
Project description
HECSS
High Efficiency Configuration Space Sampler
HECSS is a Markow chain Monte-Carlo, configuration space sampler using Metropolis-Hastings algorithm for probablity distribution sampling. It provides an alternative way to create representations of systems at thermal equilibrium without running a very expensive molecular dynamics simulation. The theoretical foundation of the code are presented in the section Background in the Documentation. More detailed examples are included in the LAMMPS and VASP tutorials.
A very short example
Minimal example using LAMMPS potential from the asap3 package and OpenKIM database. Here we will sample the thermodynamic distribution of 3C-SiC crystal at 300K. We start by importing required modules, define the crystal and energy/forces calculator, run the sampler and finally plot the energy distribution.
#asap
from ase.build import bulk
import asap3
from hecss.monitor import plot_stats
Then we define the crystal and interaction model used in the calculation. In this case we use 3x3x3 supercell of the SiC crystal in zincblende structure and describe the interaction using LAMMPS potential from the OpenKIM database and ASAP3 implementation of the calculator.
#asap
model = 'Tersoff_LAMMPS_ErhartAlbe_2005_SiC__MO_903987585848_003'
cryst = bulk('SiC', crystalstructure='zincblende', a=4.38120844, cubic=True).repeat((3,3,3))
cryst.set_calculator(asap3.OpenKIMcalculator(model))
Then we define the sampler parameters (N -- number of samples, T -- temperature) and run it.
#asap
T = 300
N = 1_000
samples = HECSS(cryst, asap3.OpenKIMcalculator(model), T).generate(N)
And finally we plot the histogram of the resulting energy distribution which corresponds to the thermal equilibrium distribution.
#asap
plot_stats(samples, T)
Install
The HECSS package is avaliable on pypi (the conda package will follow shortly). Installation is simple, but requires a number of other packages to be installed as well. Package menagers handle these dependencies automatically. It is advisable to install in a dedicated virtual environment e.g.:
python3 -m venv venv
. venv/bin/activate
then install with pip
:
pip install hecss
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file hecss-0.3.11.tar.gz
.
File metadata
- Download URL: hecss-0.3.11.tar.gz
- Upload date:
- Size: 28.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/0.0.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f30411a6a83ccdb607d7a6b1a0bdc9c1d0ed703ee962ca4f17d5c5b256110a24 |
|
MD5 | 67592e2e1e7ccfc83be409739b8c8060 |
|
BLAKE2b-256 | 8ed9f84fcfd182baf07eaf2dc00505c10a5e9c08ce56bfd8f8dba46894b8c210 |
File details
Details for the file hecss-0.3.11-py3-none-any.whl
.
File metadata
- Download URL: hecss-0.3.11-py3-none-any.whl
- Upload date:
- Size: 36.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/0.0.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 713af8cdd8bcaa170130aefeba52848e9681ffa940eeb0ec260cf6b056803320 |
|
MD5 | d11e76025f5834ac921155f73514d519 |
|
BLAKE2b-256 | e5a785fd18650731df4dbf5961cc40fd54c37d71d220d60793099da08f8f4116 |