1066 |
kaklik |
1 |
set terminal png
|
|
|
2 |
set key under
|
|
|
3 |
|
|
|
4 |
set decimalsign ','
|
|
|
5 |
|
|
|
6 |
set xlabel "Voltage [V]"
|
|
|
7 |
set ylabel "Current [A]"
|
|
|
8 |
|
|
|
9 |
set output "teplota_proud.png"
|
|
|
10 |
set title "Effect of temperature on a single monocrystal Si cell"
|
|
|
11 |
plot "teplota_31.txt" using 1:2 with points title "304 K", "teplota_62.txt" using 1:2 with points title "335 K", "teplota_80.txt" using 1:2 with points title "353 K", "teplota_100.txt" using 1:2 with points title "372 K", "teplota_115.txt" using 1:2 with points title "388 K"
|
|
|
12 |
|
|
|
13 |
set output "teplota_vykon.png"
|
|
|
14 |
set ylabel "Power [W]"
|
|
|
15 |
set title "Effect of temperature on a single monocrystal Si cell"
|
|
|
16 |
plot "teplota_31.txt" using 1:3 with points title "304 K", "teplota_62.txt" using 1:3 with points title "335 K", "teplota_80.txt" using 1:3 with points title "353 K", "teplota_100.txt" using 1:3 with points title "372 K", "teplota_115.txt" using 1:3 with points title "388 K"
|
|
|
17 |
|
|
|
18 |
set output "teplota_FF.png"
|
|
|
19 |
set xlabel "Temperature [°C]"
|
|
|
20 |
set ylabel "Fill Factor"
|
|
|
21 |
plot "zavislost_teplota.txt" using 1:2 with points
|
|
|
22 |
|
|
|
23 |
g(x)=k*x+q
|
|
|
24 |
|
|
|
25 |
set key off
|
|
|
26 |
|
|
|
27 |
set output "teplota_MPP.png"
|
|
|
28 |
set xlabel "Temperature [°C]"
|
|
|
29 |
set ylabel "MPP [W]"
|
|
|
30 |
plot "zavislost_teplota.txt" using 1:3 with points
|
|
|
31 |
|
|
|
32 |
|
|
|
33 |
set key on
|
|
|
34 |
fit g(x) "zavislost_teplota.txt" using 1:4 via k,q
|
|
|
35 |
|
|
|
36 |
|
|
|
37 |
set output "teplota_Uoc.png"
|
|
|
38 |
set xlabel "Temperature [°C]"
|
|
|
39 |
set ylabel "Uoc [V]"
|
|
|
40 |
plot "zavislost_teplota.txt" using 1:4 with points no title, g(x) title "-0.002 x + 0.61"
|