Skip to content
Snippets Groups Projects
Select Git revision
  • 3dfa8542047ec220f9c19cf16b056a5418529d9c
  • master default protected
  • compilation2022apr
  • ISEI_3_5_1
  • VERSION_3_9-alba
  • VERSION_3_9-Indus2
  • Jianfeng
  • VERSION-3_10
  • VERSION-3_9_1
  • VERSION-3_9_alba
  • VERSION-3_9_Indus2
  • VERSION-3_9
  • VERSION-3_8
  • VERSION-3_7
  • ISEI_3_5_1-PATCH_2
  • ISEI_3_5_1-PATCH_1
  • PROD_3_5_1
  • VERSION_3_6prerelease2
  • VERSION_3_6prerelease
  • VERSION-3_5
  • tracy
21 results

dynap_cod.plt

Blame
  • user avatar
    nadolski authored
    66664f7d
    History
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    dynap_cod.plt 988 B
    ps = 0; eps = 1;
    
    if (!ps) set terminal x11;
    if (ps && !eps) \
      set terminal postscript enhanced color solid lw 2 "Times-Roman" 20;
    if (ps && eps) \
      set terminal postscript eps enhanced color solid lw 2 "Times-Roman" 20;
    
    set grid;
    
    set palette rgbformulae 22, 13, -31;
    unset colorbox;
    
    if (ps) set output "dynap_cod.ps"
    set title "Dynamic Aperture vs. Orbit in the Sextupoles";
    set xlabel "x [mm]"; set ylabel "y [mm]";
    
    plot "dynap.out" using 1:2 title "Bare Lattice" \
         with linespoints lt palette frac 0.0, \
         "10e-6/dynap.out" using 1:2 title "{/Symbol s}_{x,y}=10e-6" \
         with linespoints lt palette frac 0.2, \
         "20e-6/dynap.out" using 1:2 title "{/Symbol s}_{x,y}=20e-6" \
         with linespoints lt palette frac 0.4, \
         "50e-6/dynap.out" using 1:2 title "{/Symbol s}_{x,y}=50e-6" \
         with linespoints lt palette frac 0.8, \
         "100e-6/dynap.out" using 1:2 title "{/Symbol s}_{x,y}=100e-6" \
         with linespoints  lt palette frac 1.0
    
    if (!ps) pause -1;