Skip to content
Snippets Groups Projects
Commit f12c3ed2 authored by Kilian Weishaupt's avatar Kilian Weishaupt Committed by Timo Koch
Browse files

[test][cleanup][navierstokes] Remove unnecesary include

parent 89a2185e
No related branches found
No related tags found
1 merge request!1086Cleanup/test navierstokes
...@@ -48,8 +48,6 @@ ...@@ -48,8 +48,6 @@
#include <dumux/assembly/staggeredfvassembler.hh> #include <dumux/assembly/staggeredfvassembler.hh>
#include <dumux/assembly/diffmethod.hh> #include <dumux/assembly/diffmethod.hh>
#include <dumux/discretization/methods.hh>
#include <dumux/io/staggeredvtkoutputmodule.hh> #include <dumux/io/staggeredvtkoutputmodule.hh>
#include <dumux/io/grid/gridmanager.hh> #include <dumux/io/grid/gridmanager.hh>
...@@ -147,7 +145,7 @@ int main(int argc, char** argv) try ...@@ -147,7 +145,7 @@ int main(int argc, char** argv) try
vtkWriter.addFaceField(problem->getAnalyticalVelocitySolutionOnFace(), "faceVelocityExact"); vtkWriter.addFaceField(problem->getAnalyticalVelocitySolutionOnFace(), "faceVelocityExact");
vtkWriter.write(0.0); vtkWriter.write(0.0);
// the assembler with time loop for instationary problem // use the staggered FV assembler
using Assembler = StaggeredFVAssembler<TypeTag, DiffMethod::numeric>; using Assembler = StaggeredFVAssembler<TypeTag, DiffMethod::numeric>;
auto assembler = std::make_shared<Assembler>(problem, fvGridGeometry, gridVariables); auto assembler = std::make_shared<Assembler>(problem, fvGridGeometry, gridVariables);
......
...@@ -47,7 +47,6 @@ ...@@ -47,7 +47,6 @@
#include <dumux/assembly/staggeredfvassembler.hh> #include <dumux/assembly/staggeredfvassembler.hh>
#include <dumux/assembly/diffmethod.hh> #include <dumux/assembly/diffmethod.hh>
#include <dumux/discretization/methods.hh>
#include <dumux/io/staggeredvtkoutputmodule.hh> #include <dumux/io/staggeredvtkoutputmodule.hh>
#include <dumux/io/grid/gridmanager.hh> #include <dumux/io/grid/gridmanager.hh>
......
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