mirror of
https://github.com/dnlbauer/WHAM.git
synced 2026-09-10 22:25:31 +00:00
init
This commit is contained in:
325
src/lib.rs
Normal file
325
src/lib.rs
Normal file
@@ -0,0 +1,325 @@
|
||||
#![allow(non_snake_case)]
|
||||
|
||||
#[macro_use]
|
||||
extern crate scan_fmt;
|
||||
|
||||
pub mod io;
|
||||
pub mod histogram;
|
||||
|
||||
use std::error::Error;
|
||||
use std::result::Result;
|
||||
use histogram::{HistogramSet,Histogram};
|
||||
use std::f32;
|
||||
use std::fmt;
|
||||
|
||||
#[allow(non_upper_case_globals)]
|
||||
static k_B: f32 = 0.0083144621; // kJ/mol*K
|
||||
|
||||
// Application config
|
||||
#[derive(Debug)]
|
||||
pub struct Config {
|
||||
pub metadata_file: String,
|
||||
pub hist_min: f32,
|
||||
pub hist_max: f32,
|
||||
pub num_bins: usize,
|
||||
pub verbose: bool,
|
||||
pub tolerance: f32,
|
||||
pub max_iterations: usize,
|
||||
pub temperature: f32,
|
||||
}
|
||||
|
||||
impl fmt::Display for Config {
|
||||
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
||||
write!(f, "Metadata={}, hist_min={}, hist_max={}, bins={}\nverbose={}, tolerance={}, iterations={}, temperature={}" , self.metadata_file, self.hist_min,
|
||||
self.hist_max, self.num_bins, self.verbose, self.tolerance,
|
||||
self.max_iterations, self.temperature)
|
||||
}
|
||||
}
|
||||
|
||||
// Checks for convergence between two WHAM iterations. WHAM is considered as
|
||||
// converged if the absolute difference for the calculated bias offset is
|
||||
// smaller then a tolerance value for each simulation window
|
||||
fn is_converged(old_F: &Vec<f32>, new_F: &Vec<f32>, tolerance: f32) -> bool {
|
||||
for i in 0..old_F.len() {
|
||||
let error = (new_F[i] - old_F[i]).abs();
|
||||
if error > tolerance {
|
||||
return false
|
||||
}
|
||||
}
|
||||
true
|
||||
}
|
||||
|
||||
// Harmonic bias calculation: bias = 0.5*k(dx)^2
|
||||
fn calc_bias(k: f32, x0: f32, x: f32) -> f32 {
|
||||
let dx = (x-x0).abs();
|
||||
0.5*k*dx*dx
|
||||
}
|
||||
|
||||
// get center x value for a bin
|
||||
fn get_x_for_bin(bin: usize, min: f32, width: f32) -> f32 {
|
||||
min + width * ((bin as f32) + 0.5)
|
||||
}
|
||||
|
||||
// estimate the probability of a bin of the histogram set based on F values
|
||||
// This evaluates the first WHAM equation for each bin
|
||||
fn calc_bin_probability(bin: usize, hs: &HistogramSet, F: &Vec<f32>) -> f32 {
|
||||
let mut denom_sum = 0.0;
|
||||
let mut bin_count = 0.0;
|
||||
let x = get_x_for_bin(bin, hs.hist_min, hs.bin_width);
|
||||
for window in 0..hs.num_windows {
|
||||
let h: &Histogram = &hs.histograms[window];
|
||||
if let Some(count) = h.get_bin_count(bin) {
|
||||
bin_count += count;
|
||||
}
|
||||
let bias = calc_bias(hs.bias_fc[window], hs.bias_x0[window], x);
|
||||
let bias_offset = ((F[window] - bias) / hs.kT).exp();
|
||||
denom_sum += (h.num_points as f32) * bias_offset;
|
||||
}
|
||||
bin_count / denom_sum
|
||||
}
|
||||
|
||||
// estimate the bias offset F of the histogram based on given probabilities
|
||||
// This evaluates the second WHAM equation for each window
|
||||
fn calc_window_F(window: usize, hs: &HistogramSet, P: &Vec<f32>) -> f32 {
|
||||
let mut ln_sum = 0.0;
|
||||
for bin in 0..hs.num_bins {
|
||||
let x = get_x_for_bin(bin, hs.hist_min, hs.bin_width);
|
||||
let bias = calc_bias(hs.bias_fc[window], hs.bias_x0[window], x);
|
||||
ln_sum += P[bin] * (-bias/hs.kT).exp()
|
||||
}
|
||||
-hs.kT * ln_sum.ln()
|
||||
}
|
||||
|
||||
// One full WHAM iteration includes calculation of new probabilities P and
|
||||
// new bias offsets F based on previous bias offsets F_prev. This updates
|
||||
// the values in vectors F and P
|
||||
fn perform_wham_iteration(hs: &HistogramSet, F_prev: &Vec<f32>,F: &mut Vec<f32>, P: &mut Vec<f32>) {
|
||||
// reset bias offsets
|
||||
for window in 0..hs.num_windows {
|
||||
F[window] = 0.0;
|
||||
}
|
||||
|
||||
// evaluate first WHAM equation for each bin to
|
||||
// estimage probabilities based on previous offsets (F_prev)
|
||||
for bin in 0..hs.num_bins {
|
||||
P[bin] = calc_bin_probability(bin, hs, F_prev);
|
||||
}
|
||||
|
||||
// evaluate second WHAM equation for each window to
|
||||
// estimate new bias offsets from propabilities
|
||||
for window in 0..hs.num_windows {
|
||||
F[window] = calc_window_F(window, hs, P);
|
||||
}
|
||||
}
|
||||
|
||||
// get average difference between two bias offset sets
|
||||
fn diff_avg(F: &Vec<f32>, F_prev: &Vec<f32>) -> f32 {
|
||||
let mut F_sum = 0.0;
|
||||
for i in 0..F.len() {
|
||||
F_sum += (F[i]-F_prev[i]).abs()
|
||||
}
|
||||
F_sum / F.len() as f32
|
||||
}
|
||||
|
||||
|
||||
// calculate the normalized free energy from normalized probability values
|
||||
fn free_energy(hs: &HistogramSet, P: &mut Vec<f32>, A: &mut Vec<f32>) {
|
||||
// Normalize P
|
||||
let mut P_sum = 0.0;
|
||||
for bin in 0..hs.num_bins {
|
||||
P_sum += P[bin];
|
||||
}
|
||||
for bin in 0..hs.num_bins {
|
||||
P[bin] /= P_sum;
|
||||
}
|
||||
|
||||
// Free energy calculation
|
||||
for bin in 0..hs.num_bins {
|
||||
A[bin] = -hs.kT*P[bin].ln();
|
||||
}
|
||||
|
||||
// find min value
|
||||
let mut min: f32 = f32::MAX;
|
||||
for bin in 0..hs.num_bins {
|
||||
if A[bin] < min {
|
||||
min = A[bin]
|
||||
}
|
||||
}
|
||||
|
||||
// normalize A
|
||||
for bin in 0..hs.num_bins {
|
||||
A[bin] -= min;
|
||||
}
|
||||
}
|
||||
|
||||
pub fn run(cfg: &Config) -> Result<(), Box<Error>>{
|
||||
println!("{}", &cfg);
|
||||
|
||||
// read input data into the histograms object
|
||||
let histograms = io::read_data(&cfg).unwrap();
|
||||
println!("Input consists of {}",&histograms);
|
||||
|
||||
// allocate data arrays for performance
|
||||
let mut F_prev = vec![f32::INFINITY; histograms.num_windows];
|
||||
let mut F = vec![0.0; histograms.num_windows];
|
||||
let mut P = vec![f32::NAN; histograms.num_bins];
|
||||
let mut A = vec![f32::NAN; histograms.num_bins];
|
||||
|
||||
// perform WHAM until convergence
|
||||
let mut iteration = 0;
|
||||
while !is_converged(&F_prev, &F, cfg.tolerance) && iteration < cfg.max_iterations {
|
||||
iteration += 1;
|
||||
// store F values before the next iteration
|
||||
F_prev.copy_from_slice(&F[..]);
|
||||
|
||||
// perform wham iteration and update F
|
||||
perform_wham_iteration(&histograms, &F_prev, &mut F, &mut P);
|
||||
|
||||
// output some stats during calculation
|
||||
if iteration % 100 == 0 {
|
||||
println!("Iteration {}: dF={}", &iteration, &diff_avg(&F_prev, &F));
|
||||
}
|
||||
|
||||
// Dump free energy and bias offsets
|
||||
if iteration % 1000 == 0 {
|
||||
free_energy(&histograms, &mut P, &mut A);
|
||||
println!("#PMF");
|
||||
println!("#x\t\tFree Energy\t\tP(x)");
|
||||
for bin in 0..histograms.num_bins {
|
||||
let x = get_x_for_bin(bin, histograms.hist_min, histograms.bin_width);
|
||||
println!("{:9.5}\t{:9.5}\t{:9.5}", x, A[bin], P[bin]);
|
||||
}
|
||||
println!("#Bias offsets");
|
||||
println!("#Window\t\tF\t\tdF");
|
||||
for window in 0..histograms.num_windows {
|
||||
println!("{}\t{:9.5}\t{:8.8}", window, F[window], (F[window]-F_prev[window]).abs());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if iteration == cfg.max_iterations {
|
||||
println!("!!!!! WHAM not converged! (max iterations reached) !!!!!");
|
||||
}
|
||||
|
||||
|
||||
// println!("#Window\t\t F");
|
||||
// for window in 0..histograms.num_windows {
|
||||
// println!("#{}\t\t{}", window, F[window]);
|
||||
// }
|
||||
// let mut free_energy = vec![0.0; histograms.num_bins];
|
||||
// for bin in 0..histograms.num_bins {
|
||||
// let P = calc_bin_probability(bin, &histograms, &F);
|
||||
// free_energy[bin] = -histograms.kT * P.ln();
|
||||
// }
|
||||
// let mut min = &f32::MAX;
|
||||
// for bin in 0..histograms.num_bins {
|
||||
// if &free_energy[bin] < min {
|
||||
// min = &free_energy[bin]
|
||||
// }
|
||||
// }
|
||||
// println!("#x\t\tFree energy");
|
||||
// for bin in 0..histograms.num_bins {
|
||||
// let x = get_x_for_bin(bin, histograms.hist_min, histograms.bin_width);
|
||||
// let free_normalized = free_energy[bin] - min;
|
||||
// println!("{}\t\t{}", x, free_normalized);
|
||||
// }
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use super::histogram::{HistogramSet,Histogram};
|
||||
use std::f32;
|
||||
|
||||
#[test]
|
||||
fn is_converged() {
|
||||
let new = vec![1.0,1.0];
|
||||
let old = vec![0.95, 1.0];
|
||||
let tolerance = 0.1;
|
||||
let converged = super::is_converged(&old, &new, tolerance);
|
||||
assert!(converged);
|
||||
|
||||
let old = vec![0.8, 1.0];
|
||||
let converged = super::is_converged(&old, &new, tolerance);
|
||||
assert!(!converged);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn calc_bias() {
|
||||
let x0 = 10.0;
|
||||
let x = 5.0;
|
||||
let k = 500.0;
|
||||
assert_eq!(6250.0, super::calc_bias(k, x0, x));
|
||||
}
|
||||
|
||||
fn create_test_hs() -> HistogramSet {
|
||||
let h1 = Histogram::new(0, 2, 10, vec![3.0, 4.0, 3.0]);
|
||||
let h2 = Histogram::new(0, 3, 20, vec![3.0, 2.0, 5.0, 10.0]);
|
||||
HistogramSet::new(4, 1.0, 0.0, 4.0, vec![1.0, 2.0], vec![10.0, 10.0], 2.479, vec![h1, h2])
|
||||
}
|
||||
|
||||
fn assert_near(a: f32, b: f32, tolerance: f32) {
|
||||
let d = (a-b).abs();
|
||||
assert!(d <= tolerance, "Values are not close: {}, {}, d={}", &a, &b, &d);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn calc_bias_offset() {
|
||||
let hs = create_test_hs();
|
||||
let probability = vec!(0.959, 0.331, 0.656, 46.750);
|
||||
let expected = vec!(0.596, -0.250);
|
||||
for window in 0..hs.num_windows {
|
||||
let F = super::calc_window_F(window, &hs, &probability);
|
||||
assert_near(expected[window], F, 0.001);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn calc_bin_probability() {
|
||||
let hs = create_test_hs();
|
||||
let F = vec!(0.0, 0.0);
|
||||
let expected = vec!(0.959, 0.331, 0.656, 46.750);
|
||||
for b in 0..4 {
|
||||
let p = super::calc_bin_probability(b, &hs, &F);
|
||||
assert_near(expected[b], p, 0.001);
|
||||
}
|
||||
|
||||
let F = vec!(1.0, 1.0);
|
||||
let expected = vec!(0.641, 0.221, 0.439, 31.232);
|
||||
for b in 0..4 {
|
||||
let p = super::calc_bin_probability(b, &hs, &F);
|
||||
assert_near(expected[b], p, 0.001);
|
||||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn get_x_for_bin() {
|
||||
let min = 0.0;
|
||||
let width = 1.0;
|
||||
let expected = vec!(0.5, 1.5, 2.5, 3.5, 4.5);
|
||||
for i in 0..5 {
|
||||
let x = super::get_x_for_bin(i, min, width);
|
||||
assert_eq!(expected[i], x);
|
||||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_perform_wham_iteration() {
|
||||
let hs = create_test_hs();
|
||||
let prev_F = vec![0.0; hs.num_windows];
|
||||
let mut F = vec![0.0; hs.num_windows];
|
||||
let mut P = vec![f32::NAN; hs.num_bins];
|
||||
super::perform_wham_iteration(&hs, &prev_F, &mut F, &mut P);
|
||||
let expected_F = vec!(0.596, -0.250);
|
||||
let expected_P = vec!(0.959, 0.331, 0.656, 46.750);
|
||||
for bin in 0..hs.num_bins {
|
||||
assert_near(expected_P[bin], P[bin], 0.01)
|
||||
}
|
||||
for window in 0..hs.num_windows {
|
||||
assert_near(expected_F[window], F[window], 0.01)
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user