Nektar++
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Public Member Functions | Static Public Member Functions | Static Public Attributes | List of all members
Nektar::Utilities::Quadrilateral Class Reference

A 2-dimensional four-sided element. More...

#include <MeshElements.h>

Inheritance diagram for Nektar::Utilities::Quadrilateral:
Inheritance graph
[legend]
Collaboration diagram for Nektar::Utilities::Quadrilateral:
Collaboration graph
[legend]

Public Member Functions

 Quadrilateral (ElmtConfig pConf, std::vector< NodeSharedPtr > pNodeList, std::vector< int > pTagList)
 Create a quadrilateral element.
 Quadrilateral (const Quadrilateral &pSrc)
virtual ~Quadrilateral ()
virtual
SpatialDomains::GeometrySharedPtr 
GetGeom (int coordDim)
 Generate a Nektar++ geometry object for this element.
virtual void Complete (int order)
 Complete this object.
- Public Member Functions inherited from Nektar::Utilities::Element
 Element (ElmtConfig pConf, unsigned int pNumNodes, unsigned int pGotNodes)
unsigned int GetId () const
 Returns the ID of the element (or associated edge or face for boundary elements).
unsigned int GetDim () const
 Returns the expansion dimension of the element.
ElmtConfig GetConf () const
 Returns the configuration of the element.
std::string GetTag () const
 Returns the tag which defines the element shape.
NodeSharedPtr GetVertex (unsigned int i) const
 Access a vertex node.
EdgeSharedPtr GetEdge (unsigned int i) const
 Access an edge.
FaceSharedPtr GetFace (unsigned int i) const
 Access a face.
std::vector< NodeSharedPtrGetVertexList () const
 Access the list of vertex nodes.
std::vector< EdgeSharedPtrGetEdgeList () const
 Access the list of edges.
std::vector< FaceSharedPtrGetFaceList () const
 Access the list of faces.
std::vector< NodeSharedPtrGetVolumeNodes () const
 Access the list of volume nodes.
void SetVolumeNodes (std::vector< NodeSharedPtr > &nodes)
LibUtilities::PointsType GetCurveType () const
void SetCurveType (LibUtilities::PointsType cT)
unsigned int GetNodeCount () const
 Returns the total number of nodes (vertices, edge nodes and face nodes and volume nodes).
std::vector< int > GetTagList () const
 Access the list of tags associated with this element.
unsigned int GetVertexCount () const
 Returns the number of vertices.
unsigned int GetEdgeCount () const
 Returns the number of edges.
unsigned int GetFaceCount () const
 Returns the number of faces.
void SetId (unsigned int p)
 Change the ID of the element.
void SetVertex (unsigned int p, NodeSharedPtr pNew)
 Replace a vertex with another vertex object.
void SetEdge (unsigned int p, EdgeSharedPtr pNew)
 Replace an edge with another edge object.
void SetFace (unsigned int p, FaceSharedPtr pNew)
 Replace a face with another face object.
void SetEdgeLink (EdgeSharedPtr pLink)
 Set a correspondence between this element and an edge (2D boundary element).
EdgeSharedPtr GetEdgeLink ()
 Get correspondence between this element and an edge.
void SetFaceLink (FaceSharedPtr pLink)
 Set a correspondence between this element and a face (3D boundary element).
FaceSharedPtr GetFaceLink ()
 Get correspondence between this element and a face.
void SetBoundaryLink (int i, int j)
 Set a correspondence between edge or face i and its representative boundary element m->element[expDim-1][j].
int GetBoundaryLink (int i)
 Get the location of the boundary face/edge i for this element.
void SetTagList (const std::vector< int > &tags)
 Set the list of tags associated with this element.
virtual std::string GetXmlString () const
 Generate a list of vertices (1D), edges (2D), or faces (3D).
std::vector< NodeSharedPtrtensorNodeOrdering (const std::vector< NodeSharedPtr > &nodes, int n) const
 Reorders Gmsh ordered nodes into a row-by-row ordering required for Nektar++ curve tags.
std::string GetXmlCurveString () const
 Generates a string listing the coordinates of all nodes associated with this element.
int GetMaxOrder ()
 Obtain the order of an element by looking at edges.
void Print ()

Static Public Member Functions

static ElementSharedPtr create (ElmtConfig pConf, std::vector< NodeSharedPtr > pNodeList, std::vector< int > pTagList)
 Creates an instance of this class.
static unsigned int GetNumNodes (ElmtConfig pConf)
 Return the number of nodes defining a quadrilateral.

Static Public Attributes

static LibUtilities::ShapeType m_type
 Element type.

Additional Inherited Members

- Protected Attributes inherited from Nektar::Utilities::Element
unsigned int m_id
 ID of the element.
unsigned int m_dim
 Dimension of the element.
