File: runDynsf.sh

package info (click to toggle)
python-dynasor 2.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 22,008 kB
  • sloc: python: 5,263; sh: 20; makefile: 3
file content (54 lines) | stat: -rwxr-xr-x 545 bytes parent folder | download
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
#!/bin/sh

#
# Options
Q_BINS=21
TIME_WINDOW=500
MAX_FRAMES=10000
Q_POINTS=21

dt=50 # time difference between to frames in the trajectory file 

q=31.4159265359 # 2pi/a in nanometer^-1

TRAJECTORY="lammpsrun/dump_T10"
OUTPUT="outputs/dynasor_1Dchain"
INDEXFILE="index.1000"

dynasor -f "$TRAJECTORY" \
	--index=$INDEXFILE \
	--om=$OUTPUT.m \
	--op=$OUTPUT.pickle \
    --q-bins=$Q_BINS \
	--max-frames=$MAX_FRAMES \
	--nt=$TIME_WINDOW \
	--dt=$dt \
	--q-sampling="line" \
	--q-points=$Q_POINTS \
	--q-direction=$q,0,0