Skip to content
Snippets Groups Projects
Commit d4fd0b97 authored by wenqing's avatar wenqing Committed by Dmitri Naumov
Browse files

[Element] Added a member of space_dimension

parent 278331c0
No related branches found
No related tags found
No related merge requests found
...@@ -184,6 +184,9 @@ public: ...@@ -184,6 +184,9 @@ public:
friend std::ostream& operator<<(std::ostream& os, Element const& e); friend std::ostream& operator<<(std::ostream& os, Element const& e);
#endif // NDEBUG #endif // NDEBUG
/// Dimension of the space, where the element exists.
unsigned space_dimension_ = 3u;
protected: protected:
/// Constructor for a generic mesh element without an array of mesh nodes. /// Constructor for a generic mesh element without an array of mesh nodes.
/// @param id element id /// @param id element id
...@@ -201,7 +204,6 @@ protected: ...@@ -201,7 +204,6 @@ protected:
/// Sets the neighbor over the face with \c face_id to the given \c /// Sets the neighbor over the face with \c face_id to the given \c
/// neighbor. /// neighbor.
void setNeighbor(Element* neighbor, unsigned const face_id); void setNeighbor(Element* neighbor, unsigned const face_id);
}; /* class */ }; /* class */
/// Returns true if elem is a neighbour of this element and false otherwise. /// Returns true if elem is a neighbour of this element and false otherwise.
......
...@@ -21,6 +21,8 @@ TemplateElement<ELEMENT_RULE>::TemplateElement(Node* nodes[n_all_nodes], std::si ...@@ -21,6 +21,8 @@ TemplateElement<ELEMENT_RULE>::TemplateElement(Node* nodes[n_all_nodes], std::si
this->_neighbors = new Element*[getNumberOfNeighbors()]; this->_neighbors = new Element*[getNumberOfNeighbors()];
std::fill(this->_neighbors, this->_neighbors + getNumberOfNeighbors(), nullptr); std::fill(this->_neighbors, this->_neighbors + getNumberOfNeighbors(), nullptr);
this->_content = ELEMENT_RULE::computeVolume(this->_nodes); this->_content = ELEMENT_RULE::computeVolume(this->_nodes);
this->space_dimension_ = ELEMENT_RULE::dimension;
} }
template <class ELEMENT_RULE> template <class ELEMENT_RULE>
...@@ -32,6 +34,8 @@ TemplateElement<ELEMENT_RULE>::TemplateElement(std::array<Node*, n_all_nodes> co ...@@ -32,6 +34,8 @@ TemplateElement<ELEMENT_RULE>::TemplateElement(std::array<Node*, n_all_nodes> co
this->_neighbors = new Element*[getNumberOfNeighbors()]; this->_neighbors = new Element*[getNumberOfNeighbors()];
std::fill(this->_neighbors, this->_neighbors + getNumberOfNeighbors(), nullptr); std::fill(this->_neighbors, this->_neighbors + getNumberOfNeighbors(), nullptr);
this->_content = ELEMENT_RULE::computeVolume(this->_nodes); this->_content = ELEMENT_RULE::computeVolume(this->_nodes);
this->space_dimension_ = ELEMENT_RULE::dimension;
} }
template <class ELEMENT_RULE> template <class ELEMENT_RULE>
...@@ -49,6 +53,8 @@ TemplateElement<ELEMENT_RULE>::TemplateElement(const TemplateElement &e) ...@@ -49,6 +53,8 @@ TemplateElement<ELEMENT_RULE>::TemplateElement(const TemplateElement &e)
this->_neighbors[i] = e._neighbors[i]; this->_neighbors[i] = e._neighbors[i];
} }
this->_content = e.getContent(); this->_content = e.getContent();
this->space_dimension_ = e.space_dimension_;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment