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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
#![deny(warnings)]
use super::*;
impl Spring {
pub fn new(wij: f64) -> Self {
assert!(wij.is_sign_positive(), "invalid {wij}");
Self { dij: 0.0, wij }
}
pub fn with_length(mut self, dij: f64) -> Self {
assert!(dij.is_sign_positive(), "invalid {dij}");
self.dij = dij;
self
}
pub fn energy_force(&self, displace: impl Into<Vector3f>, distance: impl Into<Option<f64>>) -> (f64, Vector3f) {
let pij = displace.into();
let rij = distance.into().unwrap_or_else(|| pij.norm());
let wij = self.wij;
let dij = self.dij;
let eij = 0.5 * wij * (rij - dij).powi(2);
let fij = wij * (rij - dij) * pij / rij;
(eij, fij)
}
}
#[test]
fn test_spring() {
let spring = Spring::new(1.0);
let (e, f) = spring.energy_force([1.0; 3], None);
approx::assert_relative_eq!(e, 1.5, epsilon = 1E-4);
let f_expected: Vector3f = [1.0; 3].into();
approx::assert_relative_eq!(f, f_expected, epsilon = 1E-4);
let spring = Spring::new(1.0).with_length(3f64.sqrt());
let (_, f) = spring.energy_force([1.0; 3], None);
assert_eq!(f.norm(), 0.0);
}
impl Connection {
pub fn new(spring: Spring, displace: impl Into<Array3>) -> Self {
Self {
spring,
displace: displace.into(),
distance: None,
}
}
pub fn set_displace(&mut self, displace: impl Into<Array3>) {
self.displace = displace.into();
}
pub fn set_distance(&mut self, distance: f64) {
self.distance = distance.into();
}
}
pub fn compute_elastic_contribution<'a, I>(env: I) -> (f64, Vector3f)
where
I: IntoIterator<Item = &'a Connection>,
{
let (esum, fsum) = env
.into_iter()
.map(|connection| connection.spring.energy_force(connection.displace, connection.distance))
.fold((0.0, [0.0; 3].into()), |acc, x| (acc.0 + x.0, acc.1 + x.1));
(esum / 2.0, fsum)
}
pub fn compute_elastic_energy_and_force_distance_space(
positions1: &[Array3],
positions2: &[Array3],
) -> (f64, Vec<Array3>) {
let n = positions1.len();
assert_eq!(positions2.len(), n);
let mut energy = 0.0;
let mut forces: Vec<Array3> = vec![];
let mut connections_list = create_pairwise_connections(&positions1);
for i in 0..n {
for (k, j) in (0..i).chain(i + 1..n).enumerate() {
let pi: Vector3f = positions2[i].into();
let pj: Vector3f = positions2[j].into();
let displace = pj - pi;
let rij = displace.norm();
let connection = &mut connections_list[i][k];
connection.set_distance(rij);
connection.set_displace(displace);
}
let connections = &connections_list[i];
let (e, f) = compute_elastic_contribution(connections);
energy += e;
forces.push(f.into());
}
(energy, forces)
}
fn create_pairwise_connections(positions: &[Array3]) -> Vec<Vec<Connection>> {
let mut connections_list = vec![];
let n = positions.len();
for i in 0..n {
let mut connections = vec![];
for j in (0..i).chain(i + 1..n) {
let pi: Vector3f = positions[i].into();
let pj: Vector3f = positions[j].into();
let displace = pj - pi;
let rij = displace.norm();
let spring = Spring::new(rij.powi(-2)).with_length(rij);
let connect = Connection::new(spring, displace);
connections.push(connect);
}
connections_list.push(connections);
}
connections_list
}
#[test]
fn test_distance_potential() -> Result<()> {
let mols = gchemol::io::read("./tests/files/md-traj-small.xyz")?.collect_vec();
let mol = &mols[0];
let positions1 = mol.positions().collect_vec();
let mol = &mols[1];
let positions2 = mol.positions().collect_vec();
let (energy, forces) = compute_elastic_energy_and_force_distance_space(&positions1, &positions2);
#[rustfmt::skip]
let f_expected = [[ -0.002955, -0.006938, 0.019315],
[ -0.000554, -0.005471, -0.001267],
[ -0.007219, -0.005921, -0.018780],
[ 0.015299, 0.022290, 0.002067],
[ -0.004571, -0.003960, -0.001336]];
approx::assert_relative_eq!(forces.to_matrix(), f_expected.to_matrix(), epsilon = 1E-4);
approx::assert_relative_eq!(energy, 0.001980439069872339, epsilon = 1E-4);
Ok(())
}