source: TRACY3/trunk/tracy/gnuplot/linlat_err.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: 2.2 KB
Line 
1ps = 0; eps = 1; 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 "linlat_err_1.ps"
16set title "Beta Functions (bare)";
17set xlabel "s [m]";
18set ylabel "[m]";
19set y2range [-1.5:20];
20plot "linlat.out" using 3:4 axis x1y2 notitle with fsteps lt 1 lw 1 \
21     lc rgb "black", \
22     "linlat.out" using 3:6 title "{/Symbol b}_x" with lines ls 1, \
23     "linlat.out" using 3:11 title "{/Symbol b}_y" with lines ls 3;
24if (!ps) pause -1;
25
26if (ps) set output "linlat_err_2.ps"
27set title "Beta Functions (w IDs)";
28set xlabel "s [m]";
29set ylabel "[m]";
30set y2range [-1.5:20];
31plot "linlat_IDs.out" using 3:4 axis x1y2 notitle with fsteps lt 1 lw 1 \
32     lc rgb "black", \
33     "linlat_IDs.out" using 3:6 title "{/Symbol b}_x" with lines ls 1, \
34     "linlat_IDs.out" using 3:11 title "{/Symbol b}_y" with lines ls 3;
35if (!ps) pause -1;
36
37if (ps) set output "linlat_err_3.ps"
38set title "Beta Functions (corrected)";
39set xlabel "s [m]";
40set ylabel "[m]";
41set y2range [-1.5:20];
42plot "linlat_err.out" using 3:4 axis x1y2 notitle with fsteps lt 1 lw 1 \
43     lc rgb "black", \
44     "linlat_err.out" using 3:6 title "{/Symbol b}_x" with lines ls 1, \
45     "linlat_err.out" using 3:11 title "{/Symbol b}_y" with lines ls 3;
46if (!ps) pause -1;
47
48if (ps) set output "linlat_err_4.ps"
49set title "Horizontal Dispersion (corrected)";
50set xlabel "s [m]";
51set ylabel "{/Symbol h}_y [m]";
52set y2range [-1.5:20];
53plot "linlat_err.out" using 3:4 axis x1y2 notitle with fsteps lt 1 lw 1 \
54     lc rgb "black", \
55     "linlat_err.out" using 3:8 notitle with lines ls 1;
56if (!ps) pause -1;
57
58if (ps) set output "linlat_err_5.ps"
59set title "Vertical Dispersion (corrected)";
60set xlabel "s [m]";
61set ylabel "{/Symbol h}_x [m]";
62set y2range [-1.5:20];
63plot "linlat_err.out" using 3:4 axis x1y2 notitle with fsteps lt 1 lw 1 \
64     lc rgb "black", \
65     "linlat_err.out" using 3:13 notitle with lines ls 1;
66if (!ps) pause -1;
67
Note: See TracBrowser for help on using the repository browser.