Skip to content

Commit

Permalink
Minor patch
Browse files Browse the repository at this point in the history
  • Loading branch information
JLittlef committed Feb 15, 2024
1 parent 911337a commit a33cdbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/openmm-runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
simulation.reporters.append(StateDataReporter(sys.argv[9], reprate, step=True,
potentialEnergy=True, temperature=True, volume=True))
nvtsteps=int(sys.argv[5])
pres=sys.argv[3]
pres=int(sys.argv[3])
simulation.step(nvtsteps)
system.addForce(MonteCarloBarostat(pres*bar, temp*kelvin))
simulation.context.reinitialize(preserveState=True)
Expand Down

0 comments on commit a33cdbc

Please sign in to comment.