Skip to content
Snippets Groups Projects
Select Git revision
  • f9a7a748e376df2634c96629146b5c701bc59fc8
  • main default protected
  • 2.12.1
  • 2.6.0
  • 2.4.1
  • 2.0.17
  • 2.0.13
  • 2.0.10
  • 2.0.8
  • 2.0.7
  • 2.0.5
  • 2.0.4
  • 2.0.3
  • 2.0.2
  • 2.0.1
  • 1.59.0
  • 1.57.0
  • 1.55.0
  • 1.54.0
19 results

.gitlab-ci.yml

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    linlat_old.plt 1.79 KiB
    ps = 0; eps = 0; plt_nu = 1; plt_I5 = 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;
    
    if (ps) set output "linlat_1.ps"
    set title "Beta Functions";
    set xlabel "s [m]";
    set ylabel "[m]";
    set y2range [-1.5:20];
    plot "linlat.out" using 3:4 axis x1y2 notitle with fsteps lt -1, \
         "linlat.out" using 3:6 title "{/Symbol b}_x" with lines 2, \
         "linlat.out" using 3:11 title "{/Symbol b}_y" with lines 1;
    if (!ps) pause -1;
    
    if (ps) set output "linlat_2.ps"
    set title "Horizontal Dispersion";
    set xlabel "s [m]";
    set ylabel "{/Symbol h}_x [m]";
    set y2range [-1.5:20];
    plot "linlat.out" using 3:4 axis x1y2 notitle with fsteps lt -1, \
         "linlat.out" using 3:8 notitle with lines 2;
    if (!ps) pause -1;
    
    if (ps) set output "linlat_3.ps"
    set title "Vertical Dispersion";
    set xlabel "s [m]";
    set ylabel "{/Symbol h}_y [m]";
    set y2range [-1.5:20];
    plot "linlat.out" using 3:4 axis x1y2 notitle with fsteps lt -1, \
         "linlat.out" using 3:13 notitle with lines 2;
    if (!ps) pause -1;
    
    if (ps) set output "linlat_4.ps";
    if (plt_nu) \
      set title "Phase Advance"; \
      set xlabel "s [m]"; \
      set ylabel ""; \
      set y2range [-1.5:20]; \
      plot "linlat.out" using 3:4 axis x1y2 notitle with fsteps lt -1, \
           "linlat.out" using 3:7 title "{/Symbol n}_x" with lines 2, \
           "linlat.out" using 3:12 title "{/Symbol n}_y" with lines 1; \
      if (!ps) pause -1;
    
    if (ps) set output "linlat_5.ps";
    if (plt_I5) \
      set title "I5"; \
      set xlabel "s [m]"; \
      set ylabel ""; \
      set y2range [-1.5:20]; \
      plot "linlat.out" using 3:4 axis x1y2 notitle with fsteps lt -1, \
           "linlat.out" using 3:15 title "{/Symbol n}_x" with lines 2; \
      if (!ps) pause -1;