|
| ConstraintsList () |
| Default constructor.
|
|
void | add (const AnalyticalConstraint< F > &c) |
|
void | add (AnalyticalConstraint< F > *c) |
|
void | assembly (const concepts::Element< F > &e, concepts::TColumn< F > *&t, uint &n) |
|
virtual void | operator() (const concepts::Element< F > &elmX, const concepts::Element< F > &elmY, concepts::ElementMatrix< F > &em) const |
|
virtual void | operator() (const concepts::Element< F > &elm, concepts::ElementMatrix< F > &em) const |
|
virtual ConstraintsList * | clone () const |
|
virtual void | operator() (const Element< G > &elmX, const Element< G > &elmY, ElementMatrix< F > &em) const =0 |
|
virtual void | operator() (const Element< G > &elmX, const Element< G > &elmY, ElementMatrix< F > &em, const ElementPair< G > &ep) const |
|
virtual void | operator() (const Element< G > &elm, ElementMatrix< F > &em) const =0 |
|
template<typename F>
class constraints::ConstraintsList< F >
List of AnalyticalConstraint
.
- Author
- Philipp Frauenfelder, 2002
Definition at line 110 of file analytical.hh.
template<class F , class G = typename Realtype<F>::type>
Evaluates the bilinear form for all shape functions on elmX
and elmY
and stores the result in the matrix em
.
- Postcondition
- The returned matrix
em
has the correct size.
- Parameters
-
elmX | Left element (test functions) |
elmY | Right element (trial functions) |
em | Return element matrix |
Implemented in vectorial::BilinearForm< F, G >, concepts::BilinearFormLiCo< F, G >, concepts::BilinearFormContainer< F, G >, concepts::BilinearF_Sum< F, H, J, G >, and concepts::BilinearF_W< F, H, J, G >.
template<class F , class G = typename Realtype<F>::type>
Evaluates the bilinear form for all shape functions on elmX
and elmY
and stores the result in the matrix em
. If this method is not reimplemented in a derived class, the default behaviour is to call the application operator without ep
.
- Postcondition
- The returned matrix
em
has the correct size.
- Parameters
-
elmX | Left element |
elmY | Right element |
em | Return element matrix |
ep | Element pair holding more information on the pair elmX and elmY |
Reimplemented in vectorial::BilinearForm< F, G >.
Definition at line 57 of file bilinearForm.hh.