Files
mfem/mesh/quadrilateral.hpp
T
2020-05-16 17:40:27 -07:00

77 lines
2.2 KiB
C++

// Copyright (c) 2010-2020, Lawrence Livermore National Security, LLC. Produced
// at the Lawrence Livermore National Laboratory. All Rights reserved. See files
// LICENSE and NOTICE for details. LLNL-CODE-806117.
//
// This file is part of the MFEM library. For more information and source code
// availability visit https://mfem.org.
//
// MFEM is free software; you can redistribute it and/or modify it under the
// terms of the BSD-3 license. We welcome feedback and contributions, see file
// CONTRIBUTING.md for details.
#ifndef MFEM_QUADRILATERAL
#define MFEM_QUADRILATERAL
#include "../config/config.hpp"
#include "element.hpp"
namespace mfem
{
/// Data type quadrilateral element
class Quadrilateral : public Element
{
protected:
int indices[4];
public:
typedef Geometry::Constants<Geometry::SQUARE> geom_t;
Quadrilateral() : Element(Geometry::SQUARE) {}
/// Constructs quadrilateral by specifying the indices and the attribute.
Quadrilateral(const int *ind, int attr = 1);
/// Constructs quadrilateral by specifying the indices and the attribute.
Quadrilateral(int ind1, int ind2, int ind3, int ind4, int attr = 1);
/// Return element's type
Type GetType() const { return Element::QUADRILATERAL; }
/// Set the vertices according to the given input.
virtual void SetVertices(const int *ind);
/// Returns the indices of the element's vertices.
virtual void GetVertices(Array<int> &v) const;
virtual int *GetVertices() { return indices; }
virtual int GetNVertices() const { return 4; }
virtual int GetNEdges() const { return (4); }
virtual const int *GetEdgeVertices(int ei) const
{ return geom_t::Edges[ei]; }
/// @deprecated Use GetNFaces(void) and GetNFaceVertices(int) instead.
MFEM_DEPRECATED virtual int GetNFaces(int &nFaceVertices) const
{ nFaceVertices = 0; return 0; }
virtual int GetNFaces() const { return 0; }
virtual int GetNFaceVertices(int) const { return 0; }
virtual const int *GetFaceVertices(int fi) const { return NULL; }
virtual Element *Duplicate(Mesh *m) const
{ return new Quadrilateral(indices, attribute); }
virtual ~Quadrilateral() { }
};
extern class BiLinear2DFiniteElement QuadrilateralFE;
}
#endif