Skip to content
Snippets Groups Projects
Commit 62e07931 authored by Lisa Julia Nebel's avatar Lisa Julia Nebel
Browse files

Use correct vector type for the combination of displacement and rotation in...

Use correct vector type for the combination of displacement and rotation in geodesicfeassemblerwrappertest
parent d1aa8a37
No related branches found
No related tags found
1 merge request!91Use correct vector type for the combination of displacement and rotation in...
......@@ -9,6 +9,7 @@
#include <dune/common/typetraits.hh>
#include <dune/common/bitsetvector.hh>
#include <dune/common/tuplevector.hh>
#include <dune/functions/functionspacebases/compositebasis.hh>
#include <dune/functions/functionspacebases/interpolate.hh>
......@@ -54,7 +55,7 @@ using ValueType = adouble;
//Types for the mixed space
using DisplacementVector = std::vector<RealTuple<double,dim>>;
using RotationVector = std::vector<Rotation<double,dim>>;
using Vector = MultiTypeBlockVector<DisplacementVector, RotationVector>;
using Vector = TupleVector<DisplacementVector, RotationVector>;
const int dimCR = Rotation<double,dim>::TangentVector::dimension; //dimCorrectionRotation = Dimension of the correction for rotations
using CorrectionType = MultiTypeBlockVector<BlockVector<FieldVector<double,dim> >, BlockVector<FieldVector<double,dimCR>>>;
......
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