-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain-gnuplottex-fig5.gnuplot
20 lines (20 loc) · 1.01 KB
/
main-gnuplottex-fig5.gnuplot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
set terminal epslatex size 8.82092cm, 5.04108cm color solid
set output 'main-gnuplottex-fig5.tex'
binwidth=2
binwidth2=4
bin(x,width)=width*floor(x/width)
set format y2 '%g'
set label at graph 0.03,0.89 left "a)"
set ylabel "x Velocity $\\left[ \\SI{}{\\meter\\per\\second} \\right]$"
set y2label "AMD $\\left[ \\SI{}{\\gram\\per\\cubic\\centi\\meter} \\right]$ "
set key noautotitle
set xrange [-50:50]
set y2range [0:3]
set ytics -5,2.5,5
set ytics nomirror
set y2tics 0,1,4
set xlabel "z coordinate"
plot [][-6:6] 'DataDump/Shear/C16/0.5GPa/10m_s/fluid_mdp_z_s.dump1' u ($2-39.84732):($4) w l lt 1 axes x1y2,\
'DataDump/Shear/C16/0.5GPa/10m_s/vel_prof_x_s.dump1' u (bin($2-39.84732,binwidth2)):($4*100) smooth unique lt 1 dashtype 4 lw 5,\
'DataDump/Shear/C60/0.5GPa/10m_s/fluid_mdp_z_s.dump1' u ($2-37.16889):($4) w l lt 3 axes x1y2,\
'DataDump/Shear/C60/0.5GPa/10m_s/vel_prof_x_s.dump1' u (bin($2-37.16889,binwidth)):($4*100) smooth unique lt 3 dashtype 4 lw 5