-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplot.p
13 lines (13 loc) · 906 Bytes
/
plot.p
1
2
3
4
5
6
7
8
9
10
11
12
13
set autoscale
unset log
unset label
set title 'absolute thermal resistance and nonlinearity'
set xlabel 'Temp (k)'
set ylabel 'epsilon, resistance(k/pw)'
set logscale y
# set logscale x
#set yrange [-2:7]
set term jpeg
set output 'non_lineality.jpg'
# set arrow from 150,.01 to 150,10000 nohead
plot './plot.dat' using 1:(abs($2)) every ::0::6 with linespoint title "morse_T_low", './plot.dat' using 1:(abs($3)) every ::0::6 with linespoint title "morse_T_high", './plot.dat' using 1:(abs($4)) every ::6 with linespoint title "coupling_T_low", './plot.dat' using 1:(abs($5)) every ::6 with linespoint title "coupling_T_high", './plot.dat' using 1:(9.3/$6/160) with linespoint title "thermal resistance", './plot.dat' using 1:(abs($2)+abs($3)) every ::0::6 with linespoint title "T_low_abs_sum", './plot.dat' using 1:(abs($4)+abs($5)) every ::6 with linespoint title "T_high_abs_sum",