source: TRACY3/trunk/tracy/gnuplot/dlinlat.plt @ 3

Last change on this file since 3 was 3, checked in by zhangj, 12 years ago

Initiale import

  • Property svn:executable set to *
File size: 1.2 KB
Line 
1ps = 0; eps = 0; plt_nu = 1; plt_I5 = 1;
2
3if (!ps) set terminal x11;
4if (ps && !eps) \
5  set terminal postscript enhanced color solid lw 2 "Times-Roman" 20;
6if (ps && eps) \
7  set terminal postscript eps enhanced color solid lw 2 "Times-Roman" 20;
8
9set grid;
10
11set style line 1 lt 1 lw 1 lc rgb "blue";
12set style line 2 lt 1 lw 1 lc rgb "green";
13set style line 3 lt 1 lw 1 lc rgb "red";
14
15if (ps) set output "dlinlat_1.ps"
16set title "Beta Beat";
17set xlabel "s [m]";
18set ylabel "[%]";
19set y2range [-1.5:20];
20plot "dlinlat.out" using 3:4 axis x1y2 notitle with fsteps lt 1 lw 1 \
21     lc rgb "black", \
22     "dlinlat.out" using 3:5 title "{/Symbol Db}_x/{/Symbol b}_x" \
23     with lines ls 1, \
24     "dlinlat.out" using 3:7 title "{/Symbol Db}_y/{/Symbol b}_y" \
25     with lines ls 3;
26if (!ps) pause -1;
27
28if (ps) set output "dlinlat_2.ps";
29if (plt_nu) \
30  set title "Normalized Phase Beat"; \
31  set xlabel "s [m]"; \
32  set ylabel ""; \
33  set y2range [-1.5:20]; \
34  plot "dlinlat.out" using 3:4 axis x1y2 notitle with fsteps lt 1 lw 1 \
35       lc rgb "black", \
36       "dlinlat.out" using 3:6 title "{/Symbol n}_x" with lines ls 1, \
37       "dlinlat.out" using 3:8 title "{/Symbol n}_y" with lines ls 3; \
38  if (!ps) pause -1;
Note: See TracBrowser for help on using the repository browser.