We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d113722 commit 3b25c5bCopy full SHA for 3b25c5b
.gitignore
@@ -1,3 +1,4 @@
1
*.pyc
2
*.py~
3
-*.csv
+*.csv
4
+*.png
makefile
@@ -1,7 +1,18 @@
+example:
+ echo "Running on 3 cores"
+ mpirun -n 3 python pysrim.py --numIons=15 --ionEnergy=100000 --elementIon=Se -o example.csv
+ echo "Output is file example.csv"
5
+ echo "Run: disctibution.py example.csv example.png to create plot"
6
clean:
- rm -f *.pyc *~ temp.csv
7
+ rm -f *.pyc *~ temp.csv temp.png
8
test:
9
echo "Test takes 30 minutes..."
10
python timing.py
11
+plot:
12
+ mpirun -n 4 python pysrim.py -o --numIons=10 temp.csv
13
+ python distribution.py temp.csv temp.png
14
+ echo "plot is named temp.png"
15
+ display temp.png
16
+
17
release: clean
18
cd ..; tar -zcvf pysrim.tgz pysrim; mv pysrim.tgz pysrim/.
0 commit comments