Neibourlist issue #1881
Replies: 1 comment 5 replies
-
Yes, I expect changing the value of |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
import hoomd
import gsd.hoomd
import hoomd.snapshot
import hoomd.state
import numpy as np
import os
N =500
sigma = 0.5
epsilon = 1
KT = 1.0
L=17.5
runs=5e4
buffers=[0.2,0.3,0.4,0.6,0.8,1,2,3,5]
for Buffer in buffers:
os.makedirs('checktraj',exist_ok=True)
output=f'checktraj/check4_{Buffer}.gsd'
if os.path.exists(output):
os.remove(output)
This is my code as I change the neighbourlist parameter my trajectory changes. even though I have set check_dist=False still by changing buffer it changes trajectory and speed of simulation
Beta Was this translation helpful? Give feedback.
All reactions