VTKFIG  0.25.0
Easy VTK based in situ visualization
example-simplexcontour2d.cxx

Scalar function on 2D simplex grid

#include <chrono>
#include "vtkfigFrame.h"
#include "vtkfigTools.h"
#include "vtkfigDataSet.h"
#include "vtkfigTools.h"
#include <vtkMath.h>
double scalefac=1.0;
inline double G(double x,double y, double t)
{
x/=scalefac;
y/=scalefac;
return exp(-(x*x+y*y))*sin(t+3.*x)*cos(4.*y-t);
}
int main(void)
{
size_t nspin=vtkfig::NSpin();
std::vector<double> inpoints;
for(double x = -2; x < 2; x+=0.03)
{
for(double y = -2; y < 2; y+=0.03)
{
inpoints.push_back(x + vtkMath::Random(-.1, .1));
inpoints.push_back(y + vtkMath::Random(-.1, .1));
}
}
std::vector<double>points;
std::vector<int>cells;
vtkfig::Delaunay2D(inpoints,points,cells);
int npoints=points.size()/2;
std::vector<double>values(npoints);
auto colors=vtkfig::RGBTable
{
{0.0, 0.0, 0.0, 1.0},
{0.5, 0.0, 1.0, 0.0},
{1.0, 1.0, 0.0, 0.0}
};
double t=0;
double dt=0.1;
size_t ii=0;
auto t0=std::chrono::system_clock::now();
double i0=ii;
for(auto &x: points) x*=scalefac;
auto frame=vtkfig::Frame::New();
auto dataset=vtkfig::DataSet::New();
dataset->SetSimplexGrid(2,points,cells);
auto contour=vtkfig::ScalarView::New();
contour->SetData(dataset,"v");
contour->SetSurfaceRGBTable(colors,255);
contour->SetValueRange(-1,1);
std::vector<double> isolines{-0.5,0,0.5};
contour->SetIsolevels(isolines);
frame->AddFigure(contour);
while (ii<nspin)
{
for (size_t ipoint=0, ival=0;ipoint<points.size(); ipoint+=2,ival++)
values[ival]=G(points[ipoint+0],points[ipoint+1],t);
dataset->SetPointScalar(values,"v");
frame->Show();
if (ii==3)
frame->WritePNG("example-simplexcontour2d.png");
t+=dt;
auto t1=std::chrono::system_clock::now();
double xdt=std::chrono::duration_cast<std::chrono::duration<double>>(t1-t0).count();
double i1=ii;
if (xdt>4.0)
{
printf("Frame rate: %.2f fps\n",(double)(i1-i0)/4.0);
t0=std::chrono::system_clock::now();
i0=ii;
}
ii++;
}
}
vtkfig::Delaunay2D
void Delaunay2D(const V0 &points_in, V &points, IV &cells)
Create a 2D Delaunay triangulation from point set.
Definition: vtkfigTools.h:70
vtkfigScalarView.h
vtkfig::ScalarView::New
static std::shared_ptr< ScalarView > New()
Create smart pointer to ScalarView instance.
vtkfig::NSpin
size_t NSpin()
Return content of environment variable VTKFIG_NSPIN or large value.
vtkfig::RGBTable
std::vector< RGBPoint > RGBTable
Color table.
Definition: vtkfigTools.h:43
vtkfigTools.h
vtkfig::DataSet::New
static std::shared_ptr< DataSet > New()
Static constructor of smart pointer to an empty instance.
vtkfigDataSet.h
vtkfigFrame.h
vtkfig::Frame::New
static std::shared_ptr< Frame > New()
Create smart pointer to frame.