|
|
./Examples/gnuplot
|
|
Linear_Curves.txt (666 B)
set xrange [-20.0:220.0]
set yrange [-100.0,0.0]
ramp(startDB,deltaDB,deltaTime,t)
=(t<0)?startDB:(t>deltaTime)?startDB+deltaDB:sta
set output 'result.png'
plot ramp(-100,75,200,x), ramp(-20,-14,100,x)
set terminal png small
...
|
|
SchwarzerStrahler.gnuplot (1919 B)
# Konstanten:
h=6.626e-34
k=1.381e-23
c=2.998e8
# Hilfsfunktionen:
hoch2 (x) = x*x
hoch3 (x) = x*x*x
...
|
|
|
statistics.gnuplot (230 B)
#!/Applications/gnuplot/pgnuplot
set title "Statistics"
set terminal png
set output 'stats.png'
set yrange [0:110]
plot 'stats.dat' using 3 with points,\
'stats.dat' using 4 with lines,\
...
|
|
VanDerWaals.gif (33 kB)
|
|
|
VanDerWaalsDemo.txt (235 B)
p(n,T,b,a,V) = ((n*8.3*T)/(V-(n*b)))-(a*n*n/(V*V
p_ideal(n,T,V) = (n*8.3*T)/V
p_30(V)=p(0.00180,303,0.0000893,0.797,V)
p_ideal_30(V)=p_ideal(0.00180,303,V)
set xrange [0:0.0000045]
set yrange [0:5400000]
plot p_30(x), p_ideal_30(x)
...
|
| |
|