-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththermoelectrics.gp
More file actions
81 lines (45 loc) · 1.79 KB
/
thermoelectrics.gp
File metadata and controls
81 lines (45 loc) · 1.79 KB
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
set terminal pngcairo color size 1000,1000
set palette rgbformulae 33,13,10 negative
set style line 1 \
linecolor rgb 'black' \
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 'blue' \
linetype 1 linewidth 2 \
pointtype 7 pointsize 1.5
set xrange[-1.5:1.5]
set xtics -1.5, 1.0, 1.5
set tics font "Times-Roman,20"
set lmargin 10
set format y "%.1f" # sempre 2 casas decimais
set format x "%.1f" # sempre 2 casas decimais
set output 'thermoelectrics.png'
set multiplot layout 2,2
set yrange[-1.5:1.5]
set ytics -1.5, 1.0, 1.5
set ylabel "Seebeck x10^{-3} (mV/K)" font "Times-Roman,20" offset -1.0,0
plot './out/seebeck_900.000_K.dat' u 1:($2*1000) w lines linestyle 2 title "x" \
,'./out/seebeck_900.000_K.dat' u 1:($3*1000) w lines linestyle 3 title "y" \
set yrange[0:3.5]
set ytics 0, 1.0, 3.5
set ylabel "{/Symbol s} X 10^{5}(1/{/Symbol W} m)" font "Times-Roman,20"
plot './out/elec_condutivity_900.000_K.dat' u 1:($2/100000) w lines linestyle 2 title "x" \
,'./out/elec_condutivity_900.000_K.dat' u 1:($3/100000) w lines linestyle 3 title "y" \
set xlabel "{/Symbol m}-E_{fermi} (eV)" font "Times-Roman,20"
set yrange[0:10]
set ytics 0, 2.0, 10
set ylabel "{/Symbol K}_{e}(W/m.K)" font "Times-Roman,20"
plot './out/electron_thermal_conductivity_900.000_K.dat' u 1:2 w lines linestyle 2 title "x" \
,'./out/electron_thermal_conductivity_900.000_K.dat' u 1:3 w lines linestyle 3 title "y" \
set yrange[0:1]
set ytics 0, 0.2, 1.0
set ylabel "ZT" font "Times-Roman,20"
plot './out/ZT_900.000_K.dat' u 1:2 w lines linestyle 2 title "x" \
,'./out/ZT_900.000_K.dat' u 1:3 w lines linestyle 3 title "y" \
unset multiplot
q