Skip to content
Snippets Groups Projects
Select Git revision
  • 6e7f46a6190e155ef5610c7b7ccf39b06487b400
  • 2016-PippingKornhuberRosenauOncken default
  • 2022-Strikeslip-Benchmark
  • 2021-GraeserKornhuberPodlesny
  • Dissertation2021 protected
  • separate-deformation
  • AverageCrosspoints
  • old_solver_new_datastructure
  • last_working
  • 2014-Dissertation-Pipping
  • 2013-PippingSanderKornhuber
11 results

vtk.hh

Blame
  • Forked from agnumpde / dune-tectonic
    556 commits behind the upstream repository.
    user avatar
    Elias Pipping authored and Elias Pipping committed
    547839d6
    History
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    vtk.hh 521 B
    #ifndef VTK_HH
    #define VTK_HH
    
    #include <dune/common/shared_ptr.hh>
    #include <dune/grid/io/file/vtk/vtkwriter.hh>
    
    #include <dune/fufem/functions/vtkbasisgridfunction.hh>
    
    template <class VertexBasis, class CellBasis, class VectorType,
              class SingletonVectorType, class GridView>
    void writeVtk(VertexBasis vertexBasis, VectorType displacement,
                  SingletonVectorType state, CellBasis cellBasis,
                  SingletonVectorType stress, GridView gridView,
                  std::string filename);
    
    #endif