git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@5318 f3b2605a-c512-4ea7-a41b-209d697bcdaa

This commit is contained in:
sjplimp
2010-11-24 20:38:59 +00:00
parent 3ed80aea4d
commit ab7699eecd
5 changed files with 274 additions and 10 deletions

View File

@ -1,9 +1,9 @@
#!/usr/local/bin/python -i
# preceeding line should have path for Python on your machine
# vizplotgui.py
# Purpose: viz running LAMMPS simulation with plot and GUI
# Syntax: vizplotgui.py in.lammps Nfreq compute-ID
# vizplotgui_gl.py
# Purpose: viz running LAMMPS simulation via GL tool with plot and GUI
# Syntax: vizplotgui_gl.py in.lammps Nfreq compute-ID
# in.lammps = LAMMPS input script
# Nfreq = plot data point and viz shapshot every this many steps
# compute-ID = ID of compute that calculates temperature
@ -46,7 +46,7 @@ def update(ntimestep):
argv = sys.argv
if len(argv) != 4:
print "Syntax: vizplotgui.py in.lammps Nfreq compute-ID"
print "Syntax: vizplotgui_gl.py in.lammps Nfreq compute-ID"
sys.exit()
infile = sys.argv[1]