summaryrefslogtreecommitdiff
path: root/figs/fig_generator-times.gplot
blob: 34a44fdcc0601799132a6c5908b6c050d24011c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

set term epslatex size 3.417, 2.3
set output "fig_generator-times.tex"

set logscale xy

dataPlanarUni = "data/correlation-times/planar-uni.dat"
dataPlanarPert = "data/correlation-times/planar-pert.dat"

set nokey
set size ratio 1 / 1.61803398875

set xlabel '$|H|$'
set ylabel "$\\avg{s_{\\text{\\sc 1c}}}\\tau$"

set format x '$10^{%T}$'

plot dataPlanarUni using (column("H")):((column("L") == 32 ? column("t") : 1/0) * column("S") * exp(-log(column("L")) * (2))):(sqrt((column("dt")/column("t"))**2 + (column("dS")/column("S"))**2) * column("S") * exp(-log(column("L")) * (2))) with yerrorbars pt 0 lw 2 lc rgb "red",\
  dataPlanarUni using (column("H")):((column("L") == 32 ? column("t") : 1/0) * column("S") * exp(-log(column("L")) * (2))) with lines lc rgb "red",\
  dataPlanarPert using (column("H")):((column("L") == 32 ? column("t") : 1/0) * column("S") * exp(-log(column("L")) * (2))):(sqrt((column("dt")/column("t"))**2 + (column("dS")/column("S"))**2) * column("t") * column("S") * exp(-log(column("L")) * (2))) with yerrorbars pt 0 lw 2 lc rgb "green",\
  dataPlanarPert using (column("H")):((column("L") == 32 ? column("t") : 1/0) * column("S") * exp(-log(column("L")) * (2))) with lines lc rgb "green"