-
Notifications
You must be signed in to change notification settings - Fork 0
/
monolayers-optics.gp
86 lines (42 loc) · 1.67 KB
/
monolayers-optics.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
gnuplot
set terminal pngcairo color size 1600,800 enhanced "Times New Roman,40.0"
set palette rgbformulae 33,13,10 negative
set style line 1 \
linecolor rgb 'blue' \
linetype 1 linewidth 3 \
pointtype 7 pointsize 1.0
set style line 2 \
linecolor rgb 'red' \
linetype 1 linewidth 5 \
pointtype 7 pointsize 1.0
set style line 3 dt '-' \
linecolor rgb 'blue' \
linetype 1 linewidth 3 \
pointtype 7 pointsize 1.0
set style line 4 dt '-' \
linecolor rgb 'red' \
linetype 1 linewidth 5 \
pointtype 7 pointsize 1.0
set ylabel "Absorption Coefficient (10^{4} cm^{-1})" font "Times-Roman,20"
#set xlabel "Energy-Efermi (eV)" font "Times-Roman,20"
set xrange[0.5:4]
set tics font ", 20"
set output 'optics_mono.png'
unset key
set multiplot layout 1,2
#set yrange[0.9:1.8]
set title '(a) Black Phosphorene monolayer' font "Times-Roman,20"
plot './black-mono/out/bse_absorption_coef.dat' u ($1):($2/1E4) w lines linestyle 1 \
,'./black-mono/out/bse_absorption_coef.dat' u ($1):($3/1E4) w lines linestyle 2 \
,'./black-mono/out/sp_absorption_coef.dat' u ($1):($2/1E4) w lines linestyle 3 \
,'./black-mono/out/sp_absorption_coef.dat' u ($1):($3/1E4) w lines linestyle 4 \
#unset ylabel
#unset
#set yrange[0.7:1.9]
set title '(b) Blue Phosphorene monolayer' font "Times-Roman,20"
plot './blue-mono/out/bse_absorption_coef.dat' u ($1):($2/1E4) w lines linestyle 1 \
,'./blue-mono/out/bse_absorption_coef.dat' u ($1):($3/1E4) w lines linestyle 2 \
,'./blue-mono/out/sp_absorption_coef.dat' u ($1):($2/1E4) w lines linestyle 3 \
,'./blue-mono/out/sp_absorption_coef.dat' u ($1):($3/1E4) w lines linestyle 4 \
unset multiplot
q