moved bias calculation methods to histogram and implemented cyclic conditions

This commit is contained in:
Daniel Bauer
2018-10-06 12:30:19 +02:00
parent c8b8e29c9c
commit 05c795b83c
5 changed files with 122 additions and 58 deletions

View File

@@ -18,6 +18,7 @@ pub struct Histogram {
impl Histogram {
pub fn new(first: usize, last: usize, num_points: u32, bins: Vec<f32>) -> Histogram {
assert_eq!(last-first+1, bins.len(), "histogram length does not match first/last.");
Histogram {first, last, num_points, bins}
}
@@ -61,15 +62,40 @@ pub struct HistogramSet {
pub kT: f32,
// histogram for each window
pub histograms: Vec<Histogram>
pub histograms: Vec<Histogram>,
// flag for cyclic reaction coordinates
pub cyclic: bool,
}
impl HistogramSet {
pub fn new(num_bins: usize, bin_width: f32, hist_min: f32, hist_max: f32, bias_x0: Vec<f32>, bias_fc: Vec<f32>, kT: f32, histograms: Vec<Histogram>) -> HistogramSet {
pub fn new(num_bins: usize, bin_width: f32, hist_min: f32, hist_max: f32, bias_x0: Vec<f32>, bias_fc: Vec<f32>, kT: f32, histograms: Vec<Histogram>, cyclic: bool) -> HistogramSet {
let num_windows = histograms.len();
HistogramSet{num_windows, num_bins, bin_width, hist_min, hist_max, bias_x0, bias_fc, kT, histograms}
HistogramSet{num_windows, num_bins, bin_width, hist_min, hist_max, bias_x0, bias_fc, kT, histograms, cyclic}
}
// Harmonic bias calculation: bias = 0.5*k(dx)^2
// if cyclic is true, lowest and highest bins are assumed to be
// neighbors
pub fn calc_bias(&self, bin: usize, window: usize) -> f32 {
let x = self.get_x_for_bin(bin);
let mut dx = (x-self.bias_x0[window]).abs();
if self.cyclic {
let hist_len = self.hist_max-self.hist_min;
if dx > 0.5*hist_len {
dx -= hist_len;
}
}
0.5*self.bias_fc[window]*dx*dx
}
// get center x value for a bin
pub fn get_x_for_bin(&self, bin: usize) -> f32 {
self.hist_min + self.bin_width * ((bin as f32) + 0.5)
}
}
impl fmt::Display for HistogramSet {
@@ -85,23 +111,92 @@ impl fmt::Display for HistogramSet {
#[cfg(test)]
mod tests {
use super::*;
use super::super::k_B;
fn build_hist() -> Histogram {
Histogram{
first: 5,
last: 7,
num_points: 5,
bins: vec![1.0,1.0,3.0]
}
Histogram::new(
5, // first
9, // last
22, // num_points
vec![1.0, 1.0, 3.0, 5.0, 12.0] // bins
)
}
fn build_hist_set() -> HistogramSet {
let h = build_hist();
HistogramSet::new(
7, // num bins
1.0, // bin width
0.0, // hist min
9.0, // hist max
vec![7.5], // x0
vec![10.0], // fc
300.0*k_B, // kT
vec![h], // hists
false // cyclic
)
}
#[test]
fn get_bin_count() {
let h = build_hist();
assert_eq!(3.0, h.get_bin_count(7).unwrap());
assert_eq!(3.0, h.get_bin_count(7).unwrap()); // twice for borrow
assert_eq!(1.0, h.get_bin_count(5).unwrap());
assert_eq!(None, h.get_bin_count(4));
assert_eq!(None, h.get_bin_count(8));
let expected = vec![None, Some(1.0), Some(1.0), Some(3.0), Some(5.0), Some(12.0), None];
let test_offset = 4;
for i in 4..10 {
match expected[i-test_offset] {
Some(x) => assert_eq!(x, h.get_bin_count(i).unwrap()),
None => assert!(h.get_bin_count(i) == None)
}
}
}
#[test]
fn calc_bias() {
let hs = build_hist_set();
// 7th element -> x=7.5, x0=7.5
assert_eq!(0.0, hs.calc_bias(7, 0));
// 8th element -> x=8.5, x0=7.5
assert_eq!(5.0, hs.calc_bias(8, 0));
// 9th element -> x=9.5, x0=7.5
assert_eq!(20.0, hs.calc_bias(9, 0));
// 1st element -> x=0.5, x0=7.5. non-cyclic!
assert_eq!(245.0, hs.calc_bias(0, 0));
}
#[test]
fn calc_bias_offset_cyclic() {
let mut hs = build_hist_set();
hs.cyclic = true;
// 7th element -> x=7.5, x0=7.5
assert_eq!(0.0, hs.calc_bias(7, 0));
// 8th element -> x=8.5, x0=7.5
assert_eq!(5.0, hs.calc_bias(8, 0));
// 9th element -> x=9.5, x0=7.5
assert_eq!(20.0, hs.calc_bias(9, 0));
// 1st element -> x=0.5, x0=7.5
// cyclic flag makes bin 0 neighboring bin 9, so the distance is actually 2
assert_eq!(20.0, hs.calc_bias(0, 0));
}
#[test]
fn get_x_for_bin() {
let hs = build_hist_set();
let expected: Vec<f32> = vec![0,1,2,3,4,5,6,7,8].iter()
.map(|x| *x as f32 + 0.5).collect();
for i in 0..9 {
assert_eq!(expected[i], hs.get_x_for_bin(i));
}
}
}