dashboard
repositories
filestore
activity
search
login
main
/
trisurf-ng
Trisurf Monte Carlo simulator
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
Added running status check.
Samo Penic
2016-03-15
34600bfcd7791fdc09ad7a03f5c2aa37b59dc42c
[trisurf-ng.git]
/
python
/
tsmgr
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/python3
from trisurf import trisurf
run1=trisurf.Runner(snapshot='snapshot.vtu')
run1.setMaindir(("N","k","V","Np","Nm"),("nshell","xk0","constvolswitch","npoly","nmono"))
run1.setSubdir("run0")
run1.start()
#run
print(run1)
run1.getStatistics()
print(run1.statistics)
#print(run1.tape)
#print(run1.tape.getValue('nshell'))