Subversion Repositories svnkaklik

Rev

Rev 770 | 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
 
773 kaklik 12
set ylabel "I [mA]"
13
set output "PIN_780nm.png"
14
plot "PIN_780nm.txt" using 1:2 with points title "0,26 mW"
15
 
16
set output "PIN_650nm.png"
17
plot "PIN_650nm.txt" using 1:2 with points title "0,26 mW"
18
 
19
 
769 kaklik 20
set key above
21
set xlabel "U [V]"
22
set ylabel "I [mA]"
23
set output "VA_R.png"
24
plot "VA_R.txt" using 1:3 with points title "0,26 mW",  "" using 1:4 with points title "0,022 mW"
25
 
26
unset logscale xy
27
set output "VA_PIN_zaverny.png"
770 kaklik 28
set xrange [-10.0:0]
29
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"
30
 
769 kaklik 31
set output "VA_PIN_propustny.png"
770 kaklik 32
set xrange [0.3:1.6]
33
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 34
 
35
 
36
set key above
37
unset logscale xy
38
set xlabel "U [V]"
39
set ylabel "I [mA]"
40
set y2label "P [mW]"
41
set y2range [0:17]
42
set y2tics
43
set xrange [0.3:0.6]
44
set output "PIN_photovoltanic.png"
45
plot "PIN_photovoltanic.txt" using 1:2 with points title "Proud" axes x1y1,  "" using 1:3 with points title "Výkon" axes x1y2
46
 
773 kaklik 47
unset y2label
48
unset y2tics
769 kaklik 49
set xrange [0.022:3]
50
set yrange [0.05:25]
51
set logscale xy 
52
set key off
53
set xlabel "P [mW]"
54
set ylabel "Ice [mA]"
55
set output "ITP.png"
56
plot "ITP.txt" using 1:3 with points
57