Salome HOME
Update copyrights
[tools/medcoupling.git] / src / INTERP_KERNEL / GaussPoints / InterpKernelGaussCoords.hxx
1 // Copyright (C) 2007-2019  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #ifndef __INTERPKERNELGAUSSCOORDS_HXX__
21 #define __INTERPKERNELGAUSSCOORDS_HXX__
22
23 #include "INTERPKERNELDefines.hxx"
24 #include "NormalizedUnstructuredMesh.hxx"
25 #include "InterpKernelException.hxx"
26
27 #include <vector>
28
29 namespace INTERP_KERNEL 
30 {
31   typedef std::vector<double> DataVector;
32   typedef std::vector<int>    IndexVector;
33
34   //Class to store Gauss Points information
35   class GaussInfo 
36   {
37   public:
38     INTERPKERNEL_EXPORT GaussInfo( NormalizedCellType theGeometry,
39                                    const DataVector& theGaussCoord,
40                                    int theNbGauss,
41                                    const DataVector& theReferenceCoord,
42                                    int theNbRef
43                                    );
44     INTERPKERNEL_EXPORT ~GaussInfo();
45
46     INTERPKERNEL_EXPORT NormalizedCellType getCellType() const;    
47
48     INTERPKERNEL_EXPORT int getGaussCoordDim() const;
49     INTERPKERNEL_EXPORT int getReferenceCoordDim() const;
50     INTERPKERNEL_EXPORT DataVector getGaussCoords() const { return _my_gauss_coord; }
51     INTERPKERNEL_EXPORT DataVector getRefCoords() const { return _my_reference_coord; }
52     INTERPKERNEL_EXPORT NormalizedCellType getGeoType() const { return _my_geometry; }
53
54     INTERPKERNEL_EXPORT int getNbGauss() const;
55     INTERPKERNEL_EXPORT int getNbRef() const;
56
57     INTERPKERNEL_EXPORT GaussInfo convertToLinear() const;
58
59     INTERPKERNEL_EXPORT const double* getFunctionValues( const int theGaussId ) const;
60
61     INTERPKERNEL_EXPORT void initLocalInfo();
62     
63     INTERPKERNEL_EXPORT static std::vector<double> NormalizeCoordinatesIfNecessary(NormalizedCellType ct, int inputDim, const std::vector<double>& inputArray);
64
65   public:
66     static const double SEG2A_REF[2];
67     static const double SEG2B_REF[2];
68     static const double SEG3_REF[3];
69     static const double TRIA3A_REF[6];
70     static const double TRIA3B_REF[6];
71     static const double TRIA6A_REF[12];
72     static const double TRIA6B_REF[12];
73     static const double TRIA7A_REF[14];
74     static const double QUAD4A_REF[8];
75     static const double QUAD4B_REF[8];
76     static const double QUAD8A_REF[16];
77     static const double QUAD8B_REF[16];
78     static const double QUAD9A_REF[18];
79     static const double TETRA4A_REF[12];
80     static const double TETRA4B_REF[12];
81     static const double TETRA10A_REF[30];
82     static const double TETRA10B_REF[30];
83     static const double PYRA5A_REF[15];
84     static const double PYRA5B_REF[15];
85     static const double PYRA13A_REF[39];
86     static const double PYRA13B_REF[39];
87     static const double PENTA6A_REF[18];
88     static const double PENTA6B_REF[18];
89     static const double PENTA15A_REF[45];
90     static const double PENTA15B_REF[45];
91     static const double HEXA8A_REF[24];
92     static const double HEXA8B_REF[24];
93     static const double HEXA20A_REF[60];
94     static const double HEXA20B_REF[60];
95     static const double HEXA27A_REF[81];
96   protected:
97     static bool IsSatisfy(const std::vector<double>& ref1, const std::vector<double>& ref2);
98     bool isSatisfy();
99     
100     void point1Init();
101     
102     //1D
103     void seg2aInit();
104     void seg2bInit();
105     void seg3Init();
106
107     //2D
108     void tria3aInit();
109     void tria3bInit();
110     void tria6aInit();
111     void tria6bInit();
112     void tria7aInit();
113
114     void quad4aInit();
115     static void Quad4aInit(GaussInfo& obj) { obj.quad4aInit(); }
116     void quad4bInit();
117     static void Quad4bInit(GaussInfo& obj) { obj.quad4bInit(); }
118     void quad4cInit();
119     static void Quad4cInit(GaussInfo& obj) { obj.quad4cInit(); }
120     void quad4DegSeg2Init();
121     static void Quad4DegSeg2Init(GaussInfo& obj) { obj.quad4DegSeg2Init(); }
122     void quad8aInit();
123     void quad8bInit();
124     void quad9aInit();
125
126     //3D
127     void tetra4aInit();
128     void tetra4bInit();
129     void tetra10aInit();
130     void tetra10bInit();
131
132     void pyra5aInit();
133     void pyra5bInit();
134     void pyra13aInit();
135     void pyra13bInit();
136
137     void penta6aInit();
138     static void Penta6aInit(GaussInfo& obj) { obj.penta6aInit(); }
139     void penta6bInit();
140     static void Penta6bInit(GaussInfo& obj) { obj.penta6bInit(); }
141     void penta6DegTria3aInit();
142     static void Penta6DegTria3aInit(GaussInfo& obj) { obj.penta6DegTria3aInit(); }
143     void penta6DegTria3bInit();
144     static void Penta6DegTria3bInit(GaussInfo& obj) { obj.penta6DegTria3bInit(); }
145     
146     void penta15aInit();
147     static void Penta15aInit(GaussInfo& obj) { obj.penta15aInit(); }
148     void penta15bInit();
149     static void Penta15bInit(GaussInfo& obj) { obj.penta15bInit(); }
150
151     void hexa8aInit();
152     static void Hexa8aInit(GaussInfo& obj) { obj.hexa8aInit(); }
153     void hexa8bInit();
154     static void Hexa8bInit(GaussInfo& obj) { obj.hexa8bInit(); }
155     void hexa8DegQuad4aInit();
156     static void Hexa8DegQuad4aInit(GaussInfo& obj) { obj.hexa8DegQuad4aInit(); }
157     void hexa8DegQuad4bInit();
158     static void Hexa8DegQuad4bInit(GaussInfo& obj) { obj.hexa8DegQuad4bInit(); }
159     void hexa8DegQuad4cInit();
160     static void Hexa8DegQuad4cInit(GaussInfo& obj) { obj.hexa8DegQuad4cInit(); }
161     void hexa20aInit();
162     void hexa20bInit();
163     void hexa27aInit();
164
165   private:
166     //INFORMATION from MEDMEM
167     NormalizedCellType _my_geometry;               //Cell type
168
169     int                _my_nb_gauss;                //Nb of the gauss points for element
170     DataVector         _my_gauss_coord;             //Gauss coordinates
171
172     int                _my_nb_ref;                  //Nb of the nodes for element:
173                                                  //NORM_SEG2 - 2
174                                                  //NORM_SEG3 - 3
175                                                  //NORM_TRI3 - 3
176                                                  //.............
177
178     DataVector         _my_reference_coord;         //Reference coordinates
179
180     //LOCAL INFORMATION
181     DataVector         _my_local_reference_coord;    //Vector to store reference coordinates
182     int                _my_local_ref_dim;            //Dimension of the local reference coordinates:
183                                                  // (x)       - 1D case
184                                                  // (x, y)    - 2D case
185                                                  // (x, y, z) - 3D case
186     int                _my_local_nb_ref;             //Nb of the local reference coordinates
187
188     DataVector         _my_function_value;          //Shape Function values
189   };
190
191
192   //Class for calculation of the coordinates of the gauss points 
193   class GaussCoords 
194   {
195   public:
196
197     INTERPKERNEL_EXPORT GaussCoords();
198     INTERPKERNEL_EXPORT ~GaussCoords();
199
200     INTERPKERNEL_EXPORT void addGaussInfo( NormalizedCellType theGeometry,
201                                            int coordDim,
202                                            const double* theGaussCoord,
203                                            int theNbGauss,
204                                            const double* theReferenceCoord,
205                                            int theNbRef);
206
207     INTERPKERNEL_EXPORT double* calculateCoords( NormalizedCellType theGeometry, 
208                                                  const double* theNodeCoords, 
209                                                  const int theSpaceDim,
210                                                  const int* theIndex);
211
212     INTERPKERNEL_EXPORT void calculateCoords( NormalizedCellType theGeometry, 
213                                               const double* theNodeCoords, 
214                                               const int theSpaceDim,
215                                               const int* theIndex,
216                                               double *result);
217   private:
218     const GaussInfo *getInfoGivenCellType(NormalizedCellType cellType);
219     void calculateCoordsAlg(const GaussInfo *info, const double* theNodeCoords, const int theSpaceDim, const int *theIndex,
220                             double *result);
221   private:
222     typedef std::vector<GaussInfo*> GaussInfoVector;
223     GaussInfoVector _my_gauss_info;
224   };
225 }
226 #endif //INTERPKERNELGAUSSCOORDS