2D element map for an parabel arc. More...
#include <elementMaps.hh>


Public Member Functions | |
| virtual ParabelMappingEdge2d * | clone () const |
| Virtual copy constructor. | |
| virtual Real | curvature (const Real t, uint n=0) const |
| Returns the n-th derivative of the curvature. | |
| virtual Real2d | derivative (const Real t, const uint n=1) const |
| Returns the n-th derivative. | |
| virtual MappingEdge2d * | inverse () const |
| Returns the mapping of the edge in inverse direction. | |
| Real2d | n0 (const Real t) const |
| Returns the normalised right normal vector. | |
| virtual Real2d | normal (const Real t) const |
| Returns the right normal vector, length is that of the derivative. | |
| virtual Real2d | operator() (const Real t) const |
| Application operator. | |
| ParabelMappingEdge2d (const ParabelMappingEdge2d &edgemap) | |
| Copy Constructor. | |
| ParabelMappingEdge2d (const Real2d vtx0, const Real2d vtx1, const Real2d cusp, const Real2d ap) | |
| Constructor. | |
| ParabelMappingEdge2d * | part (const Real t0, const Real t1) const |
| Returns a new object of an element map for a rectangular part of the reference cell defined by the two points. | |
| 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 | vtx_ [2] |
| Coordinates of the vertices at either end of the edge. | |
Private Member Functions | |
| const Real | s_ (const Real t) const |
| Returns the parameter s on the parabel arc. | |
Private Attributes | |
| const Real2d | cusp_ |
| Coordinates of the cusp. | |
| const Real | deltas_ |
| Real | p_ |
| Radius of curvature circle at the cusp. | |
| const Real | s0_ |
| Values describing the vertices on the parabel. | |
| const UnitNd< 2 > | v_ |
| Direction of the aperture and clockwise by 90 degree rotated vector. | |
| const UnitNd< 2 > | vrot_ |
2D element map for an parabel arc.
The edge is given by two vertices, the cusp (Scheitelpunkt) and the direction direction of parabel aperture.
Definition at line 375 of file elementMaps.hh.
| concepts::ParabelMappingEdge2d::ParabelMappingEdge2d | ( | const Real2d | vtx0, |
| const Real2d | vtx1, | ||
| const Real2d | cusp, | ||
| const Real2d | ap | ||
| ) |
Constructor.
| vtx0,vtx1 | coordinates of the vertices |
| cusp | coordinates of the cusp |
| ap | direction of the aperture, sign not important |
| concepts::ParabelMappingEdge2d::ParabelMappingEdge2d | ( | const ParabelMappingEdge2d & | edgemap | ) |
Copy Constructor.
| virtual ParabelMappingEdge2d* concepts::ParabelMappingEdge2d::clone | ( | ) | const [virtual] |
Virtual copy constructor.
Implements concepts::MappingEdge2d.
| virtual Real concepts::MappingEdge2d::curvature | ( | const Real | t, |
| uint | n = 0 |
||
| ) | const [virtual, inherited] |
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 in concepts::InverseMappingEdge2d, concepts::MappingStraightEdge2d, concepts::CircleMappingEdge2d, and concepts::MappingParallelEdge2d.
| virtual Real2d concepts::ParabelMappingEdge2d::derivative | ( | const Real | t, |
| const uint | n = 1 |
||
| ) | const [virtual] |
Returns the n-th derivative.
Implements concepts::MappingEdge2d.
| virtual std::ostream& concepts::ParabelMappingEdge2d::info | ( | std::ostream & | os | ) | const [protected, virtual] |
Returns information in an output stream.
Reimplemented from concepts::MappingEdge2d.
| virtual MappingEdge2d* concepts::MappingEdge2d::inverse | ( | ) | const [virtual, inherited] |
Returns the mapping of the edge in inverse direction.
Reimplemented in concepts::PartMappingEdge2d, concepts::InverseMappingEdge2d, concepts::MappingStraightEdge2d, concepts::CircleMappingEdge2d, concepts::EllipseMappingEdge2d, and concepts::MappingQuadEdge2d.
Returns the normalised right normal vector.
Reimplemented in concepts::MappingParallelEdge2d.
Definition at line 105 of file elementMaps.hh.

Returns the right normal vector, length is that of the derivative.
Application operator.
Maps the point from the parameter domain onto the physical space.
Implements concepts::MappingEdge2d.
| ParabelMappingEdge2d* concepts::ParabelMappingEdge2d::part | ( | const Real | t0, |
| const Real | t1 | ||
| ) | const [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.
Returns the parameter s on the parabel arc.
| const Real2d& concepts::MappingEdge2d::vtx | ( | uint | i | ) | const [inline, inherited] |
Spit out one vertex of the edge.
Definition at line 122 of file elementMaps.hh.
const Real2d concepts::ParabelMappingEdge2d::cusp_ [private] |
Coordinates of the cusp.
Definition at line 399 of file elementMaps.hh.
const Real concepts::ParabelMappingEdge2d::deltas_ [private] |
Definition at line 401 of file elementMaps.hh.
Real concepts::ParabelMappingEdge2d::p_ [private] |
Radius of curvature circle at the cusp.
Definition at line 403 of file elementMaps.hh.
const Real concepts::ParabelMappingEdge2d::s0_ [private] |
Values describing the vertices on the parabel.
Definition at line 401 of file elementMaps.hh.
const UnitNd<2> concepts::ParabelMappingEdge2d::v_ [private] |
Direction of the aperture and clockwise by 90 degree rotated vector.
Definition at line 397 of file elementMaps.hh.
const UnitNd<2> concepts::ParabelMappingEdge2d::vrot_ [private] |
Definition at line 397 of file elementMaps.hh.
Real2d concepts::MappingEdge2d::vtx_[2] [protected, inherited] |
Coordinates of the vertices at either end of the edge.
Definition at line 126 of file elementMaps.hh.