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

fft.plt

Blame
  • user avatar
    nadolski authored
    66664f7d
    History
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    fft.plt 908 B
    ps = 0; eps = 0;
    
    if (!ps) set terminal x11;
    if (ps && !eps) set terminal postscript enhanced color solid;
    if (ps && eps) set terminal postscript eps enhanced color solid;
    
    set grid;
    
    if (ps) set output "fft_1.ps"
    set title "FFT of J_x";
    set xlabel "{/Symbol n}_x";
    set ylabel "A_x";
    plot "track.out.fft" using 1:2 notitle with impulses 2;
    if (!ps) pause -1;
    
    if (ps) set output "fft_2.ps"
    set title "FFT of J_y";
    set xlabel "{/Symbol n}_y";
    set ylabel "A_y";
    plot "track.out.fft" using 1:4 notitle with impulses 2;
    if (!ps) pause -1;
    
    if (ps) set output "fft_3.ps"
    set title "FFT of  {/Symbol p}_y";
    set xlabel "{/Symbol n}_x";
    set ylabel "A_x";
    plot "track.out.fft" using 1:3 notitle with impulses 2;
    if (!ps) pause -1;
    
    if (ps) set output "fft_3.ps"
    set title "FFT of {/Symbol p}_y";
    set xlabel "{/Symbol n}_y";
    set ylabel "A_y";
    plot "track.out.fft" using 1:5 notitle with impulses 2;
    if (!ps) pause -1;