diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2019-07-22 21:30:07 -0400 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2019-07-22 21:30:07 -0400 |
commit | 0d6994fb5b1a40b3dbf12c6e4cf47bbf3b8e82c4 (patch) | |
tree | 8ee5b0b6e583d6cdea6491c42b7222dadd946631 /fig-fit.gplot | |
parent | f0f8a131261f3be10ef0532a035d9447079cb33a (diff) | |
download | PRB_102_075129-0d6994fb5b1a40b3dbf12c6e4cf47bbf3b8e82c4.tar.gz PRB_102_075129-0d6994fb5b1a40b3dbf12c6e4cf47bbf3b8e82c4.tar.bz2 PRB_102_075129-0d6994fb5b1a40b3dbf12c6e4cf47bbf3b8e82c4.zip |
small changes, added draft title and abstract, gnuplot plots
Diffstat (limited to 'fig-fit.gplot')
-rw-r--r-- | fig-fit.gplot | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/fig-fit.gplot b/fig-fit.gplot new file mode 100644 index 0000000..f35fde7 --- /dev/null +++ b/fig-fit.gplot @@ -0,0 +1,27 @@ + +set terminal epslatex size 8.68cm, 5.5cm standalone +set output "fig-fit.tex" + +set tmargin 0.3 +set lmargin 7 +set rmargin 1.5 +set bmargin 3 + +set nokey +set xrange [-25:300] +set format x '\scriptsize $%g$' +set format y '\scriptsize $%g$' + +set arrow 1 from 17.26,graph 0 to 17.26,graph 1 nohead lw 3 lc 'red' dt 3 + +set xlabel '\footnotesize $T / \mathrm K$' +set ylabel '\footnotesize $\tilde\lambda_{\mathrm B_{1\mathrm g}} / \mathrm{GPa}$' offset 2 +set yrange [65.05:65.7] + +plot "data/c11mc12.dat" using 1:(100 * $2) with lines lw 3 lc 'medium-blue' + +lam(T) = 71.1083 - 0.0103972 * T + +plot lam(x) / (1 + 6.24582 / (1 + 0.0037839 * abs(x - 17.26)) / lam(x)) dt 4 lc 'goldenrod' lw 4 + + |