1066 |
kaklik |
1 |
set terminal png
|
|
|
2 |
set key under
|
|
|
3 |
|
|
|
4 |
set decimalsign ','
|
|
|
5 |
|
|
|
6 |
set xlabel "Voltage [V]"
|
|
|
7 |
|
|
|
8 |
set output "graf_Power_single_cell.png"
|
|
|
9 |
set ylabel "Power [W]"
|
|
|
10 |
set title "Single cell"
|
|
|
11 |
plot "hodnoty.txt" using 2:($1*$2) with points title "multi-Si Power", "" using ($4):($3*$4) with points title "mono-Si Power"
|
|
|
12 |
|
|
|
13 |
set title "Multi cell"
|
|
|
14 |
set output "graf_Power.png"
|
|
|
15 |
plot "hodnoty.txt" using ($6):($5*$6) with points title "amorph-Si", "" using ($8):($7*$8) with points title "Organic"
|
|
|
16 |
|
|
|
17 |
|
|
|
18 |
set output "grafVA_single_cell.png"
|
|
|
19 |
set ylabel "Current [A]"
|
|
|
20 |
|
|
|
21 |
set logscale y
|
|
|
22 |
#set logscale x
|
|
|
23 |
|
|
|
24 |
plot "hodnoty.txt" using 2:1 with points title "multi-Si", "" using 4:3 with points title "mono-Si"
|
|
|
25 |
|
|
|
26 |
set output "grafVA_multi_cell.png"
|
|
|
27 |
plot "hodnoty.txt" using 6:5 with points title "amorph-Si", "" using 8:7 with points title "Organic"
|