A fast solver for large scale MBAR/UWHAM equations
Project description
A Fast Solver for Large Scale MBAR/UWHAM Equations
The multistate Bennett acceptance ratio (MBAR) and unbinned weighted histogram analysis method (UWHAM) are widely imployed approaches to calculate free energies of multiple thermodynamcis states. They are routinely used in alchemical free energy calculations, umbrella sampling, and temperature/Hamiltonian replica exchange simulations to calculate free engies and potentials of mean force (PMF).
FastMBAR is a solver written in Python to solve large scale multistate Bennett acceptance ratio (MBAR)/unbinned weighted histogram analysis method (UWHAM) equations. Compared with the widely used python package pymbar, FastMBAR is 3 times faster on CPUs and more than two orders of magnitude faster on GPUs.
Installation
FastMBAR can be installed via conda or pip using the following commands:
-
using
conda:- If you want to install
FastMBARand dependent packages in the main conda environment, run the command:
conda install -c shawn_ding -c pytorch fastmbar. - If you want to install them in a specific conda environment, run the following commands:
conda create -n myenv_name
conda install -n myenv_name -c shawn_ding -c pytorch fastmbar,
where you can replacemyenv_namewith whatever name you want.
- If you want to install
-
using
pip:
pip install FastMBAR
Usage
The input to the MBAR/UWHAM equations are an energy (unitless) matrix and an integer array consisting of numbers of configurations sampled from states of interest.
Let's say that we are interested in calculating relative free energies of a system in M thermodynamics states.
The j th state has an energy function of Uj(x).
From each of the first m states, system configurations x are sampled based on Boltzmann distributions.
Let's assume that the number of configurations sampled from the j th state is nj, j = 1,2,...,m.
To use these configurations to calculate the relative free energies of the M states using MBAR, we need to prepare the following energy matrix U in the blue bracket:
Elements of the above matrix are energies of all the sampled configurations evaluated in all M states.
In addition to the energy matrix U, we also need an integer array v consisting of the numbers of configurations sampled from M states, i.e., v = (n1, n2, ..., nm, 0, 0, ..., 0).
The last M-m elements of the array v is zeros because no configurations are sample from those states.
With the energy matrix U and the number of configuration array v, we can use the following Python command to calculate the relative free energies of the M states:
# import the FastMBAR package
import FastMBAR
# construct a FastMBAR object with the energy matrix and the number of configuration array
mbar = FastMBAR.FastMBAR(energy = U, num_conf = v, cuda=False) # set cuda = True if you want to run the calcuation on GPUs
# calcualte free energies by solving the MBAR equations
F = mbar.calculate_free_energies(bootstrap=False)
# if you want to estimate the uncertainty, change the above command into
# F, F_std = mbar.calculate_free_energies(bootstrap=True)
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file FastMBAR-0.0.4.tar.gz.
File metadata
- Download URL: FastMBAR-0.0.4.tar.gz
- Upload date:
- Size: 7.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8e55ec3743c3bc33d9a0101e7c68a079a548c17111b131c4ac6184965836eaa1
|
|
| MD5 |
4fbaaf6c47e2e11b79d3646a326fc0be
|
|
| BLAKE2b-256 |
307517f300fdbefb46f7dababfae13758921c499bb539b908189e933374ab677
|
File details
Details for the file FastMBAR-0.0.4-py3-none-any.whl.
File metadata
- Download URL: FastMBAR-0.0.4-py3-none-any.whl
- Upload date:
- Size: 8.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ad72df9138fa25283fc1848ad9b47e5ecf7a507ab26538862ab721edde944dbf
|
|
| MD5 |
9b9be7fffde250189e9296a2a9811e85
|
|
| BLAKE2b-256 |
771b86b1900249820c9ab2400eda637535608002337e752efd7c647471e33e6e
|