Skip to content
Snippets Groups Projects
Commit a664285e authored by Sander, Oliver's avatar Sander, Oliver
Browse files

Use 2nd order for deformation, 1st order for rotations by default

parent d12bfe57
No related branches found
No related tags found
No related merge requests found
......@@ -142,8 +142,8 @@ int main (int argc, char *argv[]) try
typedef GridType::LeafGridView GridView;
GridView gridView = grid->leafGridView();
typedef Dune::Functions::PQkNodalBasis<GridView,3> DeformationFEBasis;
typedef Dune::Functions::PQkNodalBasis<GridView,2> OrientationFEBasis;
typedef Dune::Functions::PQkNodalBasis<GridView,2> DeformationFEBasis;
typedef Dune::Functions::PQkNodalBasis<GridView,1> OrientationFEBasis;
DeformationFEBasis deformationFEBasis(gridView);
OrientationFEBasis orientationFEBasis(gridView);
......
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