Skip to content
Snippets Groups Projects
Commit 2e9d041d authored by Dennis Gläser's avatar Dennis Gläser
Browse files

[io][vtk] remove unused stuff

parent 0884e520
No related branches found
No related tags found
1 merge request!944[io][vtk] remove unused stuff
...@@ -76,8 +76,6 @@ class VtkOutputModule ...@@ -76,8 +76,6 @@ class VtkOutputModule
using Scalar = typename GridVariables::Scalar; using Scalar = typename GridVariables::Scalar;
using GridView = typename FVGridGeometry::GridView; using GridView = typename FVGridGeometry::GridView;
using ElementMapper = typename FVGridGeometry::ElementMapper;
using VertexMapper = typename FVGridGeometry::VertexMapper;
enum { enum {
dim = GridView::dimension, dim = GridView::dimension,
...@@ -581,18 +579,6 @@ private: ...@@ -581,18 +579,6 @@ private:
//! return the number of dofs //! return the number of dofs
std::size_t numDofs_() const { return gridGeom_.gridView().size(dofCodim); } std::size_t numDofs_() const { return gridGeom_.gridView().size(dofCodim); }
/*!
* \brief Helper function to retrieve privar data from the solution vector
* May be specialized.
*
* \param dofIdxGlobal The global dof index
* \param pvIdx The index of the primary variable
*/
auto getPriVarData_(const std::size_t dofIdxGlobal, const std::size_t pvIdx)
{
return sol_[dofIdxGlobal][pvIdx];
}
const Problem& problem_; const Problem& problem_;
const FVGridGeometry& gridGeom_; const FVGridGeometry& gridGeom_;
const GridVariables& gridVariables_; const GridVariables& gridVariables_;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment