Subversion Repositories svnkaklik

Rev

Details | Last modification | View Log

Rev Author Line No. Line
801 kaklik 1
set terminal png
2
 
3
set grid
4
 
5
set key above
6
set xlabel "Eb [J]"
7
set ylabel "E [J]"
8
set output "EEb.png"
9
plot "Freerunning.txt" using 3:8 with points title "Free running",  "Qswitching.txt" using 3:8 with points title "Q-switching"
10
 
11
set xlabel "Eb [J]"
12
set ylabel "time [ns]"
13
set logscale y 
14
set output "TEb.png"
15
plot "Freerunning_time.txt" using 1:2 with points title "Free running",  "Qswitching_time.txt" using 1:2 with points title "Q-switching"
16
 
17
set xlabel "Eb [J]"
18
set ylabel "Pstr [MW]"
19
set logscale y 
20
set output "PstrEb.png"
21
plot "Freerunning_time.txt" using 1:3 with points title "Free running",  "Qswitching_time.txt" using 1:3 with points title "Q-switching"
22
 
23
 
24
set xlabel "E [J]"
25
set ylabel "G [-]"
26
unset logscale y 
27
set output "GEin.png"
28
plot "Freerunning.txt" using 5:($8)/($5) with points title "Free running",  "Qswitching.txt" using 5:($8)/($5) with points title "Q-switching"
29