-
Notifications
You must be signed in to change notification settings - Fork 0
/
dos.gp
89 lines (46 loc) · 1.59 KB
/
dos.gp
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
gnuplot
set terminal pngcairo color size 800,600 enhanced "Times New Roman,40.0"
set palette rgbformulae 33,13,10 negative
#set xtics ("{/Symbol G}" 0.00000,"K" 0.4226499,"M" 0.6339749,"{/Symbol G}" 1.0)
set style line 1 \
linecolor rgb 'blue' \
linetype 1 linewidth 3 \
pointtype 7 pointsize 1.5
set style line 2 \
linecolor rgb 'red' \
linetype 1 linewidth 3 \
pointtype 7 pointsize 1.5
set style line 3 \
linecolor rgb 'dark-green' \
linetype 1 linewidth 3 \
pointtype 7 pointsize 1.5
set style line 4 \
linecolor rgb 'black' \
linetype 1 linewidth 3 \
pointtype 7 pointsize 1.5
set style line 5 \
linecolor rgb 'grey' \
linetype 1 linewidth 3 \
pointtype 7 pointsize 1.5
set style line 6 \
linecolor rgb 'orchid' \
linetype 1 linewidth 3 \
pointtype 7 pointsize 1.5
set ylabel "DoS (electrons/eV)" font "Times-Roman,20"
set xlabel "Energy (eV)" font "Times-Roman,20"
set xrange[-5:5]
set tics font ", 20"
set output 'dos.png'
unset key
set arrow from 0.0, 0.0 to 0.0, 12 nohead dt 2 linewidth 2
efermi=-0.0067
#set yrange[0.5:2]
#set title '(a) Linear Polarization' font "Times-Roman,20"
plot './dos/DOS_0g.dat' u ($1-efermi):2 w lines linestyle 4 \
,'./dos/DOS_Ti.dat' u ($1-efermi):3 w lines linestyle 1 \
,'./dos/DOS_Ti.dat' u ($1-efermi):4 w lines linestyle 2 \
,'./dos/DOS_Ti.dat' u ($1-efermi):5 w lines linestyle 3 \
,'./dos/DOS_Br.dat' u ($1-efermi):3 w lines linestyle 5 \
,'./dos/DOS_Br.dat' u ($1-efermi):4 w lines linestyle 6 \
unset multiplot
q