Skip to content

Commit

Permalink
fix plot scripts in finite temperature
Browse files Browse the repository at this point in the history
  • Loading branch information
k-yoshimi committed Dec 13, 2024
1 parent a0d443e commit 359a18c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 16 deletions.
8 changes: 3 additions & 5 deletions sample/03_finite_temperature/plot_c.plt
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,9 @@ set xl "temperature"
set yl "specific heat"

plot \
"spec_zero.dat" u (1/$1):2 w l lc "black" t"iTPS h_x=0.0", \
"QMC/spec-L32-G0.0.dat" u (1/$1):2 w yer lc "black" pt 5 t"QMC h_x=0.0", \
"spec_weak.dat" u (1/$1):2 w l lc "red" t"iTPS h_x=0.5", \
"QMC/spec-L32-G0.5.dat" u (1/$1):2 w yer lc "red" pt 5 t"QMC h_x=0.5", \
"QMC/spec-L32-G0.5.dat" u (1/$1):2:3 w yer lc "red" pt 5 t"QMC h_x=0.5", \
"spec_middle.dat" u (1/$1):2 w l lc "green" t"iTPS h_x=0.8", \
"QMC/spec-L32-G0.8.dat" u (1/$1):2 w yer lc "green" pt 5 t"QMC h_x=0.8", \
"QMC/spec-L32-G0.8.dat" u (1/$1):2:3 w yer lc "green" pt 5 t"QMC h_x=0.8", \
"spec_strong.dat" u (1/$1):2 w l lc "blue" t"iTPS h_x=2.0", \
"QMC/spec-L32-G2.0.dat" u (1/$1):2 w yer lc "blue" pt 5 t"QMC h_x=2.0", \
"QMC/spec-L32-G2.0.dat" u (1/$1):2:3 w yer lc "blue" pt 5 t"QMC h_x=2.0", \
8 changes: 3 additions & 5 deletions sample/03_finite_temperature/plot_e.plt
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,9 @@ set xl "temperature"
set yl "energy density"

plot \
"energy_zero.dat" u (1/$1):2 w l lc "black" t"iTPS h_x=0.0", \
"QMC/ene-L32-G0.0.dat" u (1/$1):2 w yer lc "black" pt 5 t"QMC h_x=0.0", \
"energy_weak.dat" u (1/$1):2 w l lc "red" t"iTPS h_x=0.5", \
"QMC/ene-L32-G0.5.dat" u (1/$1):2 w yer lc "red" pt 5 t"QMC h_x=0.5", \
"QMC/ene-L32-G0.5.dat" u (1/$1):2:3 w yer lc "red" pt 5 t"QMC h_x=0.5", \
"energy_middle.dat" u (1/$1):2 w l lc "green" t"iTPS h_x=0.8", \
"QMC/ene-L32-G0.8.dat" u (1/$1):2 w yer lc "green" pt 5 t"QMC h_x=0.8", \
"QMC/ene-L32-G0.8.dat" u (1/$1):2:3 w yer lc "green" pt 5 t"QMC h_x=0.8", \
"energy_strong.dat" u (1/$1):2 w l lc "blue" t"iTPS h_x=2.0", \
"QMC/ene-L32-G2.0.dat" u (1/$1):2 w yer lc "blue" pt 5 t"QMC h_x=2.0", \
"QMC/ene-L32-G2.0.dat" u (1/$1):2:3 w yer lc "blue" pt 5 t"QMC h_x=2.0", \
12 changes: 6 additions & 6 deletions sample/03_finite_temperature/plot_mx.plt
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ set ytics 0.1
set xlabel "T"
set ylabel "<M_x>"

set log x

set xrange [0.1:10.0]
set yrange [-0.01:0.5]

p [0.1:10] \
"magnetization_x_zero.dat" u (1/$1):2 w l lc "black" t "h_x = 0.0",\
"QMC/magx-L32-G0.0.dat" u (1/$1):2 w yer lc "black" pt 5 t "QMC h_x=0.0",\
p\
"magnetization_x_weak.dat" u (1/$1):2 w l lc "red" t "h_x = 0.5",\
"QMC/magx-L32-G0.5.dat" u (1/$1):2 w yer lc "red" pt 5 t "QMC h_x=0.5",\
"QMC/magx-L32-G0.5.dat" u (1/$1):2:3 w yer lc "red" pt 5 t "QMC h_x=0.5",\
"magnetization_x_middle.dat" u (1/$1):2 w l lc "green" t "h_x = 0.8",\
"QMC/magx-L32-G0.8.dat" u (1/$1):2 w yer lc "green" pt 5 t "QMC h_x=0.8",\
"QMC/magx-L32-G0.8.dat" u (1/$1):2:3 w yer lc "green" pt 5 t "QMC h_x=0.8",\
"magnetization_x_strong.dat" u (1/$1):2 w l lc "blue" t "h_x = 2.0",\
"QMC/magx-L32-G2.0.dat" u (1/$1):2 w yer lc "blue" pt 5 t "QMC h_x=2.0"
"QMC/magx-L32-G2.0.dat" u (1/$1):2:3 w yer lc "blue" pt 5 t "QMC h_x=2.0"

0 comments on commit 359a18c

Please sign in to comment.