"vscode:/vscode.git/clone" did not exist on "e78c723b993e800821ef19d9933ceb645a1cfbdb"
Commit 6a82ea51 authored by Peter Eastman's avatar Peter Eastman
Browse files

Updated benchmark script

parent 3fef456d
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -88,12 +88,13 @@ def runOneTest(testName, options):
dt = 0.005*unit.picoseconds
constraints = app.AllBonds
hydrogenMass = 4*unit.amu
integ = mm.LangevinIntegrator(300*unit.kelvin, friction, dt)
else:
dt = 0.002*unit.picoseconds
dt = 0.004*unit.picoseconds
constraints = app.HBonds
hydrogenMass = None
integ = mm.LangevinMiddleIntegrator(300*unit.kelvin, friction, dt)
system = ff.createSystem(pdb.topology, nonbondedMethod=method, nonbondedCutoff=cutoff, constraints=constraints, hydrogenMass=hydrogenMass)
integ = mm.LangevinIntegrator(300*unit.kelvin, friction, dt)
print('Step Size: %g fs' % dt.value_in_unit(unit.femtoseconds))
properties = {}
initialSteps = 5
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment