We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e26f53a commit 125e710Copy full SHA for 125e710
package/MDAnalysis/analysis/msd.py
@@ -468,7 +468,7 @@ def _conclude_non_linear(self):
468
# Looping over all the frames as if the referenced gets shifted frame to frame
469
for i in range(n_frames):
470
for j in range(i + 1, n_frames):
471
- delta_t = dump_times[j] - dump_times[i]
+ delta_t = self.times[j] - self.times[i]
472
# Compute displacement and squared displacement
473
disp = positions[j] - positions[i]
474
squared_disp = np.sum(disp**2, axis=1)
0 commit comments