#include <elementMaps.hh>
Public Member Functions | |
MappingStraightEdge2d (const Real2d vtx0, const Real2d vtx1) | |
MappingStraightEdge2d (const MappingStraightEdge2d &edgemap) | |
Copy Constructor. | |
virtual MappingStraightEdge2d * | clone () const |
Virtual copy constructor. | |
virtual MappingStraightEdge2d * | inverse () const |
Returns the mapping of the edge in inverse direction. | |
virtual Real2d | operator() (const Real t) const |
virtual Real2d | derivative (const Real t, const uint n=1) const |
Returns the n-th derivative. | |
virtual Real | curvature (const Real t, uint n=0) const |
MappingStraightEdge2d * | part (const Real t0, const Real t1) const |
virtual Real2d | normal (const Real t) const |
Returns the right normal vector, length is that of the derivative. | |
Real2d | n0 (const Real t) const |
Returns the normalised right normal vector. | |
const Real2d & | vtx (uint i) const |
Spit out one vertex of the edge. | |
Protected Member Functions | |
virtual std::ostream & | info (std::ostream &os) const |
Returns information in an output stream. | |
Protected Attributes | |
Real2d | delta_ |
Vector from first to second vertex. | |
Real2d | vtx_ [2] |
Coordinates of the vertices at either end of the edge. | |
A 2D element map for an edge of a straight line. The parameter domain is the unit intervall [0,1].
Definition at line 218 of file elementMaps.hh.
Constructor
vtx0,vtx1 | coordinates of the vertices |
|
virtual |
Virtual copy constructor.
Implements concepts::MappingEdge2d.
Returns the n-th derivative of the curvature.
It's implemented in general for n = 0,1 and works with curved edges. Can be overwritten in derived classes for performance reasons.
Reimplemented from concepts::MappingEdge2d.
|
virtual |
Returns the n-th derivative.
Implements concepts::MappingEdge2d.
|
protectedvirtual |
Returns information in an output stream.
Reimplemented from concepts::MappingEdge2d.
|
inlinevirtual |
Returns the mapping of the edge in inverse direction.
Reimplemented from concepts::MappingEdge2d.
Definition at line 229 of file elementMaps.hh.
Returns the normalised right normal vector.
Definition at line 107 of file elementMaps.hh.
Application operator. Maps the point from the parameter domain onto the physical space.
Implements concepts::MappingEdge2d.
|
virtual |
Returns a new object of an element map for a rectangular part of the reference cell defined by the two points.
Reimplemented from concepts::MappingEdge2d.
Spit out one vertex of the edge.
Definition at line 124 of file elementMaps.hh.
|
protected |
Vector from first to second vertex.
Definition at line 243 of file elementMaps.hh.
|
protectedinherited |
Coordinates of the vertices at either end of the edge.
Definition at line 128 of file elementMaps.hh.