Skip to content
Snippets Groups Projects
Forked from agnumpde / dune-tectonic
185 commits behind the upstream repository.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
vtk_tmpl.cc 543 B
#ifndef DIM
#error DIM unset
#endif

#include "explicitgrid.hh"
#include "explicitvectors.hh"

#include <dune/fufem/functionspacebases/p0basis.hh>
#include <dune/fufem/functionspacebases/p1nodalbasis.hh>

using MyP0Basis = P0Basis<GridView, double>;
using P1Basis = P1NodalBasis<GridView, double>;

template class MyVTKWriter<P1Basis, MyP0Basis>;

template void MyVTKWriter<P1Basis, MyP0Basis>::write<Vector, ScalarVector>(
    size_t record, Vector const &u, Vector const &v, ScalarVector const &alpha,
    ScalarVector const &stress) const;