1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
mod test;

use rand::prelude::*;

use rand_distr::{Normal, Distribution};

use std::f64::consts::TAU as TWO_PI;

use crate::physics::single_chain::frc::thermodynamics::isometric::monte_carlo::cross;

pub fn random_configuration<const NUMBER_OF_LINKS: usize>(theta: &f64, dist: Normal<f64>, rng: &mut ThreadRng) -> [[f64; 3]; NUMBER_OF_LINKS]
{
    let mut lambda: f64 = 0.0;
    let mut phi: f64 = 0.0;
    let mut phi_cos: f64 = 0.0;
    let mut phi_sin: f64 = 0.0;
    let theta_cos: f64 = theta.cos();
    let theta_sin: f64 = theta.sin();
    let mut configuration = [[0.0; 3]; NUMBER_OF_LINKS];
    let mut position = [0.0; 3];
    let mut r = [1.0, 0.0, 0.0];
    let mut t = [0.0; 3];
    let mut u = [0.0; 3];
    let mut v = [0.0; 3];
    let mut u_normalization = 0.0;
    let mut r_n = [1.0, 0.0, 0.0];
    let mut r_normalization = 0.0;
    configuration.iter_mut().for_each(|coordinate|{
        lambda = dist.sample(rng);
        r_n = r;
        r_normalization = r_n.iter().map(|r_n_i| r_n_i * r_n_i).sum::<f64>().sqrt();
        r_n.iter_mut().for_each(|r_n_i| *r_n_i /= r_normalization);
        phi = TWO_PI * rng.gen::<f64>();
        phi_cos = phi.cos();
        phi_sin = phi.sin();
        t = std::array::from_fn(|_| rng.gen::<f64>());
        u = cross(&r_n, &t);
        u_normalization = u.iter().map(|u_i| u_i * u_i).sum::<f64>().sqrt();
        u.iter_mut().for_each(|u_i| *u_i /= u_normalization);
        v = cross(&r_n, &u);
        r.iter_mut().zip(r_n.iter().zip(u.iter().zip(v.iter()))).for_each(|(r_i, (r_n_i, (u_i, v_i)))|
            *r_i = lambda * ((u_i * phi_cos + v_i * phi_sin) * theta_sin + *r_n_i * theta_cos)
        );
        position.iter_mut().zip(r.iter()).for_each(|(position_i, r_i)|
            *position_i += r_i
        );
        coordinate.iter_mut().zip(position.iter()).for_each(|(coordinate_i, position_i)|
            *coordinate_i = *position_i
        );
    });
    configuration
}

pub fn random_nondimensional_end_to_end_length<const NUMBER_OF_LINKS: usize>(theta: &f64, dist: Normal<f64>, rng: &mut ThreadRng) -> f64
{
    random_configuration::<NUMBER_OF_LINKS>(theta, dist, rng)[NUMBER_OF_LINKS - 1].iter().map(|entry| entry * entry).sum::<f64>().sqrt()
}

pub fn nondimensional_equilibrium_radial_distribution<const NUMBER_OF_BINS: usize, const NUMBER_OF_LINKS: usize>(gamma_max: &f64, kappa: &f64, theta: &f64, number_of_samples: usize) -> ([f64; NUMBER_OF_BINS], [f64; NUMBER_OF_BINS])
{
    let mut rng = rand::thread_rng();
    let dist = Normal::new(1.0, 1.0/kappa.sqrt()).unwrap();
    let number_of_links_f64 = NUMBER_OF_LINKS as f64;
    let mut bin_edges = [0.0_f64; NUMBER_OF_BINS];
    bin_edges.iter_mut().enumerate().for_each(|(bin_index, bin_edge)|
        *bin_edge = gamma_max * (bin_index as f64 + 1.0)/(NUMBER_OF_BINS as f64)
    );
    let mut bin_counts = [0_u128; NUMBER_OF_BINS];
    let mut gamma: f64 = 0.0;
    (0..number_of_samples).for_each(|_|{
        gamma = random_nondimensional_end_to_end_length::<NUMBER_OF_LINKS>(theta, dist, &mut rng)/number_of_links_f64;
        for (bin_edge, bin_count) in bin_edges.iter().zip(bin_counts.iter_mut())
        {
            if &gamma > gamma_max
            {
                panic!()
            }
            if &gamma < bin_edge
            {
                *bin_count += 1;
                break
            }
        }
    });
    let normalization = gamma_max * (number_of_samples as f64)/(NUMBER_OF_BINS as f64);
    let mut bin_probabilities = [0.0_f64; NUMBER_OF_BINS];
    bin_probabilities.iter_mut().zip(bin_counts.iter()).for_each(|(bin_probability, bin_count)|
        *bin_probability = (*bin_count as f64)/normalization
    );
    let mut bin_centers = [0.0_f64; NUMBER_OF_BINS];
    bin_centers.iter_mut().enumerate().for_each(|(bin_index, bin_center)|
        *bin_center = gamma_max * (bin_index as f64 + 0.5)/(NUMBER_OF_BINS as f64)
    );
    (bin_centers, bin_probabilities)
}