source: TRACY3/trunk/tracy/gnuplot/res.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.8 KB
Line 
1ps = 0; eps = 0;
2
3if (!ps) set terminal x11;
4if (ps && !eps) set terminal postscript enhanced color solid;
5if (ps && eps) set terminal postscript eps enhanced color solid;
6
7set grid;
8
9set parametric;
10
11if (ps) set output "res.ps"
12set title "Resonances";
13set xlabel "{/Symbol n}_x"; set ylabel "{/Symbol n}_y";
14
15set xrange [-0.1:1.1]; set yrange [-0.1:1.1];
16#set xrange [0.0:0.5]; set yrange [0.5:1.0];
17#set xrange [0.35:0.43]; set yrange [0.58:0.65];
18#set xrange [0.80:0.86]; set yrange [0.38:0.45];
19
20plot 0, t title "1" with lines 1, \
21     1, t notitle with lines 1, \
22     t, 0 notitle with lines 1, \
23     t, 1 notitle with lines 1, \
24\
25     0.0/2.0, t title "2" with lines 2, \
26     1.0/2.0, t notitle with lines 2, \
27     2.0/2.0, t notitle with lines 2, \
28     t, 0.0/2.0 notitle with lines 2, \
29     t, 1.0/2.0 notitle with lines 2, \
30     t, 2.0/2.0 notitle with lines 2, \
31     t, t notitle with lines 2, \
32     t, 1-t notitle with lines 2, \
33\
34     1.0/3.0, t title "3" with lines 3, \
35     2.0/3.0, t notitle with lines 3, \
36     3.0/3.0, t notitle with lines 3, \
37     t, 2*t notitle with lines 3, \
38     t, -1+2*t notitle with lines 3, \
39     t, 1-2*t notitle with lines 3, \
40     t, 2-2*t notitle with lines 3, \
41\
42     0.0/4.0, t title "4" with lines 4, \
43     1.0/4.0, t notitle with lines 4, \
44     2.0/4.0, t notitle with lines 4, \
45     3.0/4.0, t notitle with lines 4, \
46     4.0/4.0, t notitle with lines 4, \
47     t, 0.0/4.0 notitle with lines 4, \
48     t, 1.0/4.0 notitle with lines 4, \
49     t, 2.0/4.0 notitle with lines 4, \
50     t, 3.0/4.0 notitle with lines 4, \
51     t, 4.0/4.0 notitle with lines 4, \
52     2*t, 2*t notitle with lines 4, \
53     2*t, 1-2*t notitle with lines 4, \
54\
55     0.0/5.0, t title "5" with lines 5, \
56     1.0/5.0, t notitle with lines 5, \
57     2.0/5.0, t notitle with lines 5, \
58     3.0/5.0, t notitle with lines 5, \
59     4.0/5.0, t notitle with lines 5, \
60     5.0/5.0, t notitle with lines 5, \
61     t, 0.0/5.0 notitle with lines 5, \
62     t, 1.0/5.0 notitle with lines 5, \
63     t, 2.0/5.0 notitle with lines 5, \
64     t, 3.0/5.0 notitle with lines 5, \
65     t, 4.0/5.0 notitle with lines 5, \
66     t, 5.0/5.0 notitle with lines 5, \
67     3*t, 2*t notitle with lines 5, \
68     3*t, 1-2*t notitle with lines 5, \
69     t, 4*t notitle with lines 5, \
70     t, -1+4*t notitle with lines 5, \
71     t, -2+4*t notitle with lines 5, \
72     t, -3+4*t notitle with lines 5, \
73     t, 1-4*t notitle with lines 5, \
74     t, 2-4*t notitle with lines 5, \
75     t, 3-4*t notitle with lines 5, \
76     t, 4-4*t notitle with lines 5, \
77\
78     0.4, 0.6 notitle with points 3, \
79     0.377, 0.611 notitle with points 3, \
80\
81     "dnu_dAx.out" using 5:6 title "{/Symbol nu}(A_x)" with linespoints 2, \
82     "dnu_dAy.out" using 5:6 title "{/Symbol nu}(A_y)" with linespoints 1;
83
84if (!ps) pause -1;
Note: See TracBrowser for help on using the repository browser.