#include <rotrot.hh>
Public Member Functions | |
RotRot (const uint i=0, const uint j=0) | |
Constructor of the i.th row and j.th column of vectorial Bilinearform. | |
RotRot (concepts::Array< Real > &jacobian, concepts::Array< concepts::MapReal2d > &jacobianInv, const Quad< Real > **oldElm, const uint i=0, const uint j=0) | |
Constructor of the i.th row and j.th column of vectorial Bilinearform. | |
virtual RotRot * | clone () const |
virtual void | operator() (const concepts::Element< Real > &elmX, const concepts::Element< Real > &elmY, concepts::ElementMatrix< Real > &em) const |
void | operator() (const Quad< Real > &elmX, const Quad< Real > &elmY, concepts::ElementMatrix< Real > &em) const |
virtual void | data (concepts::Cloneable *d) |
Sets the data to be shared. | |
virtual MaxwellSharedData * | data () const |
Returns the data to be shared. | |
virtual void | operator() (const Element< typename Realtype< Real >::type > &elmX, const Element< typename Realtype< Real >::type > &elmY, ElementMatrix< Real > &em) const=0 |
virtual void | operator() (const Element< typename Realtype< Real >::type > &elmX, const Element< typename Realtype< Real >::type > &elmY, ElementMatrix< Real > &em, const ElementPair< typename Realtype< Real >::type > &ep) const |
Static Public Member Functions | |
static void | setup (vectorial::BilinearForm< Real, Real > &bf) |
Protected Member Functions | |
virtual std::ostream & | info (std::ostream &os) const |
Returns information in an output stream. | |
A function class to calculate element matrices for the Rot u*Rot v Bilinearform
The whole rot-rot term is discretized by using all components in a vector valued bilinear form of size 2x2. This is best set up using the RotRot::setup method. It also takes care of correctly shared data using RotRotSharedData.
|
inline |
|
inline |
|
virtual |
Virtual constructor. Returns a pointer to a copy of itself. The caller is responsible to destroy this copy.
Implements concepts::BilinearForm< Real >.
|
virtual |
Returns the data to be shared.
Implements vectorial::Vectorizable.
|
virtual |
Sets the data to be shared.
Implements vectorial::Vectorizable.
|
protectedvirtual |
Returns information in an output stream.
Reimplemented from concepts::BilinearForm< Real >.
|
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 |
|
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 |
Definition at line 57 of file bilinearForm.hh.
|
static |
Sets up the bilinear form for the rot-rot part for Maxwell's equation using weighted regularization.
bf | Resulting bilinear form (use this to compute the matrix) |
bf
needs to be 2 x 2.