repo.or.cz
/
qpms.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Plot empty lattice modes in lat2d_realfreqsvd.py
[qpms.git]
/
misc
/
processWfiles.py
blob
eca9291ef1b3c426e931df0349292cc4bccb2c1d
1
#!/usr/bin/env python3
2
3
import
sys
4
from
qpms
import
processWfiles_sameKs
5
6
npart
=
int
(
sys
.
argv
[
1
])
7
dest
=
sys
.
argv
[
2
]
8
srcs
=
sys
.
argv
[
3
:]
9
10
processWfiles_sameKs
(
srcs
,
dest
,
f
=
'd'
,
nparticles
=
npart
)
11