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

add method 'order'

[[Imported from SVN: r7902]]
parent 2591b977
No related branches found
No related tags found
No related merge requests found
...@@ -48,6 +48,12 @@ public: ...@@ -48,6 +48,12 @@ public:
/** \brief Evaluate the derivatives of all shape functions function */ /** \brief Evaluate the derivatives of all shape functions function */
void evaluateJacobian(const Dune::FieldVector<ctype, dim>& local, void evaluateJacobian(const Dune::FieldVector<ctype, dim>& local,
std::vector<Dune::FieldMatrix<ctype, EmbeddedTangentVector::dimension, dim> >& out) const; std::vector<Dune::FieldMatrix<ctype, EmbeddedTangentVector::dimension, dim> >& out) const;
/** \brief Polynomial order */
unsigned int order() const
{
return localGFEFunction_.localFiniteElement_.order();
}
private: private:
......
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