mirror of
https://github.com/ParticulateFlow/LPP.git
synced 2025-12-08 06:37:46 +00:00
add from __future__ import print statement -> print() function xrange -> range map() -> list(map()) range() -> list(range()) StandardError -> Exception
12 lines
215 B
Python
12 lines
215 B
Python
# simple test of ensight tool
|
|
# requires files/dump.micelle.*
|
|
# creates tmp*.case, etc
|
|
|
|
d = dump("files/dump.micelle")
|
|
e = ensight(d)
|
|
e.one()
|
|
e.many()
|
|
e.single(0)
|
|
|
|
print("all done ... type CTRL-D to exit Pizza.py")
|