#include <bilinearForm.hh>
Public Member Functions | |
Jump1Mean2 (const concepts::ElementFormulaContainer< F > frm=concepts::ElementFormulaContainer< F >()) | |
virtual | ~Jump1Mean2 () |
Destructor. | |
virtual void | operator() (const Element< G > &elmX, const Element< G > &elmY, ElementMatrix< F > &em) const |
virtual void | operator() (const Element< G > &elmX, const Element< G > &elmY, ElementMatrix< F > &em, const ElementPair< G > &ep) const |
virtual BilinearFormContainer< F, G > * | clone () const |
Virtual copy constructor. | |
bool | empty () const |
Returns true if no formula is stored. | |
void | transpose () |
Transpose the bilinearform, i.e. interchange test and trial functions. | |
Protected Member Functions | |
virtual std::ostream & | info (std::ostream &os) const |
Returns information in an output stream. | |
Protected Attributes | |
RCP< const BilinearForm< F, G > > | bf_ |
bilinear form is stored as a RCP | |
A function class to calculate element matrices for the product of the jump of the derivative and the mean of the second derivative.
Definition at line 240 of file bilinearForm.hh.
hp1D::Jump1Mean2< F >::Jump1Mean2 | ( | const concepts::ElementFormulaContainer< F > | frm = concepts::ElementFormulaContainer< F >() | ) |
Constructor. The formula frm
is evaluated in each quadrature point.
|
inlinevirtualinherited |
Virtual copy constructor.
Implements concepts::BilinearForm< F, G >.
Definition at line 158 of file bilinearForm.hh.
|
inlineinherited |
Returns true if no formula is stored.
Definition at line 163 of file bilinearForm.hh.
|
protectedvirtual |
Returns information in an output stream.
Reimplemented from concepts::BilinearFormContainer< F, G >.
|
virtualinherited |
Evaluates the bilinear form for all shape functions on elmX
and elmY
and stores the result in the matrix em
.
em
has the correct size. elmX | Left element (test functions) |
elmY | Right element (trial functions) |
em | Return element matrix |
Implements concepts::BilinearForm< F, G >.
|
inlinevirtualinherited |
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
.
em
has the correct size. 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.
|
inlineinherited |
Transpose the bilinearform, i.e. interchange test and trial functions.
Definition at line 166 of file bilinearForm.hh.
|
protectedinherited |
bilinear form is stored as a RCP
Definition at line 174 of file bilinearForm.hh.