1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
set term pngcairo size 1000, 800
set grid
f1(x) = a1*x+b1
fit f1(x) 'R(W).plot' using 1:2:3:4 xyerr via a1, b1
set output 'R(W).png'
set title "График зависимости сопротивления R от тепловой мощности W"
set xlabel "W, Дж"
set ylabel "R, Ом"
set label sprintf("A = %.5g\n B = %.5g", a1, b1) at graph 0.1, 0.9 front boxed
plot 'R(W).plot' using 1:2:3:4 with xyerrorbars notitle lc 0 pt 1 lw 2, \
f1(x) title "R(W)" lc rgb "red"
reset
f2(x) = a2*x+b2
fit f2(x) 'I_V(DP).plot' via a2, b2
set output 'I_V(DP).png'
set title "График зависимости плотности потока от разницы давлений"
set xlabel "P-P_0, Па"
set ylabel "I_V, м^3/с"
set label sprintf("A = %.5g\n B = %.5g", a2, b2) at graph 0.1, 0.9 front boxed
plot 'I_V(DP).plot' notitle lc 0 pt 1 lw 2, \
f2(x) title "I_V(dP)" lc rgb "red"
|