Linear triangular element. More...
#include <element.hh>


Public Types | |
| typedef F | type |
Public Member Functions | |
| virtual const concepts::Triangle3d & | cell () const |
| Returns the cell on which the element is built. | |
| Real3d | elemMap (const Real coord_local) const |
| Real3d | elemMap (const Real2d &coord_local) const |
| Real3d | elemMap (const Real3d &coord_local) const |
| virtual const concepts::ElementGraphics< F > * | graphics () const |
| Linear3d000 (const concepts::Triangle3d &cell, uint idx[]) | |
| Constructor. | |
| const concepts::Unit3d & | n () const |
| Returns the normal of the element. | |
| const concepts::Triangle & | support () const |
| Returns the support. | |
| const concepts::TMatrixBase< F > & | T () const |
| Returns the T matix of the element. | |
| uint & | tag () |
| Returns the tag. | |
| const concepts::Real3d & | vertex (uint i) const |
| Returns a vertex of triangle. | |
Protected Member Functions | |
| std::ostream & | info (std::ostream &os) const |
| Returns information in an output stream. | |
Private Attributes | |
| const concepts::Triangle3d & | cell_ |
| concepts::Unit3d | n_ |
| Normal of the element. | |
| concepts::TIndex< F > | T_ |
| T matrix. | |
| concepts::Real3d | v_ [3] |
| Vertices of the triangle. | |
Static Private Attributes | |
| static std::auto_ptr < concepts::ElementGraphics< F > > | graphics_ |
Linear triangular element.
The vertices are computed only once in the contructor.
| F | Field of the element (valid Real or Cmplx). |
Definition at line 139 of file element.hh.
typedef F concepts::Element< F >::type [inherited] |
Definition at line 53 of file element.hh.
| bem::Linear3d000< F >::Linear3d000 | ( | const concepts::Triangle3d & | cell, |
| uint | idx[] | ||
| ) |
Constructor.
| cell | Support |
| idx | Map from the local to the global DoF |
| virtual const concepts::Triangle3d& bem::Linear3d000< F >::cell | ( | ) | const [inline, virtual] |
Returns the cell on which the element is built.
Implements concepts::ElementWithCell< F >.
Definition at line 158 of file element.hh.
| Real3d concepts::ElementWithCell< F >::elemMap | ( | const Real | coord_local | ) | const [inline, inherited] |
Definition at line 83 of file element.hh.
| Real3d concepts::ElementWithCell< F >::elemMap | ( | const Real2d & | coord_local | ) | const [inline, inherited] |
Definition at line 87 of file element.hh.
| Real3d concepts::ElementWithCell< F >::elemMap | ( | const Real3d & | coord_local | ) | const [inline, inherited] |
Definition at line 91 of file element.hh.
| virtual const concepts::ElementGraphics<F>* bem::Linear3d000< F >::graphics | ( | ) | const [virtual] |
Reimplemented from concepts::Element< F >.
| std::ostream& bem::Linear3d000< F >::info | ( | std::ostream & | os | ) | const [protected, virtual] |
Returns information in an output stream.
Reimplemented from concepts::OutputOperator.
| const concepts::Unit3d& bem::Linear3d000< F >::n | ( | ) | const [inline] |
Returns the normal of the element.
Definition at line 150 of file element.hh.
| const concepts::Triangle & Linear3d000< F >::support | ( | ) | const [inline] |
Returns the support.
Definition at line 178 of file element.hh.
| const concepts::TMatrixBase<F>& bem::Linear3d000< F >::T | ( | ) | const [inline, virtual] |
Returns the T matix of the element.
Implements concepts::Element< F >.
Definition at line 148 of file element.hh.
| uint& concepts::Element< F >::tag | ( | ) | [inline, inherited] |
Returns the tag.
Definition at line 65 of file element.hh.
| const concepts::Real3d& bem::Linear3d000< F >::vertex | ( | uint | i | ) | const [inline] |
Returns a vertex of triangle.
| i | Number of vertex. |
Definition at line 156 of file element.hh.
const concepts::Triangle3d& bem::Linear3d000< F >::cell_ [private] |
Definition at line 166 of file element.hh.
std::auto_ptr<concepts::ElementGraphics<F> > bem::Linear3d000< F >::graphics_ [static, private] |
Definition at line 174 of file element.hh.
concepts::Unit3d bem::Linear3d000< F >::n_ [private] |
Normal of the element.
Definition at line 172 of file element.hh.
concepts::TIndex<F> bem::Linear3d000< F >::T_ [private] |
T matrix.
Definition at line 168 of file element.hh.
concepts::Real3d bem::Linear3d000< F >::v_[3] [private] |
Vertices of the triangle.
Definition at line 170 of file element.hh.