ElmtConfig m_conf
 Contains configuration of the element.
std::string m_tag
 Tag character describing the element.
std::vector< int > m_taglist
 List of integers specifying properties of the element.
std::vector< NodeSharedPtrm_vertex
 List of element vertex nodes.
std::vector< EdgeSharedPtrm_edge
 List of element edges.
std::vector< FaceSharedPtrm_face
 List of element faces.
std::vector< NodeSharedPtrm_volumeNodes
 List of element volume nodes.
LibUtilities::PointsType m_curveType
 Volume curve type.
EdgeSharedPtr m_edgeLink
 Pointer to the corresponding edge if element is a 2D boundary.
FaceSharedPtr m_faceLink
 Pointer to the corresponding face if element is a 3D boundary.
std::map< int, int > m_boundaryLinks
 Array mapping faces/edges to the location of the appropriate boundary elements in m->element.
SpatialDomains::GeometrySharedPtr m_geom
 Nektar++ geometry object for this element.

Detailed Description

A 2-dimensional four-sided element.

Definition at line 1303 of file MeshElements.h.

Constructor & Destructor Documentation

Nektar::Utilities::Quadrilateral::Quadrilateral ( ElmtConfig  pConf,
std::vector< NodeSharedPtr pNodeList,
std::vector< int >  pTagList 
)

Create a quadrilateral element.

Definition at line 677 of file MeshElements.cpp.

References Nektar::iterator, Nektar::Utilities::Element::m_conf, Nektar::Utilities::Element::m_dim, Nektar::Utilities::Element::m_edge, Nektar::Utilities::ElmtConfig::m_edgeCurveType, Nektar::Utilities::ElmtConfig::m_faceNodes, Nektar::Utilities::ElmtConfig::m_order, Nektar::Utilities::ElmtConfig::m_reorient, Nektar::Utilities::Element::m_tag, Nektar::Utilities::Element::m_taglist, Nektar::Utilities::Element::m_vertex, and Nektar::Utilities::Element::m_volumeNodes.

