File: demo.py

package info (click to toggle)
lammps 0~20161109.git9806da6-7
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 248,460 kB
  • ctags: 80,635
  • sloc: cpp: 701,185; python: 33,420; fortran: 26,434; ansic: 11,340; sh: 6,108; perl: 4,104; makefile: 2,891; xml: 2,590; f90: 1,690; objc: 238; lisp: 169; tcl: 61; csh: 16; awk: 14
file content (54 lines) | stat: -rwxr-xr-x 1,303 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/usr/bin/env python -i
# preceeding line should have path for Python on your machine

# demo.py
# Purpose: illustrate use of many library interface commands
# Syntax:  demo.py
#          uses in.demo as LAMMPS input script

from __future__ import print_function
import sys

# parse command line

argv = sys.argv
if len(argv) != 1:
  print("Syntax: demo.py")
  sys.exit()

from lammps import lammps
lmp = lammps()

# test out various library functions after running in.demo

lmp.file("in.demo")

print("\nPython output:")

natoms = lmp.extract_global("natoms",0)
mass = lmp.extract_atom("mass",2)
x = lmp.extract_atom("x",3)
print("Natoms, mass, x[0][0] coord =",natoms,mass[1],x[0][0])

temp = lmp.extract_compute("thermo_temp",0,0)
print("Temperature from compute =",temp)

eng = lmp.extract_variable("eng",None,0)
print("Energy from equal-style variable =",eng)

vy = lmp.extract_variable("vy","all",1)
print("Velocity component from atom-style variable =",vy[1])

vol = lmp.get_thermo("vol")
print("Volume from get_thermo = ",vol)

natoms = lmp.get_natoms()
print("Natoms from get_natoms =",natoms)

xc = lmp.gather_atoms("x",1,3)
print("Global coords from gather_atoms =",xc[0],xc[1],xc[31])

xc[0] = xc[0] + 1.0
lmp.scatter_atoms("x",1,3,xc)

print("Changed x[0][0] via scatter_atoms =",x[0][0])