"devtools/vscode:/vscode.git/clone" did not exist on "6aeccb40c7bcf6315509fcb8c27ebd9744cf8e88"
Unverified Commit eec9cd69 authored by peastman's avatar peastman Committed by GitHub
Browse files

Merge pull request #2754 from peastman/benchmark

Updated benchmark script
parents 3fef456d 6a82ea51
This diff is collapsed.
......@@ -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