Skip to content
Snippets Groups Projects
Commit 8ff64810 authored by Oliver Sander's avatar Oliver Sander Committed by sander@FU-BERLIN.DE
Browse files

The first template parameter of GeodesicFEAssembler is a function space basis now

[[Imported from SVN: r7866]]
parent cabb93db
No related branches found
No related tags found
No related merge requests found
...@@ -92,7 +92,7 @@ public: ...@@ -92,7 +92,7 @@ public:
/** \brief The FEM operator for a 2D extensible, shearable rod /** \brief The FEM operator for a 2D extensible, shearable rod
*/ */
template <class GridView> template <class GridView>
class RodAssembler<GridView,2> : public GeodesicFEAssembler<GridView, RigidBodyMotion<2> > class RodAssembler<GridView,2> : public GeodesicFEAssembler<P1NodalBasis<GridView>, RigidBodyMotion<2> >
{ {
typedef typename GridView::template Codim<0>::Entity EntityType; typedef typename GridView::template Codim<0>::Entity EntityType;
...@@ -118,7 +118,7 @@ public: ...@@ -118,7 +118,7 @@ public:
//! ??? //! ???
RodAssembler(const GridView &gridView) RodAssembler(const GridView &gridView)
: GeodesicFEAssembler<GridView, RigidBodyMotion<2> >(gridView,NULL) : GeodesicFEAssembler<P1NodalBasis<GridView>, RigidBodyMotion<2> >(gridView,NULL)
{ {
B = 1; B = 1;
A1 = 1; A1 = 1;
......
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