: Element(pConf, GetNumNodes(pConf), pNodeList.size())
{
m_tag = "Q";
m_dim = 2;
m_taglist = pTagList;
int n = m_conf.m_order-1;
// Create a map to relate edge nodes to a pair of vertices
// defining an edge. This is based on the ordering produced by
// gmsh.
map<pair<int,int>, int> edgeNodeMap;
map<pair<int,int>, int>::iterator it;
edgeNodeMap[pair<int,int>(1,2)] = 5;
edgeNodeMap[pair<int,int>(2,3)] = 5 + n;
edgeNodeMap[pair<int,int>(3,4)] = 5 + 2*n;
edgeNodeMap[pair<int,int>(4,1)] = 5 + 3*n;
// Add vertices. This logic will determine (in 2D) whether the
// element is clockwise (sum > 0) or counter-clockwise (sum < 0).
NekDouble sum = 0.0;
for (int i = 0; i < 4; ++i) {
int o = (i+1) % 4;
m_vertex.push_back(pNodeList[i]);
sum += (pNodeList[o]->m_x - pNodeList[i]->m_x) *
(pNodeList[o]->m_y + pNodeList[i]->m_y);
}
// Create edges (with corresponding set of edge points)
for (it = edgeNodeMap.begin(); it != edgeNodeMap.end(); ++it)
{
vector<NodeSharedPtr> edgeNodes;
if (m_conf.m_order > 1) {
for (int j = it->second; j < it->second + n; ++j) {
edgeNodes.push_back(pNodeList[j-1]);
}
}
m_edge.push_back(EdgeSharedPtr(new Edge(pNodeList[it->first.first-1],
pNodeList[it->first.second-1],
edgeNodes,
}
if (pConf.m_reorient)
{
if (sum > 0.0)
{
reverse(m_edge.begin(), m_edge.end());
}
}
{
m_volumeNodes.insert(m_volumeNodes.begin(),
pNodeList.begin()+4*m_conf.m_order,
pNodeList.end());
}
}
Nektar::Utilities::Quadrilateral::Quadrilateral ( const Quadrilateral pSrc)
virtual Nektar::Utilities::Quadrilateral::~Quadrilateral ( )
inlinevirtual

Definition at line 1327 of file MeshElements.h.

{}

Member Function Documentation

void Nektar::Utilities::Quadrilateral::Complete ( int  order)
virtual

Complete this object.

Reimplemented from Nektar::Utilities::Element.

Definition at line 738 of file MeshElements.cpp.

References Nektar::LibUtilities::eGaussLobattoLegendre, Nektar::LibUtilities::eOrtho_A, GetGeom(), Nektar::Utilities::Element::m_conf, Nektar::Utilities::Element::m_edge, Nektar::Utilities::ElmtConfig::m_faceNodes, Nektar::Utilities::ElmtConfig::m_order, Nektar::Utilities::ElmtConfig::m_volumeNodes, and Nektar::Utilities::Element::m_volumeNodes.

{
LibUtilities::BasisKey C0(
LibUtilities::PointsKey(
boost::dynamic_pointer_cast<SpatialDomains::QuadGeom>(
this->GetGeom(3));
// Create a quad.
MemoryManager<LocalRegions::QuadExp>::AllocateSharedPtr(
C0, C0, geom);
// Get coordinate array for quadrilateral.
int nqtot = quad->GetTotPoints();
Array<OneD, NekDouble> alloc(3*nqtot);
Array<OneD, NekDouble> x (alloc );
Array<OneD, NekDouble> y (alloc+1*nqtot);
Array<OneD, NekDouble> z (alloc+2*nqtot);
quad->GetCoords(x, y, z);
// Now extract points from the co-ordinate arrays into the edge
// and face nodes. First, extract edge-interior nodes.
int edgeMap[4][2] = {{0,1},{order,order+1},
{nqtot-1,-1},{order*(order+1),-order-1}};
for (int i = 0; i < 4; ++i)
{
int pos = edgeMap[i][0] + edgeMap[i][1];
m_edge[i]->m_edgeNodes.clear();
/*
cout << "EDGE " << i << " = "
<< m_edge[i]->m_n1->m_x << "," << m_edge[i]->m_n1->m_y << " "
<< m_edge[i]->m_n2->m_x << "," << m_edge[i]->m_n2->m_y << endl;
*/
for (int j = 1; j < order; ++j, pos += edgeMap[i][1])
{
//cout << "INSERTING: " << x[pos] << " " << y[pos] << endl;
m_edge[i]->m_edgeNodes.push_back(
NodeSharedPtr(new Node(0, x[pos], y[pos], z[pos])));
}
}
// Extract face-interior nodes.
m_volumeNodes.clear();
for (int i = 1; i < order; ++i)
{
int pos = i*(order+1);
for (int j = 1; j < order; ++j)
{
m_volumeNodes.push_back(
NodeSharedPtr(new Node(0, x[pos+j], y[pos+j], z[pos+j])));
//cout << "here" << endl;
}
}
m_conf.m_order = order;
}
static ElementSharedPtr Nektar::Utilities::Quadrilateral::create ( ElmtConfig  pConf,
std::vector< NodeSharedPtr pNodeList,
std::vector< int >  pTagList 
)
inlinestatic

Creates an instance of this class.

Definition at line 1306 of file MeshElements.h.

References Nektar::Utilities::Element::GetEdgeList().

{
ElementSharedPtr e = boost::shared_ptr<Element>(
new Quadrilateral(pConf, pNodeList, pTagList));
vector<EdgeSharedPtr> m_edges = e->GetEdgeList();
for (int i = 0; i < m_edges.size(); ++i)
{
m_edges[i]->m_elLink.push_back(pair<ElementSharedPtr, int>(e,i));
}
return e;
}
SpatialDomains::GeometrySharedPtr Nektar::Utilities::Quadrilateral::GetGeom ( int  coordDim)
virtual

Generate a Nektar++ geometry object for this element.

Reimplemented from Nektar::Utilities::Element.

Definition at line 803 of file MeshElements.cpp.

References Nektar::SpatialDomains::SegGeom::GetEdgeOrientation(), Nektar::Utilities::Element::m_edge, Nektar::Utilities::Element::m_id, and Nektar::Utilities::Element::m_vertex.

Referenced by Complete().

{
for (int i = 0; i < 4; ++i)
{
edges[i] = m_edge [i]->GetGeom(coordDim);
verts[i] = m_vertex[i]->GetGeom(coordDim);
}
StdRegions::Orientation edgeorient[4] = {
};
ret = MemoryManager<SpatialDomains::QuadGeom>::
AllocateSharedPtr(m_id, verts, edges, edgeorient);
return ret;
}
unsigned int Nektar::Utilities::Quadrilateral::GetNumNodes ( ElmtConfig  pConf)
static

Return the number of nodes defining a quadrilateral.

Definition at line 831 of file MeshElements.cpp.

References Nektar::Utilities::ElmtConfig::m_faceNodes, and Nektar::Utilities::ElmtConfig::m_order.

Referenced by Nektar::Utilities::InputGmsh::GetNnodes().

{
int n = pConf.m_order;
if (!pConf.m_faceNodes)
return 4*n;
else
return (n+1)*(n+1);
}

Member Data Documentation

LibUtilities::ShapeType Nektar::Utilities::Quadrilateral::m_type
static
Initial value:
"Quadrilateral")

Element type.

Definition at line 1321 of file MeshElements.h.