src/test/advection.c

    Time-reversed advection in a vortex

    set term @PNG enhanced size 640,640 font ",10"
    set output 'error.png'
    set pm3d
    set pm3d map interpolate 1,1
    set palette defined ( 0 0 0 0.5647, 0.125 0 0.05882 1, 0.25 0 0.5647 1,\
         0.375 0.05882 1 0.9333, 0.5 0.5647 1 0.4392, 0.625 1 0.9333 0, 0.75 1 0.4392 0,\
         0.875 0.9333 0 0, 1 0.498 0 0 )
    set size ratio -1
    splot 'out' t ""
    Error field for N = 256 (script)

    Error field for N = 256 (script)

    reset
    set term @SVG size 640,480 font ",10"
    ftitle(a,b) = sprintf("%.0f/x^{%4.2f}", exp(a), -b)
    f(x)=a+b*x
    fit f(x) 'log' u (log($1)):(log($4)) via a,b
    f2(x)=a2+b2*x
    fit f2(x) 'log' u (log($1)):(log($2)) via a2,b2
    set xlabel 'Maximum resolution'
    set ylabel 'Maximum error'
    set logscale
    set xrange [32:512]
    set xtics 32,2,512
    set grid ytics
    set cbrange [1:2]
    plot 'log' u 1:4 t 'max', 'log' u 1:2 t 'norm1', \
          exp(f(log(x))) t ftitle(a,b),              \
          exp(f2(log(x))) t ftitle(a2,b2)
    Convergence of the error with spatial resolution (script)

    Convergence of the error with spatial resolution (script)

    #include "grid/cartesian.h"
    #include "advection.h"
    
    scalar f[];
    scalar * tracers = {f};
    
    int main()
    {
      // coordinates of lower-left corner
      size (1.[0]); // dimensionless
      origin (-0.5, -0.5);
      // maximum timestep
      DT = .1;
      // CFL number
      CFL = 0.8;
      for (N = 64; N <= 256; N *= 2)
        run();
    }
    
    #define bump(x,y) (exp(-100.*(sq(x + 0.2) + sq(y + .236338))))
    
    event init (i = 0)
    {
      foreach()
        f[] = bump(x,y);
    }
    
    event velocity (i++) {
      vertex scalar psi[];
      foreach_vertex()
        psi[] = - 1.5*sin(2.*pi*t/5.)*sin((x + 0.5)*pi)*sin((y + 0.5)*pi)/pi;
      trash ({u});
      struct { double x, y; } f = {-1.,1.};
      foreach_face()
        u.x[] = f.x*(psi[0,1] - psi[])/Delta;
    }
    
    event logfile (t = {0,5}) {
      stats s = statsf (f);
      fprintf (stderr, "# %f %.12f %g %g\n", t, s.sum, s.min, s.max);
    }
    
    event field (t = 5) {
      scalar e[];
      foreach()
        e[] = f[] - bump(x,y);
      norm n = normf (e);
      fprintf (stderr, "%d %g %g %g\n", N, n.avg, n.rms, n.max);
      
      if (N == 256)
        output_field ({e}, stdout, N);
    }