Open emilyviolet opened 2 years ago
Pressure could also be interesting to display alongside volume.
The naive way of plotting mean-square displacement is a little bit too slow to plot in real-time. The way PyQtGraph seems to be set up, we'd need to store all the values of MSD up to the current time-step in order to view the whole time-series, either:
list
class). This is extremely slow.Option three is the most appealing of the bunch, but I need to think of a way to do this which is not horribly complicated and fragile.
The mean-square displacement (MSD) is a potentially useful way to quantify the kinematics of the system, especially once we start looking at colour flow. See, for example, the paper on Lennard-Jones-Gauss potentials in simple liquids. It's worth adding some code to the Fortran backend to calculate this, since it might be too expensive to do in Python.
It'd also be nice to be able to switch between viewing real-time plots of the MSD and RDF while the code is running.