Subversion Repositories svnkaklik

Rev

Rev 604 | Details | Compare with Previous | Last modification | View Log

Rev Author Line No. Line
604 kaklik 1
set terminal postscript
2
set key off
3
 
4
set xlabel "dE [J]"
5
set ylabel "W [J]"
6
set output "carnot.ps"
7
f(x)=a*x+b
8
fit f(x) "carnot.txt" using 1:2 via a,b
9
plot "carnot.txt" using 1:2, f(x)
10
!ps2pdf carnot.ps
11
 
12
set key under
13
set xlabel "Th [K]"
14
set ylabel "Efficiency"
15
set output "peltier.ps"
16
#f(x)=a*x+b
17
#fit f(x) "peltier.txt" using 1:2 via a,b
18
plot "peltier.txt" using 1:2 title "Carnot", "" using 1:3 title "Peltier"
19
!ps2pdf peltier.ps