source: TRACY3/trunk/tracy/gnuplot/track_map.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: 826 bytes
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
9if (ps) set output "track_map_1.ps"
10set title "Normalized Horizontal Phase Space";
11set xlabel "x";
12set ylabel "p_x";
13plot "track_map.dat" using 1:2:7:8 notitle with vector linetype 2;
14if (!ps) pause -1;
15
16if (ps) set output "track_map_2.ps"
17set title "Normalized Vertical Phase Space";
18set xlabel "y";
19set ylabel "p_y";
20plot "track_map.dat" using 3:4:9:10 notitle with vector linetype 2;
21if (!ps) pause -1;
22
23if (ps) set output "track_map_3.ps"
24set title "Longitudinal Phase Space";
25set xlabel "{/Symbol f} [{/Symbol \260}]";
26set ylabel "{/Symbol d} [%]";
27plot "track_map.dat" using 5:6:11:12 notitle with vector linetype 2;
28if (!ps) pause -1;
Note: See TracBrowser for help on using the repository browser.