Skip to content
Snippets Groups Projects
Commit 8ab12807 authored by Bernd Flemisch's avatar Bernd Flemisch
Browse files

readded missing sgrid include

git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@5329 2fb0f335-1f38-0410-981e-8018bf24f1b0
parent 423d82e9
No related branches found
No related tags found
No related merge requests found
...@@ -35,6 +35,7 @@ ...@@ -35,6 +35,7 @@
#endif #endif
#include <dune/grid/yaspgrid.hh> #include <dune/grid/yaspgrid.hh>
#include <dune/grid/sgrid.hh>
#include <dumux/material/components/simpleh2o.hh> #include <dumux/material/components/simpleh2o.hh>
#include <dumux/material/components/simplednapl.hh> #include <dumux/material/components/simplednapl.hh>
......
...@@ -197,10 +197,8 @@ int main(int argc, char** argv) ...@@ -197,10 +197,8 @@ int main(int argc, char** argv)
Dune::FieldVector<int,dim> res; // cell resolution Dune::FieldVector<int,dim> res; // cell resolution
upperRight[0] = 6.0; upperRight[0] = 6.0;
upperRight[1] = 4.0; upperRight[1] = 4.0;
res[0] = 96; res[0] = 48;
res[1] = 64; res[1] = 32;
//res[0] = 24;
//res[1] = 16;
std::auto_ptr<Grid> grid(CreateGrid<Grid, Scalar>::create(upperRight, res)); std::auto_ptr<Grid> grid(CreateGrid<Grid, Scalar>::create(upperRight, res));
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
......
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