Skip to content
Snippets Groups Projects
Commit c0a4f8a0 authored by Adrian Burri's avatar Adrian Burri
Browse files

Some docu

[[Imported from SVN: r1657]]
parent 443b06ce
No related branches found
No related tags found
No related merge requests found
...@@ -61,17 +61,18 @@ namespace Dune { ...@@ -61,17 +61,18 @@ namespace Dune {
//! methods with template parameter "length of Vec". //! methods with template parameter "length of Vec".
//! Though the evaluate Methods can be spezialized for each //! Though the evaluate Methods can be spezialized for each
//! differentiation order //! differentiation order
//! \param x The local coordinate in the reference element
virtual void evaluate ( const FieldVector<deriType, 0> &diffVariable, virtual void evaluate ( const FieldVector<deriType, 0> &diffVariable,
const Domain & , Range &) const {}; // = 0 ? const Domain & , Range &) const {};
//! diffVariable contain the component of the gradient which is delivered. //! diffVariable contain the component of the gradient which is delivered.
//! for example gradient of the basefunction x component ==> //! for example gradient of the basefunction x component ==>
//! diffVariable(0) == 0, y component ==> diffVariable(0) == 1 ... //! diffVariable(0) == 0, y component ==> diffVariable(0) == 1 ...
virtual void evaluate ( const FieldVector<deriType, 1> &diffVariable, virtual void evaluate ( const FieldVector<deriType, 1> &diffVariable,
const Domain & , Range &) const {}; // = 0 ? const Domain & , Range &) const {};
virtual void evaluate ( const FieldVector<deriType, 2> &diffVariable, virtual void evaluate ( const FieldVector<deriType, 2> &diffVariable,
const Domain & , Range &) const {}; // = 0 ? const Domain & , Range &) const {};
private: private:
const FunctionSpaceType & functionSpace_; const FunctionSpaceType & functionSpace_;
......
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