ECOGEN 4.0
Evolutive, Compressible, Open, Genuine, Easy, N-phase
Loading...
Searching...
No Matches
ElementPyramid.h
Go to the documentation of this file.
1//
2// ,---. ,--, .---. ,--, ,---. .-. .-.
3// | .-' .' .') / .-. ) .' .' | .-' | \| |
4// | `-. | |(_) | | |(_) | | __ | `-. | | |
5// | .-' \ \ | | | | \ \ ( _) | .-' | |\ |
6// | `--. \ `-. \ `-' / \ `-) ) | `--. | | |)|
7// /( __.' \____\ )---' )\____/ /( __.' /( (_)
8// (__) (_) (__) (__) (__)
9// Official webSite: https://code-mphi.github.io/ECOGEN/
10//
11// This file is part of ECOGEN.
12//
13// ECOGEN is the legal property of its developers, whose names
14// are listed in the copyright file included with this source
15// distribution.
16//
17// ECOGEN is free software: you can redistribute it and/or modify
18// it under the terms of the GNU General Public License as published
19// by the Free Software Foundation, either version 3 of the License,
20// or (at your option) any later version.
21//
22// ECOGEN is distributed in the hope that it will be useful,
23// but WITHOUT ANY WARRANTY; without even the implied warranty of
24// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25// GNU General Public License for more details.
26//
27// You should have received a copy of the GNU General Public License
28// along with ECOGEN (file LICENSE).
29// If not, see <http://www.gnu.org/licenses/>.
30
31#ifndef ELEMENTPYRAMID_H
32#define ELEMENTPYRAMID_H
33
34#include "ElementNS.h"
35#include "FaceTriangle.h"
36#include "FaceQuadrangle.h"
37
39{
40public:
42 virtual ~ElementPyramid();
43 virtual void construitFaces(const Coord* nodes, FaceNS** faces, int& indexMaxFaces, int** facesBuff, int* sumNodesBuff);
44 virtual void construitFacesSimplifie(int& iMax, int** facesBuff, int* sumNodesBuff);
45 virtual void attributFaceCommunicante(FaceNS** faces, const int& indexMaxFaces, const int& numberNodesInternal);
46 virtual int compteFaceCommunicante(std::vector<int*>& faces, std::vector<int>& sumNodesBuff);
47 virtual int compteFaceCommunicante(int& iMax, int** faces, int* sumNodesBuff);
48
49private:
50 virtual void computeVolume(const Coord* nodes);
51 virtual void computeLCFL(const Coord* nodes);
52
53 static const int TYPEGMSH;
54 static const int NUMBERNODES;
55 static const int NUMBERFACES; /* Here there are 1 quadrangle and 4 triangles*/
56 static const int TYPEVTK;
57};
58
59#endif // ELEMENTPYRAMID_H
Class for a coordinate system object such as coordinates of the vertex or a vector.
Definition Coord.h:43
Definition ElementNS.h:40
Definition ElementPyramid.h:39
virtual ~ElementPyramid()
Definition ElementPyramid.cpp:46
static const int NUMBERFACES
Definition ElementPyramid.h:55
virtual void attributFaceCommunicante(FaceNS **faces, const int &indexMaxFaces, const int &numberNodesInternal)
Definition ElementPyramid.cpp:190
virtual void computeVolume(const Coord *nodes)
Definition ElementPyramid.cpp:50
static const int NUMBERNODES
Definition ElementPyramid.h:54
virtual void computeLCFL(const Coord *nodes)
Definition ElementPyramid.cpp:63
virtual void construitFaces(const Coord *nodes, FaceNS **faces, int &indexMaxFaces, int **facesBuff, int *sumNodesBuff)
Definition ElementPyramid.cpp:80
virtual int compteFaceCommunicante(std::vector< int * > &faces, std::vector< int > &sumNodesBuff)
Definition ElementPyramid.cpp:248
static const int TYPEGMSH
Definition ElementPyramid.h:53
virtual void construitFacesSimplifie(int &iMax, int **facesBuff, int *sumNodesBuff)
Definition ElementPyramid.cpp:144
ElementPyramid()
Definition ElementPyramid.cpp:40
static const int TYPEVTK
Definition ElementPyramid.h:56
Coord vector(const Element *e)
Definition Element.cpp:59
Definition FaceNS.h:40