plot2D

meshfile=fc_oogmsh.gmsh.buildmesh2d('condenser11',40);
  Th=fc_simesh.siMesh(meshfile);
  u=@(x,y) 0.3*cos(5*(2*x-y)).*sin(5*(x-2*y));
  U=Th.eval(u);

  fc_tools.graphics.monitors.onGrid(2,2);

  figure(1)
  fc_siplt.plot(Th,U);
  axis image;axis off;view(3)
  colorbar
  shading interp

  figure(2)
  fc_siplt.plot(Th,U,'plane',true);
  axis image
  colorbar
  shading interp

  figure(3)
  fc_siplt.plot(Th,U,'d',1,'Linewidth',3);
  axis image
  colormap('jet')
  view(3)
  colorbar

  figure(4)
  fc_siplt.plot(Th,U,'d',1,'Linewidth',3,'plane',true);
  axis image
  colormap('jet')
  colorbar
[fc-oogmsh] Input file : <fc-oogmsh>/geodir/2d/condenser11.geo
[fc-oogmsh] Mesh file <fc-oogmsh>/meshes/condenser11-40.msh [version 4.1] already exists.
  -> Use "force" flag to rebuild if needed.
plot2D-1.pngplot2D-2.pngplot2D-3.pngplot2D-4.png