#include <bf_laplace.hh>
Public Types | |
typedef concepts::ElementFormulaContainer< concepts::Mapping< F, 2u > > | FrmE_Matrix |
typedef concepts::Combtype< F, G >::type | value_type |
Public Member Functions | |
LaplaceMatrix (const FrmE_Matrix frm=FrmE_Matrix(), bool all=false) | |
virtual LaplaceMatrix< F > * | clone () const |
virtual void | operator() (const concepts::Element< Real > &elmX, const concepts::Element< Real > &elmY, concepts::ElementMatrix< F > &em) 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 |
void | data (const concepts::RCP< concepts::SharedJacobianAdj< 2 > > d) |
Set the pointer to the shared data. | |
concepts::RCP< concepts::SharedJacobianAdj< 2 > > | data () const |
Gets the pointer to the shared data. | |
Protected Member Functions | |
virtual std::ostream & | info (std::ostream &os) const |
Returns information in an output stream. | |
bool | assemble_ (const Quad< Real > *elmX, const Quad< Real > *elmY, concepts::ElementMatrix< value_type > &em) const |
void | computeIntermediate_ (const BaseQuad< Real > &elm, const int i=-1, const int j=-1) const |
Protected Attributes | |
bool | all_ |
Parameter for the sum factorisation. | |
concepts::Array< F > | intermediateValue_ |
concepts::Array< concepts::Mapping< G, 2 > > | intermediateMatrix_ |
concepts::ElementFormulaContainer< F > | frm_ |
Element formula. | |
concepts::ElementFormulaContainer< concepts::Mapping< G, 2 > > | frmM_ |
Matrix element formula. | |
A function class to calculate element matrices for the Laplacian for matrix formulas.
Definition at line 128 of file bf_laplace.hh.
typedef concepts::ElementFormulaContainer<concepts::Mapping<F,2u> > hp2D::LaplaceMatrix< F >::FrmE_Matrix |
Definition at line 132 of file bf_laplace.hh.
|
inherited |
Definition at line 64 of file bf_laplace.hh.
hp2D::LaplaceMatrix< F >::LaplaceMatrix | ( | const FrmE_Matrix | frm = FrmE_Matrix() , |
bool | all = false |
||
) |
Constructor. The formula frm
is evaluated in each quadrature point.
|
virtual |
Virtual constructor. Returns a pointer to a copy of itself. The caller is responsible to destroy this copy.
Implements concepts::BilinearForm< F, G >.
|
protectedinherited |
Compute the intermediate data for element matrix computation.
i | if i=0 or 1, then take only i-th column of Jacobian matrix (for test function) |
j | if j=0 or 1, then take only j-th column of Jacobian matrix (for trial function) |
The Jacobian matrices have to been taken both full (i,j = -1) or both partial (i,j = 0 or 1).
Matrix formulas and complex valued scalar formulas are only implemented for full Jacobians.
|
protectedvirtual |
Returns information in an output stream.
Reimplemented from concepts::BilinearForm< F, G >.
|
pure 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 |
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 >.
|
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.
|
protectedinherited |
Parameter for the sum factorisation.
Definition at line 75 of file bf_laplace.hh.
|
protectedinherited |
Element formula.
Definition at line 193 of file bilinearFormHelper.hh.
|
protectedinherited |
Matrix element formula.
Definition at line 195 of file bilinearFormHelper.hh.
|
mutableprotectedinherited |
Intermediate matrix
In case of a scalar formula:
In case of a matrix formula :
In case of partial Jacobian:
Definition at line 191 of file bilinearFormHelper.hh.
|
mutableprotectedinherited |
Intermediate value
In case of a scalar formula:
In case of a matrix formula:
Definition at line 179 of file bilinearFormHelper.hh.