-
Notifications
You must be signed in to change notification settings - Fork 101
/
Copy pathpd.gnu
22 lines (21 loc) · 958 Bytes
/
pd.gnu
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
set term png
set grid
set title "Extraction from CPRESS field output"
set xlabel "Penetration in mm"
set ylabel "Pressure in MPa"
set xrange [-0.1:0.1]
set yrange [-1000:1000]
set key top left
set out "pd.png"
plot "s2s-lin.hist" using ($3/5-0.3):($5) title "s2s-lin" w lp,\
"s2s-tie.hist" using ($3/5-0.3):($5) title "s2s-tie" w lp,\
"n2s-exp.hist" using ($3/5-0.3):($5) title "n2s-exp" w lp,\
"n2s-lin.hist" using ($3/5-0.3):($5) title "n2s-lin" w lp,\
"n2s-tab.hist" using ($3/5-0.3):($5) title "n2s-tab" w lp
set out "ft.png"
set title "Extraction from RF history output"
plot "s2s-lin.txt" using ($1/5-0.3):($2/100) title "s2s-lin" w lp,\
"s2s-tie.txt" using ($1/5-0.3):($2/100) title "s2s-tie" w lp,\
"n2s-exp.txt" using ($1/5-0.3):($2/100) title "n2s-exp" w lp,\
"n2s-lin.txt" using ($1/5-0.3):($2/100) title "n2s-lin" w lp,\
"n2s-tab.txt" using ($1/5-0.3):($2/100) title "n2s-tab" w lp