Class documentation of Concepts

Loading...
Searching...
No Matches
rotrot.hh
Go to the documentation of this file.
1
6#ifndef rotrot2D_hh
7#define rotrot2D_hh
8
9#include "basics/typedefs.hh"
11#include "toolbox/array.hh"
15#include "maxwell.hh"
16
17namespace vectorial {
18 template<typename F, typename G>
19 class BilinearForm;
20} // namespace vectorial
21
22namespace hp2D {
23 // forward declarations
24 template<class F>
25 class Quad;
26
27 using concepts::Real;
28
29 // **************************************************************** RotRot **
30
41 class RotRot : public concepts::BilinearForm<Real>,
43 public:
45 RotRot(const uint i = 0, const uint j = 0) :
46 i_(i), j_(j), coeffMatrix_(0), jacobian_(0),
47 jacobianInv_(0), oldElm_(0), sharedData_(0) {}
51 const Quad<Real>** oldElm, const uint i = 0, const uint j = 0) :
52 i_(i), j_(j), coeffMatrix_(0), jacobian_(&jacobian),
53 jacobianInv_(&jacobianInv), oldElm_(oldElm), sharedData_(0) {}
54
55 virtual ~RotRot();
56 virtual RotRot* clone() const;
57
58 virtual void operator()(const concepts::Element<Real>& elmX,
59 const concepts::Element<Real>& elmY,
61 void operator()(const Quad<Real>& elmX, const Quad<Real>& elmY,
63
64 virtual void data(concepts::Cloneable* d);
65 virtual MaxwellSharedData* data() const;
66
73 protected:
74 virtual std::ostream& info(std::ostream& os) const;
75 private:
77 uint i_, j_;
78
80 mutable concepts::Array<concepts::MapReal2d> coeffMatrix_;
81
83
84 concepts::Array<Real>* jacobian_;
86 const Quad<Real>** oldElm_;
87 MaxwellSharedData* sharedData_;
89 };
90
91} // namespace hp2D
92
93#endif // rotrot2D_hh
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.
Definition rotrot.hh:49
RotRot(const uint i=0, const uint j=0)
Constructor of the i.th row and j.th column of vectorial Bilinearform.
Definition rotrot.hh:45
virtual std::ostream & info(std::ostream &os) const
Returns information in an output stream.
static void setup(vectorial::BilinearForm< Real, Real > &bf)
virtual void data(concepts::Cloneable *d)
Sets the data to be shared.
virtual MaxwellSharedData * data() const
Returns the data to be shared.
virtual RotRot * clone() const
double Real
Definition typedefs.hh:39