Subversion Repositories svnkaklik

Rev

Rev 769 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log

Rev Author Line No. Line
769 kaklik 1
set terminal png
2
 
3
set grid
4
 
5
set logscale xy 
6
set key off
7
set xlabel "P [mW]"
8
set ylabel "R [Ohm]"
9
set output "RP.png"
10
plot "RP.txt" using 1:4 with points title "0,26 mW"
11
 
12
set key above
13
set xlabel "U [V]"
14
set ylabel "I [mA]"
15
set output "VA_R.png"
16
plot "VA_R.txt" using 1:3 with points title "0,26 mW",  "" using 1:4 with points title "0,022 mW"
17
 
18
unset logscale xy
19
set output "VA_PIN_zaverny.png"
770 kaklik 20
set xrange [-10.0:0]
21
plot "VA_PIN.txt" using 1:2 with linespoints title "2,94 mW", "" using 1:3 with linespoints title "0,26 mW", "" using 1:4 with linespoints title "0 mW"
22
 
769 kaklik 23
set output "VA_PIN_propustny.png"
770 kaklik 24
set xrange [0.3:1.6]
25
plot "VA_PIN.txt" using 1:2 with linespoints title "2,94 mW", "" using 1:3 with linespoints title "0,26 mW","" using 1:4 with linespoints title "0 mW"
769 kaklik 26
 
27
 
28
set key above
29
unset logscale xy
30
set xlabel "U [V]"
31
set ylabel "I [mA]"
32
set y2label "P [mW]"
33
set y2range [0:17]
34
set y2tics
35
set xrange [0.3:0.6]
36
set output "PIN_photovoltanic.png"
37
plot "PIN_photovoltanic.txt" using 1:2 with points title "Proud" axes x1y1,  "" using 1:3 with points title "Výkon" axes x1y2
38
 
39
set xrange [0.022:3]
40
set yrange [0.05:25]
41
set logscale xy 
42
set key off
43
set xlabel "P [mW]"
44
set ylabel "Ice [mA]"
45
set output "ITP.png"
46
plot "ITP.txt" using 1:3 with points
47