-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Additional figure for SI of https://arxiv.org/abs/1708.04158
V and W coplotted with Schultz's Polaron radius r_f
- Loading branch information
Showing
2 changed files
with
31 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Thermal Pathways - vw vs rf, for MAPI-electron | ||
set terminal dumb | ||
|
||
FILE="MAPI-electron" | ||
prefix=FILE."-VW-vs-rf" | ||
|
||
set y2range [0:50] | ||
set yrange [0:25] | ||
set xrange [0:400] # beyond here just boring linear. Including 300K point. | ||
|
||
set xlabel "Temperature (K)" | ||
set ylabel "Variational parameters" | ||
set y2label "Schultz r_f (Å)" | ||
set y2tics | ||
|
||
p FILE.'.dat' u 1:($15*10**10) w lp axes x1y2 title "Polaron radius", \ | ||
'' u 1:6 w lp title "v", '' u 1:7 w lp title "w" | ||
load "gnuplot-render.gpt" | ||
|