You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hoomd table potentials only take an r_min and an r_max (r_cut), and split the entire arrays provided for energy and force between them, so we need to make sure that the potential files are being sliced according to the r_cut used in the simulation. The table potentials (derived in MSIBI) might go out to r values larger than we may want to use in the sim, so we can't just pass in the whole column from these files (which is the current behavior).
Performing some array slicing in _create_hoomd_sim_from_snapshot should solve this issue.
The text was updated successfully, but these errors were encountered:
Hoomd table potentials only take an r_min and an r_max (r_cut), and split the entire arrays provided for energy and force between them, so we need to make sure that the potential files are being sliced according to the r_cut used in the simulation. The table potentials (derived in MSIBI) might go out to r values larger than we may want to use in the sim, so we can't just pass in the whole column from these files (which is the current behavior).
Performing some array slicing in
_create_hoomd_sim_from_snapshot
should solve this issue.The text was updated successfully, but these errors were encountered: