Salome HOME
2b6df8fa67cc1f9f871352c6ab0d2146b6487b5c
[modules/smesh.git] / src / SMDS / SMDS_VolumeTool.cxx
1 //  Copyright (C) 2007-2010  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 // File      : SMDS_VolumeTool.cxx
24 // Created   : Tue Jul 13 12:22:13 2004
25 // Author    : Edward AGAPOV (eap)
26 //
27 #ifdef _MSC_VER
28 #pragma warning(disable:4786)
29 #endif
30
31 #include "SMDS_VolumeTool.hxx"
32
33 #include "SMDS_MeshElement.hxx"
34 #include "SMDS_MeshNode.hxx"
35 #include "SMDS_PolyhedralVolumeOfNodes.hxx"
36 #include "SMDS_Mesh.hxx"
37
38 #include "utilities.h"
39
40 #include <map>
41 #include <float.h>
42 #include <math.h>
43
44 using namespace std;
45
46 // ======================================================
47 // Node indices in faces depending on volume orientation
48 // making most faces normals external
49 // ======================================================
50
51 /*
52 //           N3
53 //           +
54 //          /|\
55 //         / | \
56 //        /  |  \
57 //    N0 +---|---+ N1                TETRAHEDRON
58 //       \   |   /
59 //        \  |  /
60 //         \ | /
61 //          \|/
62 //           +
63 //           N2
64 */
65 static int Tetra_F [4][4] = { // FORWARD == EXTERNAL
66   { 0, 1, 2, 0 },              // All faces have external normals
67   { 0, 3, 1, 0 },
68   { 1, 3, 2, 1 },
69   { 0, 2, 3, 0 }}; 
70 static int Tetra_R [4][4] = { // REVERSED
71   { 0, 1, 2, 0 },             // All faces but a bottom have external normals
72   { 0, 1, 3, 0 },
73   { 1, 2, 3, 1 },
74   { 0, 3, 2, 0 }};
75 static int Tetra_RE [4][4] = { // REVERSED -> FORWARD (EXTERNAL)
76   { 0, 2, 1, 0 },              // All faces have external normals
77   { 0, 1, 3, 0 },
78   { 1, 2, 3, 1 },
79   { 0, 3, 2, 0 }};
80 static int Tetra_nbN [] = { 3, 3, 3, 3 };
81
82 //
83 //     PYRAMID
84 //
85 static int Pyramid_F [5][5] = { // FORWARD == EXTERNAL
86   { 0, 1, 2, 3, 0 },            // All faces have external normals
87   { 0, 4, 1, 0, 4 },
88   { 1, 4, 2, 1, 4 },
89   { 2, 4, 3, 2, 4 },
90   { 3, 4, 0, 3, 4 }}; 
91 static int Pyramid_R [5][5] = { // REVERSED
92   { 0, 1, 2, 3, 0 },            // All faces but a bottom have external normals
93   { 0, 1, 4, 0, 4 },
94   { 1, 2, 4, 1, 4 },
95   { 2, 3, 4, 2, 4 },
96   { 3, 0, 4, 3, 4 }}; 
97 static int Pyramid_RE [5][5] = { // REVERSED -> FORWARD (EXTERNAL)
98   { 0, 3, 2, 1, 0 },             // All faces but a bottom have external normals
99   { 0, 1, 4, 0, 4 },
100   { 1, 2, 4, 1, 4 },
101   { 2, 3, 4, 2, 4 },
102   { 3, 0, 4, 3, 4 }}; 
103 static int Pyramid_nbN [] = { 4, 3, 3, 3, 3 };
104
105 /*   
106 //            + N4
107 //           /|\
108 //          / | \
109 //         /  |  \
110 //        /   |   \
111 //    N3 +---------+ N5
112 //       |    |    |
113 //       |    + N1 |
114 //       |   / \   |                PENTAHEDRON
115 //       |  /   \  |
116 //       | /     \ |
117 //       |/       \|
118 //    N0 +---------+ N2
119 */
120 static int Penta_F [5][5] = { // FORWARD
121   { 0, 1, 2, 0, 0 },          // Top face has an internal normal, other - external
122   { 3, 4, 5, 3, 3 },          // 0 is bottom, 1 is top face
123   { 0, 2, 5, 3, 0 },
124   { 1, 4, 5, 2, 1 },
125   { 0, 3, 4, 1, 0 }}; 
126 static int Penta_R [5][5] = { // REVERSED
127   { 0, 1, 2, 0, 0 },          // Bottom face has an internal normal, other - external
128   { 3, 4, 5, 3, 3 },          // 0 is bottom, 1 is top face
129   { 0, 3, 5, 2, 0 },
130   { 1, 2, 5, 4, 1 },
131   { 0, 1, 4, 3, 0 }}; 
132 static int Penta_FE [5][5] = { // FORWARD -> EXTERNAL
133   { 0, 1, 2, 0, 0 },
134   { 3, 5, 4, 3, 3 },
135   { 0, 2, 5, 3, 0 },
136   { 1, 4, 5, 2, 1 },
137   { 0, 3, 4, 1, 0 }}; 
138 static int Penta_RE [5][5] = { // REVERSED -> EXTERNAL
139   { 0, 2, 1, 0, 0 },
140   { 3, 4, 5, 3, 3 },
141   { 0, 3, 5, 2, 0 },
142   { 1, 2, 5, 4, 1 },
143   { 0, 1, 4, 3, 0 }}; 
144 static int Penta_nbN [] = { 3, 3, 4, 4, 4 };
145
146 /*
147 //         N5+----------+N6
148 //          /|         /|
149 //         / |        / |
150 //        /  |       /  |
151 //     N4+----------+N7 |
152 //       |   |      |   |           HEXAHEDRON
153 //       |   |      |   |
154 //       |   |      |   |
155 //       | N1+------|---+N2
156 //       |  /       |  /
157 //       | /        | /
158 //       |/         |/
159 //     N0+----------+N3
160 */
161 static int Hexa_F [6][5] = { // FORWARD
162   { 0, 1, 2, 3, 0 },         // opposite faces are neighbouring,
163   { 4, 5, 6, 7, 4 },         // odd face(1,3,5) normal is internal, even(0,2,4) - external
164   { 1, 0, 4, 5, 1 },         // same index nodes of opposite faces are linked
165   { 2, 3, 7, 6, 2 }, 
166   { 0, 3, 7, 4, 0 }, 
167   { 1, 2, 6, 5, 1 }};
168 // static int Hexa_R [6][5] = { // REVERSED
169 //   { 0, 3, 2, 1, 0 },         // opposite faces are neighbouring,
170 //   { 4, 7, 6, 5, 4 },         // odd face(1,3,5) normal is external, even(0,2,4) - internal
171 //   { 1, 5, 4, 0, 1 },         // same index nodes of opposite faces are linked
172 //   { 2, 6, 7, 3, 2 }, 
173 //   { 0, 4, 7, 3, 0 }, 
174 //   { 1, 5, 6, 2, 1 }};
175 static int Hexa_FE [6][5] = { // FORWARD -> EXTERNAL
176   { 0, 1, 2, 3, 0 } ,         // opposite faces are neighbouring,
177   { 4, 7, 6, 5, 4 },          // all face normals are external,
178   { 0, 4, 5, 1, 0 },          // links in opposite faces: 0-0, 1-3, 2-2, 3-1
179   { 3, 2, 6, 7, 3 }, 
180   { 0, 3, 7, 4, 0 },
181   { 1, 5, 6, 2, 1 }};
182 static int Hexa_RE [6][5] = { // REVERSED -> EXTERNAL
183   { 0, 3, 2, 1, 0 },          // opposite faces are neighbouring,
184   { 4, 5, 6, 7, 4 },          // all face normals are external,
185   { 0, 1, 5, 4, 0 },          // links in opposite faces: 0-0, 1-3, 2-2, 3-1
186   { 3, 7, 6, 2, 3 }, 
187   { 0, 4, 7, 3, 0 },
188   { 1, 2, 6, 5, 1 }};
189 static int Hexa_nbN [] = { 4, 4, 4, 4, 4, 4 };
190
191
192 /*
193 //           N3
194 //           +
195 //          /|\
196 //        7/ | \8
197 //        /  |4 \                    QUADRATIC
198 //    N0 +---|---+ N1                TETRAHEDRON
199 //       \   +9  /
200 //        \  |  /
201 //        6\ | /5
202 //          \|/
203 //           +
204 //           N2
205 */
206 static int QuadTetra_F [4][7] = { // FORWARD == EXTERNAL
207   { 0, 4, 1, 5, 2, 6, 0 },        // All faces have external normals
208   { 0, 7, 3, 8, 1, 4, 0 },
209   { 1, 8, 3, 9, 2, 5, 1 },
210   { 0, 6, 2, 9, 3, 7, 0 }}; 
211 static int QuadTetra_R [4][7] = { // REVERSED
212   { 0, 4, 1, 5, 2, 6, 0 },        // All faces but a bottom have external normals
213   { 0, 4, 1, 8, 3, 7, 0 },
214   { 1, 5, 2, 9, 3, 8, 1 },
215   { 0, 7, 3, 9, 2, 6, 0 }};
216 static int QuadTetra_RE [4][7] = { // REVERSED -> FORWARD (EXTERNAL)
217   { 0, 6, 2, 5, 1, 4, 0 },              // All faces have external normals
218   { 0, 4, 1, 8, 3, 7, 0 },
219   { 1, 5, 2, 9, 3, 8, 1 },
220   { 0, 7, 3, 9, 2, 6, 0 }};
221 static int QuadTetra_nbN [] = { 6, 6, 6, 6 };
222
223 //
224 //     QUADRATIC
225 //     PYRAMID
226 //
227 //            +4
228 //
229 //            
230 //       10+-----+11
231 //         |     |        9 - middle point for (0,4) etc.
232 //         |     |
233 //        9+-----+12
234 //
235 //            6
236 //      1+----+----+2
237 //       |         |
238 //       |         |
239 //      5+         +7
240 //       |         |
241 //       |         |
242 //      0+----+----+3
243 //            8
244 static int QuadPyram_F [5][9] = {  // FORWARD == EXTERNAL
245   { 0, 5, 1, 6, 2, 7, 3, 8, 0 },   // All faces have external normals
246   { 0, 9, 4, 10,1, 5, 0, 4, 4 },
247   { 1, 10,4, 11,2, 6, 1, 4, 4 },
248   { 2, 11,4, 12,3, 7, 2, 4, 4 },
249   { 3, 12,4, 9, 0, 8, 3, 4, 4 }}; 
250 static int QuadPyram_R [5][9] = {  // REVERSED
251   { 0, 5, 1, 6, 2, 7, 3, 8, 0 },   // All faces but a bottom have external normals
252   { 0, 5, 1, 10,4, 9, 0, 4, 4 },
253   { 1, 6, 2, 11,4, 10,1, 4, 4 },
254   { 2, 7, 3, 12,4, 11,2, 4, 4 },
255   { 3, 8, 0, 9, 4, 12,3, 4, 4 }}; 
256 static int QuadPyram_RE [5][9] = { // REVERSED -> FORWARD (EXTERNAL)
257   { 0, 8, 3, 7, 2, 6, 1, 5, 0 },   // All faces but a bottom have external normals
258   { 0, 5, 1, 10,4, 9, 0, 4, 4 },
259   { 1, 6, 2, 11,4, 10,1, 4, 4 },
260   { 2, 7, 3, 12,4, 11,2, 4, 4 },
261   { 3, 8, 0, 9, 4, 12,3, 4, 4 }}; 
262 static int QuadPyram_nbN [] = { 8, 6, 6, 6, 6 };
263
264 /*   
265 //            + N4
266 //           /|\
267 //         9/ | \10
268 //         /  |  \
269 //        /   |   \
270 //    N3 +----+----+ N5
271 //       |    |11  |
272 //       |    |    |
273 //       |    +13  |                QUADRATIC
274 //       |    |    |                PENTAHEDRON
275 //       |    |    |
276 //       |    |    |
277 //       |    |    |
278 //     12+    |    +14
279 //       |    |    |
280 //       |    |    |
281 //       |    + N1 |
282 //       |   / \   |               
283 //       | 6/   \7 |
284 //       | /     \ |
285 //       |/       \|
286 //    N0 +---------+ N2
287 //            8
288 */
289 static int QuadPenta_F [5][9] = {  // FORWARD
290   { 0, 6, 1, 7, 2, 8, 0, 0, 0 },   // Top face has an internal normal, other - external
291   { 3, 9, 4, 10,5, 11,3, 3, 3 },   // 0 is bottom, 1 is top face
292   { 0, 8, 2, 14,5, 11,3, 12,0 },
293   { 1, 13,4, 10,5, 14,2, 7, 1 },
294   { 0, 12,3, 9, 4, 13,1, 6, 0 }}; 
295 static int QuadPenta_R [5][9] = { // REVERSED
296   { 0, 6, 1, 7, 2, 8, 0, 0, 0 },  // Bottom face has an internal normal, other - external
297   { 3, 9, 4, 10,5, 11,3, 3, 3 },  // 0 is bottom, 1 is top face
298   { 0, 12,3, 11,5, 14,2, 8, 0 },
299   { 1, 7, 2, 14,5, 10,4, 13,1 },
300   { 0, 6, 1, 13,4, 9, 3, 12,0 }}; 
301 static int QuadPenta_FE [5][9] = { // FORWARD -> EXTERNAL
302   { 0, 6, 1, 7, 2, 8, 0, 0, 0 },
303   { 3,11, 5, 10,4, 9, 3, 3, 3 },
304   { 0, 8, 2, 14,5, 11,3, 12,0 },
305   { 1, 13,4, 10,5, 14,2, 7, 1 },
306   { 0, 12,3, 9, 4, 13,1, 6, 0 }}; 
307 static int QuadPenta_RE [5][9] = { // REVERSED -> EXTERNAL
308   { 0, 8, 2, 7, 1, 6, 0, 0, 0 },
309   { 3, 9, 4, 10,5, 11,3, 3, 3 },
310   { 0, 12,3, 11,5, 14,2, 8, 0 },
311   { 1, 7, 2, 14,5, 10,4, 13,1 },
312   { 0, 6, 1, 13,4, 9, 3, 12,0 }}; 
313 static int QuadPenta_nbN [] = { 6, 6, 8, 8, 8 };
314
315 /*
316 //                 13
317 //         N5+-----+-----+N6
318 //          /|          /|
319 //       12+ |       14+ |
320 //        /  |        /  |
321 //     N4+-----+-----+N7 |           QUADRATIC
322 //       |   | 15    |   |           HEXAHEDRON
323 //       |   |       |   |
324 //       | 17+       |   +18
325 //       |   |       |   |
326 //       |   |       |   |
327 //       |   |       |   |
328 //     16+   |       +19 |
329 //       |   |       |   |
330 //       |   |     9 |   |
331 //       | N1+-----+-|---+N2
332 //       |  /        |  /
333 //       | +8        | +10
334 //       |/          |/
335 //     N0+-----+-----+N3
336 //             11
337 */
338 static int QuadHexa_F [6][9] = {  // FORWARD
339   { 0, 8, 1, 9, 2, 10,3, 11,0 },  // opposite faces are neighbouring,
340   { 4, 12,5, 13,6, 14,7, 15,4 },  // odd face(1,3,5) normal is internal, even(0,2,4) - external
341   { 1, 8, 0, 16,4, 12,5, 17,1 },  // same index nodes of opposite faces are linked
342   { 2, 10,3, 19,7, 14,6, 18,2 }, 
343   { 0, 11,3, 19,7, 15,4, 16,0 }, 
344   { 1, 9, 2, 18,6, 13,5, 17,1 }};
345 // static int Hexa_R [6][5] = { // REVERSED
346 //   { 0, 3, 2, 1, 0 },         // opposite faces are neighbouring,
347 //   { 4, 7, 6, 5, 4 },         // odd face(1,3,5) normal is external, even(0,2,4) - internal
348 //   { 1, 5, 4, 0, 1 },         // same index nodes of opposite faces are linked
349 //   { 2, 6, 7, 3, 2 }, 
350 //   { 0, 4, 7, 3, 0 }, 
351 //   { 1, 5, 6, 2, 1 }};
352 static int QuadHexa_FE [6][9] = {  // FORWARD -> EXTERNAL
353   { 0, 8, 1, 9, 2, 10,3, 11,0 },   // opposite faces are neighbouring,
354   { 4, 15,7, 14,6, 13,5, 12,4 },   // all face normals are external,
355   { 0, 16,4, 12,5, 17,1, 8, 0 },   // links in opposite faces: 0-0, 1-3, 2-2, 3-1
356   { 3, 10,2, 18,6, 14,7, 19,3 }, 
357   { 0, 11,3, 19,7, 15,4, 16,0 },
358   { 1, 17,5, 13,6, 18,2, 9, 1 }};
359 static int QuadHexa_RE [6][9] = {  // REVERSED -> EXTERNAL
360   { 0, 11,3, 10,2, 9, 1, 8, 0 },   // opposite faces are neighbouring,
361   { 4, 12,5, 13,6, 14,7, 15,4 },   // all face normals are external,
362   { 0, 8, 1, 17,5, 12,4, 16,0 },   // links in opposite faces: 0-0, 1-3, 2-2, 3-1
363   { 3, 19,7, 14,6, 18,2, 10,3 }, 
364   { 0, 16,4, 15,7, 19,3, 11,0 },
365   { 1, 9, 2, 18,6, 13,5, 17,1 }};
366 static int QuadHexa_nbN [] = { 8, 8, 8, 8, 8, 8 };
367
368
369 // ========================================================
370 // to perform some calculations without linkage to CASCADE
371 // ========================================================
372 namespace
373 {
374 struct XYZ {
375   double x;
376   double y;
377   double z;
378   XYZ()                               { x = 0; y = 0; z = 0; }
379   XYZ( double X, double Y, double Z ) { x = X; y = Y; z = Z; }
380   XYZ( const XYZ& other )             { x = other.x; y = other.y; z = other.z; }
381   XYZ( const SMDS_MeshNode* n )       { x = n->X(); y = n->Y(); z = n->Z(); }
382   inline XYZ operator-( const XYZ& other );
383   inline XYZ Crossed( const XYZ& other );
384   inline double Dot( const XYZ& other );
385   inline double Magnitude();
386 };
387 inline XYZ XYZ::operator-( const XYZ& Right ) {
388   return XYZ(x - Right.x, y - Right.y, z - Right.z);
389 }
390 inline XYZ XYZ::Crossed( const XYZ& Right ) {
391   return XYZ (y * Right.z - z * Right.y,
392               z * Right.x - x * Right.z,
393               x * Right.y - y * Right.x);
394 }
395 inline double XYZ::Dot( const XYZ& Other ) {
396   return(x * Other.x + y * Other.y + z * Other.z);
397 }
398 inline double XYZ::Magnitude() {
399   return sqrt (x * x + y * y + z * z);
400 }
401 }
402
403 //=======================================================================
404 //function : SMDS_VolumeTool
405 //purpose  : 
406 //=======================================================================
407
408 SMDS_VolumeTool::SMDS_VolumeTool ()
409      : myVolume( 0 ),
410        myPolyedre( 0 ),
411        myVolForward( true ),
412        myNbFaces( 0 ),
413        myVolumeNbNodes( 0 ),
414        myVolumeNodes( NULL ),
415        myExternalFaces( false ),
416        myFaceNbNodes( 0 ),
417        myCurFace( -1 ),
418        myFaceNodeIndices( NULL ),
419        myFaceNodes( NULL )
420 {
421 }
422
423 //=======================================================================
424 //function : SMDS_VolumeTool
425 //purpose  : 
426 //=======================================================================
427
428 SMDS_VolumeTool::SMDS_VolumeTool (const SMDS_MeshElement* theVolume)
429      : myVolume( 0 ),
430        myPolyedre( 0 ),
431        myVolForward( true ),
432        myNbFaces( 0 ),
433        myVolumeNbNodes( 0 ),
434        myVolumeNodes( NULL ),
435        myExternalFaces( false ),
436        myFaceNbNodes( 0 ),
437        myCurFace( -1 ),
438        myFaceNodeIndices( NULL ),
439        myFaceNodes( NULL )
440 {
441   Set( theVolume );
442 }
443
444 //=======================================================================
445 //function : SMDS_VolumeTool
446 //purpose  : 
447 //=======================================================================
448
449 SMDS_VolumeTool::~SMDS_VolumeTool()
450 {
451   if ( myVolumeNodes != NULL ) delete [] myVolumeNodes;
452   if ( myFaceNodes != NULL   ) delete [] myFaceNodes;
453
454   myFaceNodeIndices = NULL;
455   myVolumeNodes = myFaceNodes = NULL;
456 }
457
458 //=======================================================================
459 //function : SetVolume
460 //purpose  : Set volume to iterate on
461 //=======================================================================
462
463 bool SMDS_VolumeTool::Set (const SMDS_MeshElement* theVolume)
464 {
465   myVolume = 0;
466   myPolyedre = 0;
467
468   myVolForward = true;
469   myNbFaces = 0;
470   myVolumeNbNodes = 0;
471   if (myVolumeNodes != NULL) {
472     delete [] myVolumeNodes;
473     myVolumeNodes = NULL;
474   }
475
476   myExternalFaces = false;
477   myFaceNbNodes = 0;
478
479   myCurFace = -1;
480   myFaceNodeIndices = NULL;
481   if (myFaceNodes != NULL) {
482     delete [] myFaceNodes;
483     myFaceNodes = NULL;
484   }
485
486   if ( theVolume && theVolume->GetType() == SMDSAbs_Volume )
487   {
488     myVolume = theVolume;
489
490     myNbFaces = theVolume->NbFaces();
491     myVolumeNbNodes = theVolume->NbNodes();
492
493     // set volume nodes
494     int iNode = 0;
495     myVolumeNodes = new const SMDS_MeshNode* [myVolumeNbNodes];
496     SMDS_ElemIteratorPtr nodeIt = myVolume->nodesIterator();
497     while ( nodeIt->more() ) {
498       myVolumeNodes[ iNode++ ] = static_cast<const SMDS_MeshNode*>( nodeIt->next() );
499     }
500
501     if (myVolume->IsPoly()) {
502       myPolyedre = static_cast<const SMDS_PolyhedralVolumeOfNodes*>( myVolume );
503       if (!myPolyedre) {
504         MESSAGE("Warning: bad volumic element");
505         return false;
506       }
507     }
508     else {
509       switch ( myVolumeNbNodes ) {
510       case 4:
511       case 5:
512       case 6:
513       case 8:
514       case 10:
515       case 13:
516       case 15:
517       case 20: {
518         // define volume orientation
519         XYZ botNormal;
520         GetFaceNormal( 0, botNormal.x, botNormal.y, botNormal.z );
521         const SMDS_MeshNode* botNode = myVolumeNodes[ 0 ];
522         int topNodeIndex = myVolume->NbCornerNodes() - 1;
523         while ( !IsLinked( 0, topNodeIndex, /*ignoreMediumNodes=*/true )) --topNodeIndex;
524         const SMDS_MeshNode* topNode = myVolumeNodes[ topNodeIndex ];
525         XYZ upDir (topNode->X() - botNode->X(),
526                    topNode->Y() - botNode->Y(),
527                    topNode->Z() - botNode->Z() );
528         myVolForward = ( botNormal.Dot( upDir ) < 0 );
529         break;
530       }
531       default:
532         break;
533       }
534     }
535   }
536   return ( myVolume != 0 );
537 }
538
539 //=======================================================================
540 //function : Inverse
541 //purpose  : Inverse volume
542 //=======================================================================
543
544 #define SWAP_NODES(nodes,i1,i2)           \
545 {                                         \
546   const SMDS_MeshNode* tmp = nodes[ i1 ]; \
547   nodes[ i1 ] = nodes[ i2 ];              \
548   nodes[ i2 ] = tmp;                      \
549 }
550 void SMDS_VolumeTool::Inverse ()
551 {
552   if ( !myVolume ) return;
553
554   if (myVolume->IsPoly()) {
555     MESSAGE("Warning: attempt to inverse polyhedral volume");
556     return;
557   }
558
559   myVolForward = !myVolForward;
560   myCurFace = -1;
561
562   // inverse top and bottom faces
563   switch ( myVolumeNbNodes ) {
564   case 4:
565     SWAP_NODES( myVolumeNodes, 1, 2 );
566     break;
567   case 5:
568     SWAP_NODES( myVolumeNodes, 1, 3 );
569     break;
570   case 6:
571     SWAP_NODES( myVolumeNodes, 1, 2 );
572     SWAP_NODES( myVolumeNodes, 4, 5 );
573     break;
574   case 8:
575     SWAP_NODES( myVolumeNodes, 1, 3 );
576     SWAP_NODES( myVolumeNodes, 5, 7 );
577     break;
578
579   case 10:
580     SWAP_NODES( myVolumeNodes, 1, 2 );
581     SWAP_NODES( myVolumeNodes, 4, 6 );
582     SWAP_NODES( myVolumeNodes, 8, 9 );
583     break;
584   case 13:
585     SWAP_NODES( myVolumeNodes, 1, 3 );
586     SWAP_NODES( myVolumeNodes, 5, 8 );
587     SWAP_NODES( myVolumeNodes, 6, 7 );
588     SWAP_NODES( myVolumeNodes, 10, 12 );
589     break;
590   case 15:
591     SWAP_NODES( myVolumeNodes, 1, 2 );
592     SWAP_NODES( myVolumeNodes, 4, 5 );
593     SWAP_NODES( myVolumeNodes, 6, 8 );
594     SWAP_NODES( myVolumeNodes, 9, 11 );
595     SWAP_NODES( myVolumeNodes, 13, 14 );
596     break;
597   case 20:
598     SWAP_NODES( myVolumeNodes, 1, 3 );
599     SWAP_NODES( myVolumeNodes, 5, 7 );
600     SWAP_NODES( myVolumeNodes, 8, 11 );
601     SWAP_NODES( myVolumeNodes, 9, 10 );
602     SWAP_NODES( myVolumeNodes, 12, 15 );
603     SWAP_NODES( myVolumeNodes, 13, 14 );
604     SWAP_NODES( myVolumeNodes, 17, 19 );
605     break;
606   default:;
607   }
608 }
609
610 //=======================================================================
611 //function : GetVolumeType
612 //purpose  : 
613 //=======================================================================
614
615 SMDS_VolumeTool::VolumeType SMDS_VolumeTool::GetVolumeType() const
616 {
617   if ( myPolyedre )
618     return POLYHEDA;
619
620   if ( myVolume ) {
621 //    static const VolumeType types[] = {
622 //      TETRA,     // myVolumeNbNodes = 4
623 //      PYRAM,     // myVolumeNbNodes = 5
624 //      PENTA,     // myVolumeNbNodes = 6
625 //      UNKNOWN,   // myVolumeNbNodes = 7
626 //      HEXA       // myVolumeNbNodes = 8
627 //    };
628 //    return types[ myVolumeNbNodes - 4 ];
629     switch(myVolumeNbNodes) {
630     case 4: return TETRA; break;
631     case 5: return PYRAM; break;
632     case 6: return PENTA; break;
633     case 8: return HEXA; break;
634     case 10: return QUAD_TETRA; break;
635     case 13: return QUAD_PYRAM; break;
636     case 15: return QUAD_PENTA; break;
637     case 20: return QUAD_HEXA; break;
638     default: break;
639     }
640   }
641
642   return UNKNOWN;
643 }
644
645 //=======================================================================
646 //function : getTetraVolume
647 //purpose  : 
648 //=======================================================================
649
650 static double getTetraVolume(const SMDS_MeshNode* n1,
651                              const SMDS_MeshNode* n2,
652                              const SMDS_MeshNode* n3,
653                              const SMDS_MeshNode* n4)
654 {
655   double X1 = n1->X();
656   double Y1 = n1->Y();
657   double Z1 = n1->Z();
658
659   double X2 = n2->X();
660   double Y2 = n2->Y();
661   double Z2 = n2->Z();
662
663   double X3 = n3->X();
664   double Y3 = n3->Y();
665   double Z3 = n3->Z();
666
667   double X4 = n4->X();
668   double Y4 = n4->Y();
669   double Z4 = n4->Z();
670
671   double Q1 = -(X1-X2)*(Y3*Z4-Y4*Z3);
672   double Q2 =  (X1-X3)*(Y2*Z4-Y4*Z2);
673   double R1 = -(X1-X4)*(Y2*Z3-Y3*Z2);
674   double R2 = -(X2-X3)*(Y1*Z4-Y4*Z1);
675   double S1 =  (X2-X4)*(Y1*Z3-Y3*Z1);
676   double S2 = -(X3-X4)*(Y1*Z2-Y2*Z1);
677
678   return (Q1+Q2+R1+R2+S1+S2)/6.0;
679 }
680
681 //=======================================================================
682 //function : GetSize
683 //purpose  : Return element volume
684 //=======================================================================
685
686 double SMDS_VolumeTool::GetSize() const
687 {
688   double V = 0.;
689   if ( !myVolume )
690     return 0.;
691
692   if ( myVolume->IsPoly() )
693   {
694     if ( !myPolyedre )
695       return 0.;
696
697     // split a polyhedron into tetrahedrons
698
699     SMDS_VolumeTool* me = const_cast< SMDS_VolumeTool* > ( this );
700     XYZ baryCenter;
701     me->GetBaryCenter(baryCenter.x, baryCenter.y, baryCenter.z);
702     SMDS_MeshNode bcNode ( baryCenter.x, baryCenter.y, baryCenter.z );
703
704     for ( int f = 0; f < NbFaces(); ++f )
705     {
706       bool externalFace = me->IsFaceExternal( f ); // it calls setFace()
707       for ( int n = 2; n < myFaceNbNodes; ++n )
708       {
709         double Vn = getTetraVolume( myFaceNodes[ 0 ],
710                                     myFaceNodes[ n-1 ],
711                                     myFaceNodes[ n ],
712                                     & bcNode );
713 ///         cout <<"++++   " << Vn << "   nodes " <<myFaceNodes[ 0 ]->GetID() << " " <<myFaceNodes[ n-1 ]->GetID() << " " <<myFaceNodes[ n ]->GetID() << "        < " << V << endl;
714         V += externalFace ? -Vn : Vn;
715       }
716     }
717   }
718   else 
719   {
720     const static int ind[] = {
721       0, 1, 3, 6, 11, 19, 32, 46, 66};
722     const static int vtab[][4] = {
723       // tetrahedron
724       { 0, 1, 2, 3 },
725       // pyramid
726       { 0, 1, 3, 4 },
727       { 1, 2, 3, 4 },
728       // pentahedron
729       { 0, 1, 2, 3 },
730       { 1, 5, 3, 4 },
731       { 1, 5, 2, 3 },
732       // hexahedron
733       { 1, 4, 3, 0 },
734       { 4, 1, 6, 5 },
735       { 1, 3, 6, 2 },
736       { 4, 6, 3, 7 },
737       { 1, 4, 6, 3 },
738
739       // quadratic tetrahedron
740       { 0, 4, 6, 7 },
741       { 1, 5, 4, 8 },
742       { 2, 6, 5, 9 },
743       { 7, 8, 9, 3 },
744       { 4, 6, 7, 9 },
745       { 4, 5, 6, 9 },
746       { 4, 7, 8, 9 },
747       { 4, 5, 9, 8 },
748
749       // quadratic pyramid
750       { 0, 5, 8, 9 },
751       { 1, 5,10, 6 },
752       { 2, 6,11, 7 },
753       { 3, 7,12, 8 },
754       { 4, 9,11,10 },
755       { 4, 9,12,11 },
756       { 10, 5, 9, 8 },
757       { 10, 8, 9,12 },
758       { 10, 8,12, 7 },
759       { 10, 7,12,11 },
760       { 10, 7,11, 6 },
761       { 10, 5, 8, 6 },
762       { 10, 6, 8, 7 },
763
764       // quadratic pentahedron
765       { 12, 0, 8, 6 },
766       { 12, 8, 7, 6 },
767       { 12, 8, 2, 7 },
768       { 12, 6, 7, 1 },
769       { 12, 1, 7,13 },
770       { 12, 7, 2,13 },
771       { 12, 2,14,13 },
772
773       { 12, 3, 9,11 },
774       { 12,11, 9,10 },
775       { 12,11,10, 5 },
776       { 12, 9, 4,10 },
777       { 12,14, 5,10 },
778       { 12,14,10, 4 },
779       { 12,14, 4,13 },
780
781       // quadratic hexahedron
782       { 16, 0,11, 8 },
783       { 16,11, 9, 8 },
784       { 16, 8, 9, 1 },
785       { 16,11, 3,10 },
786       { 16,11,10, 9 },
787       { 16,10, 2, 9 },
788       { 16, 3,19, 2 },
789       { 16, 2,19,18 },
790       { 16, 2,18,17 },
791       { 16, 2,17, 1 },
792
793       { 16, 4,12,15 },
794       { 16,12, 5,13 },
795       { 16,12,13,15 },
796       { 16,13, 6,14 },
797       { 16,13,14,15 },
798       { 16,14, 7,15 },
799       { 16, 6, 5,17 },
800       { 16,18, 6,17 },
801       { 16,18, 7, 6 },
802       { 16,18,19, 7 },
803
804     };
805
806     int type = GetVolumeType();
807     int n1 = ind[type];
808     int n2 = ind[type+1];
809
810     for (int i = n1; i <  n2; i++) {
811       V -= getTetraVolume( myVolumeNodes[ vtab[i][0] ],
812                            myVolumeNodes[ vtab[i][1] ],
813                            myVolumeNodes[ vtab[i][2] ],
814                            myVolumeNodes[ vtab[i][3] ]);
815     }
816   }
817   return V;
818 }
819
820 //=======================================================================
821 //function : GetBaryCenter
822 //purpose  : 
823 //=======================================================================
824
825 bool SMDS_VolumeTool::GetBaryCenter(double & X, double & Y, double & Z) const
826 {
827   X = Y = Z = 0.;
828   if ( !myVolume )
829     return false;
830
831   for ( int i = 0; i < myVolumeNbNodes; i++ ) {
832     X += myVolumeNodes[ i ]->X();
833     Y += myVolumeNodes[ i ]->Y();
834     Z += myVolumeNodes[ i ]->Z();
835   }
836   X /= myVolumeNbNodes;
837   Y /= myVolumeNbNodes;
838   Z /= myVolumeNbNodes;
839
840   return true;
841 }
842
843 //================================================================================
844 /*!
845  * \brief Classify a point
846  *  \param tol - thickness of faces
847  */
848 //================================================================================
849
850 bool SMDS_VolumeTool::IsOut(double X, double Y, double Z, double tol)
851 {
852   // LIMITATION: for convex volumes only
853   XYZ p( X,Y,Z );
854   for ( int iF = 0; iF < myNbFaces; ++iF )
855   {
856     XYZ faceNormal;
857     if ( !GetFaceNormal( iF, faceNormal.x, faceNormal.y, faceNormal.z ))
858       continue;
859     if ( !IsFaceExternal( iF ))
860       faceNormal = XYZ() - faceNormal; // reverse
861
862     XYZ face2p( p - XYZ( myFaceNodes[0] ));
863     if ( face2p.Dot( faceNormal ) > tol )
864       return true;
865   }
866   return false;
867 }
868
869 //=======================================================================
870 //function : SetExternalNormal
871 //purpose  : Node order will be so that faces normals are external
872 //=======================================================================
873
874 void SMDS_VolumeTool::SetExternalNormal ()
875 {
876   myExternalFaces = true;
877   myCurFace = -1;
878 }
879
880 //=======================================================================
881 //function : NbFaceNodes
882 //purpose  : Return number of nodes in the array of face nodes
883 //=======================================================================
884
885 int SMDS_VolumeTool::NbFaceNodes( int faceIndex )
886 {
887     if ( !setFace( faceIndex ))
888       return 0;
889     return myFaceNbNodes;
890 }
891
892 //=======================================================================
893 //function : GetFaceNodes
894 //purpose  : Return pointer to the array of face nodes.
895 //           To comfort link iteration, the array
896 //           length == NbFaceNodes( faceIndex ) + 1 and
897 //           the last node == the first one.
898 //=======================================================================
899
900 const SMDS_MeshNode** SMDS_VolumeTool::GetFaceNodes( int faceIndex )
901 {
902   if ( !setFace( faceIndex ))
903     return 0;
904   return myFaceNodes;
905 }
906
907 //=======================================================================
908 //function : GetFaceNodesIndices
909 //purpose  : Return pointer to the array of face nodes indices
910 //           To comfort link iteration, the array
911 //           length == NbFaceNodes( faceIndex ) + 1 and
912 //           the last node index == the first one.
913 //=======================================================================
914
915 const int* SMDS_VolumeTool::GetFaceNodesIndices( int faceIndex )
916 {
917   if ( !setFace( faceIndex ))
918     return 0;
919
920   if (myVolume->IsPoly())
921   {
922     myPolyIndices.resize( myFaceNbNodes + 1 );
923     myFaceNodeIndices = & myPolyIndices[0];
924     for ( int i = 0; i <= myFaceNbNodes; ++i )
925       myFaceNodeIndices[i] = myVolume->GetNodeIndex( myFaceNodes[i] );
926   }
927   return myFaceNodeIndices;
928 }
929
930 //=======================================================================
931 //function : GetFaceNodes
932 //purpose  : Return a set of face nodes.
933 //=======================================================================
934
935 bool SMDS_VolumeTool::GetFaceNodes (int                        faceIndex,
936                                     set<const SMDS_MeshNode*>& theFaceNodes )
937 {
938   if ( !setFace( faceIndex ))
939     return false;
940
941   theFaceNodes.clear();
942   int iNode, nbNode = myFaceNbNodes;
943   for ( iNode = 0; iNode < nbNode; iNode++ )
944     theFaceNodes.insert( myFaceNodes[ iNode ]);
945
946   return true;
947 }
948
949 //=======================================================================
950 //function : IsFaceExternal
951 //purpose  : Check normal orientation of a returned face
952 //=======================================================================
953
954 bool SMDS_VolumeTool::IsFaceExternal( int faceIndex )
955 {
956   if ( myExternalFaces || !myVolume )
957     return true;
958
959   if (myVolume->IsPoly()) {
960     XYZ aNormal, baryCenter, p0 (myPolyedre->GetFaceNode(faceIndex + 1, 1));
961     GetFaceNormal(faceIndex, aNormal.x, aNormal.y, aNormal.z);
962     GetBaryCenter(baryCenter.x, baryCenter.y, baryCenter.z);
963     XYZ insideVec (baryCenter - p0);
964     if (insideVec.Dot(aNormal) > 0)
965       return false;
966     return true;
967   }
968
969   switch ( myVolumeNbNodes ) {
970   case 4:
971   case 5:
972   case 10:
973   case 13:
974     // only the bottom of a reversed tetrahedron can be internal
975     return ( myVolForward || faceIndex != 0 );
976   case 6:
977   case 15:
978     // in a forward pentahedron, the top is internal, in a reversed one - bottom
979     return ( myVolForward ? faceIndex != 1 : faceIndex != 0 );
980   case 8:
981   case 20: {
982     // in a forward hexahedron, even face normal is external, odd - internal
983     bool odd = faceIndex % 2;
984     return ( myVolForward ? !odd : odd );
985   }
986   default:;
987   }
988   return false;
989 }
990
991 //=======================================================================
992 //function : GetFaceNormal
993 //purpose  : Return a normal to a face
994 //=======================================================================
995
996 bool SMDS_VolumeTool::GetFaceNormal (int faceIndex, double & X, double & Y, double & Z)
997 {
998   if ( !setFace( faceIndex ))
999     return false;
1000
1001   XYZ p1 ( myFaceNodes[0] );
1002   XYZ p2 ( myFaceNodes[1] );
1003   XYZ p3 ( myFaceNodes[2] );
1004   XYZ aVec12( p2 - p1 );
1005   XYZ aVec13( p3 - p1 );
1006   XYZ cross = aVec12.Crossed( aVec13 );
1007
1008   //if ( myFaceNbNodes == 4 ) {
1009   if ( myFaceNbNodes >3 ) {
1010     XYZ p4 ( myFaceNodes[3] );
1011     XYZ aVec14( p4 - p1 );
1012     XYZ cross2 = aVec13.Crossed( aVec14 );
1013     cross.x += cross2.x;
1014     cross.y += cross2.y;
1015     cross.z += cross2.z;    
1016   }
1017
1018   double size = cross.Magnitude();
1019   if ( size <= DBL_MIN )
1020     return false;
1021
1022   X = cross.x / size;
1023   Y = cross.y / size;
1024   Z = cross.z / size;
1025
1026   return true;
1027 }
1028
1029 //=======================================================================
1030 //function : GetFaceArea
1031 //purpose  : Return face area
1032 //=======================================================================
1033
1034 double SMDS_VolumeTool::GetFaceArea( int faceIndex )
1035 {
1036   if (myVolume->IsPoly()) {
1037     MESSAGE("Warning: attempt to obtain area of a face of polyhedral volume");
1038     return 0;
1039   }
1040
1041   if ( !setFace( faceIndex ))
1042     return 0;
1043
1044   XYZ p1 ( myFaceNodes[0] );
1045   XYZ p2 ( myFaceNodes[1] );
1046   XYZ p3 ( myFaceNodes[2] );
1047   XYZ aVec12( p2 - p1 );
1048   XYZ aVec13( p3 - p1 );
1049   double area = aVec12.Crossed( aVec13 ).Magnitude() * 0.5;
1050
1051   if ( myFaceNbNodes == 4 ) {
1052     XYZ p4 ( myFaceNodes[3] );
1053     XYZ aVec14( p4 - p1 );
1054     area += aVec14.Crossed( aVec13 ).Magnitude() * 0.5;
1055   }
1056   return area;
1057 }
1058
1059 //=======================================================================
1060 //function : GetOppFaceIndex
1061 //purpose  : Return index of the opposite face if it exists, else -1.
1062 //=======================================================================
1063
1064 int SMDS_VolumeTool::GetOppFaceIndex( int faceIndex ) const
1065 {
1066   int ind = -1;
1067   if (myVolume->IsPoly()) {
1068     MESSAGE("Warning: attempt to obtain opposite face on polyhedral volume");
1069     return ind;
1070   }
1071
1072   if ( faceIndex >= 0 && faceIndex < NbFaces() ) {
1073     switch ( myVolumeNbNodes ) {
1074     case 6:
1075       if ( faceIndex == 0 || faceIndex == 1 )
1076         ind = 1 - faceIndex;
1077         break;
1078     case 8:
1079       ind = faceIndex + ( faceIndex % 2 ? -1 : 1 );
1080       break;
1081     default:;
1082     }
1083   }
1084   return ind;
1085 }
1086
1087 //=======================================================================
1088 //function : IsLinked
1089 //purpose  : return true if theNode1 is linked with theNode2
1090 // If theIgnoreMediumNodes then corner nodes of quadratic cell are considered linked as well
1091 //=======================================================================
1092
1093 bool SMDS_VolumeTool::IsLinked (const SMDS_MeshNode* theNode1,
1094                                 const SMDS_MeshNode* theNode2,
1095                                 const bool           theIgnoreMediumNodes) const
1096 {
1097   if ( !myVolume )
1098     return false;
1099
1100   if (myVolume->IsPoly()) {
1101     if (!myPolyedre) {
1102       MESSAGE("Warning: bad volumic element");
1103       return false;
1104     }
1105     bool isLinked = false;
1106     int iface;
1107     for (iface = 1; iface <= myNbFaces && !isLinked; iface++) {
1108       int inode, nbFaceNodes = myPolyedre->NbFaceNodes(iface);
1109
1110       for (inode = 1; inode <= nbFaceNodes && !isLinked; inode++) {
1111         const SMDS_MeshNode* curNode = myPolyedre->GetFaceNode(iface, inode);
1112
1113         if (curNode == theNode1 || curNode == theNode2) {
1114           int inextnode = (inode == nbFaceNodes) ? 1 : inode + 1;
1115           const SMDS_MeshNode* nextNode = myPolyedre->GetFaceNode(iface, inextnode);
1116
1117           if ((curNode == theNode1 && nextNode == theNode2) ||
1118               (curNode == theNode2 && nextNode == theNode1)) {
1119             isLinked = true;
1120           }
1121         }
1122       }
1123     }
1124     return isLinked;
1125   }
1126
1127   // find nodes indices
1128   int i1 = -1, i2 = -1;
1129   for ( int i = 0; i < myVolumeNbNodes; i++ ) {
1130     if ( myVolumeNodes[ i ] == theNode1 )
1131       i1 = i;
1132     else if ( myVolumeNodes[ i ] == theNode2 )
1133       i2 = i;
1134   }
1135   return IsLinked( i1, i2 );
1136 }
1137
1138 //=======================================================================
1139 //function : IsLinked
1140 //purpose  : return true if the node with theNode1Index is linked
1141 //           with the node with theNode2Index
1142 // If theIgnoreMediumNodes then corner nodes of quadratic cell are considered linked as well
1143 //=======================================================================
1144
1145 bool SMDS_VolumeTool::IsLinked (const int theNode1Index,
1146                                 const int theNode2Index,
1147                                 bool      theIgnoreMediumNodes) const
1148 {
1149   if ( myVolume->IsPoly() ) {
1150     return IsLinked(myVolumeNodes[theNode1Index], myVolumeNodes[theNode2Index]);
1151   }
1152
1153   int minInd = min( theNode1Index, theNode2Index );
1154   int maxInd = max( theNode1Index, theNode2Index );
1155
1156   if ( minInd < 0 || maxInd > myVolumeNbNodes - 1 || maxInd == minInd )
1157     return false;
1158
1159   int quadraticDivisor = 1;
1160   if ( myVolume->IsQuadratic() )
1161   {
1162     int firstMediumInd = myVolume->NbCornerNodes();
1163     if ( minInd >= firstMediumInd )
1164       return false; // medium nodes are not linked
1165     if ( maxInd < firstMediumInd ) // both nodes are corners
1166       if ( theIgnoreMediumNodes )
1167         quadraticDivisor = 2; // check linkage of corner nodes
1168       else
1169         return false; // corner nodes are not linked directly in a quadratic cell
1170   }
1171
1172   switch ( myVolumeNbNodes / quadraticDivisor ) {
1173   case 4:
1174     return true;
1175   case 5:
1176     if ( maxInd == 4 )
1177       return true;
1178     switch ( maxInd - minInd ) {
1179     case 1:
1180     case 3: return true;
1181     default:;
1182     }
1183     break;
1184   case 6:
1185     switch ( maxInd - minInd ) {
1186     case 1: return minInd != 2;
1187     case 2: return minInd == 0 || minInd == 3;
1188     case 3: return true;
1189     default:;
1190     }
1191     break;
1192   case 8:
1193     switch ( maxInd - minInd ) {
1194     case 1: return minInd != 3;
1195     case 3: return minInd == 0 || minInd == 4;
1196     case 4: return true;
1197     default:;
1198     }
1199     break;
1200   case 10:
1201     {
1202       switch ( minInd ) {
1203       case 0: if( maxInd==4 ||  maxInd==6 ||  maxInd==7 ) return true;
1204       case 1: if( maxInd==4 ||  maxInd==5 ||  maxInd==8 ) return true;
1205       case 2: if( maxInd==5 ||  maxInd==6 ||  maxInd==9 ) return true;
1206       case 3: if( maxInd==7 ||  maxInd==8 ||  maxInd==9 ) return true;
1207       default:;
1208       }
1209       break;
1210     }
1211   case 13:
1212     {
1213       switch ( minInd ) {
1214       case 0: if( maxInd==5 ||  maxInd==8 ||  maxInd==9 ) return true;
1215       case 1: if( maxInd==5 ||  maxInd==6 ||  maxInd==10 ) return true;
1216       case 2: if( maxInd==6 ||  maxInd==7 ||  maxInd==11 ) return true;
1217       case 3: if( maxInd==7 ||  maxInd==8 ||  maxInd==12 ) return true;
1218       case 4: if( maxInd==9 ||  maxInd==10 ||  maxInd==11 ||  maxInd==12 ) return true;
1219       default:;
1220       }
1221       break;
1222     }
1223   case 15:
1224     {
1225       switch ( minInd ) {
1226       case 0: if( maxInd==6 ||  maxInd==8 ||  maxInd==12 ) return true;
1227       case 1: if( maxInd==6 ||  maxInd==7 ||  maxInd==13 ) return true;
1228       case 2: if( maxInd==7 ||  maxInd==8 ||  maxInd==14 ) return true;
1229       case 3: if( maxInd==9 ||  maxInd==11 ||  maxInd==12 ) return true;
1230       case 4: if( maxInd==9 ||  maxInd==10 ||  maxInd==13 ) return true;
1231       case 5: if( maxInd==10 ||  maxInd==11 ||  maxInd==14 ) return true;
1232       default:;
1233       }
1234       break;
1235     }
1236   case 20:
1237     {
1238       switch ( minInd ) {
1239       case 0: if( maxInd==8 ||  maxInd==11 ||  maxInd==16 ) return true;
1240       case 1: if( maxInd==8 ||  maxInd==9 ||  maxInd==17 ) return true;
1241       case 2: if( maxInd==9 ||  maxInd==10 ||  maxInd==18 ) return true;
1242       case 3: if( maxInd==10 ||  maxInd==11 ||  maxInd==19 ) return true;
1243       case 4: if( maxInd==12 ||  maxInd==15 ||  maxInd==16 ) return true;
1244       case 5: if( maxInd==12 ||  maxInd==13 ||  maxInd==17 ) return true;
1245       case 6: if( maxInd==13 ||  maxInd==14 ||  maxInd==18 ) return true;
1246       case 7: if( maxInd==14 ||  maxInd==15 ||  maxInd==19 ) return true;
1247       default:;
1248       }
1249       break;
1250     }
1251   default:;
1252   }
1253   return false;
1254 }
1255
1256 //=======================================================================
1257 //function : GetNodeIndex
1258 //purpose  : Return an index of theNode
1259 //=======================================================================
1260
1261 int SMDS_VolumeTool::GetNodeIndex(const SMDS_MeshNode* theNode) const
1262 {
1263   if ( myVolume ) {
1264     for ( int i = 0; i < myVolumeNbNodes; i++ ) {
1265       if ( myVolumeNodes[ i ] == theNode )
1266         return i;
1267     }
1268   }
1269   return -1;
1270 }
1271
1272 //================================================================================
1273 /*!
1274  * \brief Fill vector with boundary faces existing in the mesh
1275   * \param faces - vector of found nodes
1276   * \retval int - nb of found faces
1277  */
1278 //================================================================================
1279
1280 int SMDS_VolumeTool::GetAllExistingFaces(vector<const SMDS_MeshElement*> & faces)
1281 {
1282   faces.clear();
1283   faces.reserve( NbFaces() );
1284   for ( int iF = 0; iF < NbFaces(); ++iF ) {
1285     const SMDS_MeshFace* face = 0;
1286     const SMDS_MeshNode** nodes = GetFaceNodes( iF );
1287     switch ( NbFaceNodes( iF )) {
1288     case 3:
1289       face = SMDS_Mesh::FindFace( nodes[0], nodes[1], nodes[2] ); break;
1290     case 4:
1291       face = SMDS_Mesh::FindFace( nodes[0], nodes[1], nodes[2], nodes[3] ); break;
1292     case 6:
1293       face = SMDS_Mesh::FindFace( nodes[0], nodes[1], nodes[2],
1294                                   nodes[3], nodes[4], nodes[5]); break;
1295     case 8:
1296       face = SMDS_Mesh::FindFace( nodes[0], nodes[1], nodes[2], nodes[3],
1297                                   nodes[4], nodes[5], nodes[6], nodes[7]); break;
1298     }
1299     if ( face )
1300       faces.push_back( face );
1301   }
1302   return faces.size();
1303 }
1304
1305
1306 //================================================================================
1307 /*!
1308  * \brief Fill vector with boundary edges existing in the mesh
1309   * \param edges - vector of found edges
1310   * \retval int - nb of found faces
1311  */
1312 //================================================================================
1313
1314 int SMDS_VolumeTool::GetAllExistingEdges(vector<const SMDS_MeshElement*> & edges) const
1315 {
1316   edges.clear();
1317   edges.reserve( myVolumeNbNodes * 2 );
1318   for ( int i = 0; i < myVolumeNbNodes; ++i ) {
1319     for ( int j = i + 1; j < myVolumeNbNodes; ++j ) {
1320       if ( IsLinked( i, j )) {
1321         const SMDS_MeshElement* edge =
1322           SMDS_Mesh::FindEdge( myVolumeNodes[i], myVolumeNodes[j] );
1323         if ( edge )
1324           edges.push_back( edge );
1325       }
1326     }
1327   }
1328   return edges.size();
1329 }
1330
1331 //=======================================================================
1332 //function : IsFreeFace
1333 //purpose  : check that only one volume is build on the face nodes
1334 //=======================================================================
1335
1336 bool SMDS_VolumeTool::IsFreeFace( int faceIndex )
1337 {
1338   const int free = true;
1339
1340   if (!setFace( faceIndex ))
1341     return !free;
1342
1343   const SMDS_MeshNode** nodes = GetFaceNodes( faceIndex );
1344   int nbFaceNodes = myFaceNbNodes;
1345
1346   // evaluate nb of face nodes shared by other volume
1347   int maxNbShared = -1;
1348   typedef map< const SMDS_MeshElement*, int > TElemIntMap;
1349   TElemIntMap volNbShared;
1350   TElemIntMap::iterator vNbIt;
1351   for ( int iNode = 0; iNode < nbFaceNodes; iNode++ ) {
1352     const SMDS_MeshNode* n = nodes[ iNode ];
1353     SMDS_ElemIteratorPtr eIt = n->GetInverseElementIterator();
1354     while ( eIt->more() ) {
1355       const SMDS_MeshElement* elem = eIt->next();
1356       if ( elem != myVolume && elem->GetType() == SMDSAbs_Volume ) {
1357         int nbShared = 1;
1358         vNbIt = volNbShared.find( elem );
1359         if ( vNbIt == volNbShared.end() ) {
1360           volNbShared.insert ( TElemIntMap::value_type( elem, nbShared ));
1361         }
1362         else {
1363           nbShared = ++(*vNbIt).second;
1364         }
1365         if ( nbShared > maxNbShared )
1366           maxNbShared = nbShared;
1367       }
1368     }
1369   }
1370   if ( maxNbShared < 3 )
1371     return free; // is free
1372
1373   // find volumes laying on the opposite side of the face
1374   // and sharing all nodes
1375   XYZ intNormal; // internal normal
1376   GetFaceNormal( faceIndex, intNormal.x, intNormal.y, intNormal.z );
1377   if ( IsFaceExternal( faceIndex ))
1378     intNormal = XYZ( -intNormal.x, -intNormal.y, -intNormal.z );
1379   XYZ p0 ( nodes[0] ), baryCenter;
1380   for ( vNbIt = volNbShared.begin(); vNbIt != volNbShared.end(); vNbIt++ ) {
1381     int nbShared = (*vNbIt).second;
1382     if ( nbShared >= 3 ) {
1383       SMDS_VolumeTool volume( (*vNbIt).first );
1384       volume.GetBaryCenter( baryCenter.x, baryCenter.y, baryCenter.z );
1385       XYZ intNormal2( baryCenter - p0 );
1386       if ( intNormal.Dot( intNormal2 ) < 0 )
1387         continue; // opposite side
1388     }
1389     // remove a volume from volNbShared map
1390     volNbShared.erase( vNbIt-- );
1391   }
1392
1393   // here volNbShared contains only volumes laying on the
1394   // opposite side of the face
1395   if ( volNbShared.empty() ) {
1396     return free; // is free
1397   }
1398
1399   // check if the whole area of a face is shared
1400   bool isShared[] = { false, false, false, false }; // 4 triangle parts of a quadrangle
1401   for ( vNbIt = volNbShared.begin(); vNbIt != volNbShared.end(); vNbIt++ ) {
1402     SMDS_VolumeTool volume( (*vNbIt).first );
1403     bool prevLinkShared = false;
1404     int nbSharedLinks = 0;
1405     for ( int iNode = 0; iNode < nbFaceNodes; iNode++ ) {
1406       bool linkShared = volume.IsLinked( nodes[ iNode ], nodes[ iNode + 1] );
1407       if ( linkShared )
1408         nbSharedLinks++;
1409       if ( linkShared && prevLinkShared &&
1410           volume.IsLinked( nodes[ iNode - 1 ], nodes[ iNode + 1] ))
1411         isShared[ iNode ] = true;
1412       prevLinkShared = linkShared;
1413     }
1414     if ( nbSharedLinks == nbFaceNodes )
1415       return !free; // is not free
1416     if ( nbFaceNodes == 4 ) {
1417       // check traingle parts 1 & 3
1418       if ( isShared[1] && isShared[3] )
1419         return !free; // is not free
1420       // check triangle parts 0 & 2;
1421       // 0 part could not be checked in the loop; check it here
1422       if ( isShared[2] && prevLinkShared &&
1423           volume.IsLinked( nodes[ 0 ], nodes[ 1 ] ) &&
1424           volume.IsLinked( nodes[ 1 ], nodes[ 3 ] ) )
1425         return !free; // is not free
1426     }
1427   }
1428   return free;
1429 }
1430
1431 //=======================================================================
1432 //function : GetFaceIndex
1433 //purpose  : Return index of a face formed by theFaceNodes
1434 //=======================================================================
1435
1436 int SMDS_VolumeTool::GetFaceIndex( const set<const SMDS_MeshNode*>& theFaceNodes )
1437 {
1438   for ( int iFace = 0; iFace < myNbFaces; iFace++ ) {
1439     const SMDS_MeshNode** nodes = GetFaceNodes( iFace );
1440     int nbFaceNodes = NbFaceNodes( iFace );
1441     set<const SMDS_MeshNode*> nodeSet;
1442     for ( int iNode = 0; iNode < nbFaceNodes; iNode++ )
1443       nodeSet.insert( nodes[ iNode ] );
1444     if ( theFaceNodes == nodeSet )
1445       return iFace;
1446   }
1447   return -1;
1448 }
1449
1450 //=======================================================================
1451 //function : GetFaceIndex
1452 //purpose  : Return index of a face formed by theFaceNodes
1453 //=======================================================================
1454
1455 /*int SMDS_VolumeTool::GetFaceIndex( const set<int>& theFaceNodesIndices )
1456 {
1457   for ( int iFace = 0; iFace < myNbFaces; iFace++ ) {
1458     const int* nodes = GetFaceNodesIndices( iFace );
1459     int nbFaceNodes = NbFaceNodes( iFace );
1460     set<int> nodeSet;
1461     for ( int iNode = 0; iNode < nbFaceNodes; iNode++ )
1462       nodeSet.insert( nodes[ iNode ] );
1463     if ( theFaceNodesIndices == nodeSet )
1464       return iFace;
1465   }
1466   return -1;
1467 }*/
1468
1469 //=======================================================================
1470 //function : setFace
1471 //purpose  : 
1472 //=======================================================================
1473
1474 bool SMDS_VolumeTool::setFace( int faceIndex )
1475 {
1476   if ( !myVolume )
1477     return false;
1478
1479   if ( myCurFace == faceIndex )
1480     return true;
1481
1482   myCurFace = -1;
1483
1484   if ( faceIndex < 0 || faceIndex >= NbFaces() )
1485     return false;
1486
1487   if (myFaceNodes != NULL) {
1488     delete [] myFaceNodes;
1489     myFaceNodes = NULL;
1490   }
1491
1492   if (myVolume->IsPoly()) {
1493     if (!myPolyedre) {
1494       MESSAGE("Warning: bad volumic element");
1495       return false;
1496     }
1497
1498     // check orientation
1499     bool isGoodOri = true;
1500     if (myExternalFaces)
1501       isGoodOri = IsFaceExternal( faceIndex );
1502
1503     // set face nodes
1504     int iNode;
1505     myFaceNbNodes = myPolyedre->NbFaceNodes(faceIndex + 1);
1506     myFaceNodes = new const SMDS_MeshNode* [myFaceNbNodes + 1];
1507     if (isGoodOri) {
1508       for ( iNode = 0; iNode < myFaceNbNodes; iNode++ )
1509         myFaceNodes[ iNode ] = myPolyedre->GetFaceNode(faceIndex + 1, iNode + 1);
1510     } else {
1511       for ( iNode = 0; iNode < myFaceNbNodes; iNode++ )
1512         myFaceNodes[ iNode ] = myPolyedre->GetFaceNode(faceIndex + 1, myFaceNbNodes - iNode);
1513     }
1514     myFaceNodes[ myFaceNbNodes ] = myFaceNodes[ 0 ]; // last = first
1515
1516   }
1517   else {
1518     // choose face node indices
1519     switch ( myVolumeNbNodes ) {
1520     case 4:
1521       myFaceNbNodes = Tetra_nbN[ faceIndex ];
1522       if ( myExternalFaces )
1523         myFaceNodeIndices = myVolForward ? Tetra_F[ faceIndex ] : Tetra_RE[ faceIndex ];
1524       else
1525         myFaceNodeIndices = myVolForward ? Tetra_F[ faceIndex ] : Tetra_R[ faceIndex ];
1526       break;
1527     case 5:
1528       myFaceNbNodes = Pyramid_nbN[ faceIndex ];
1529       if ( myExternalFaces )
1530         myFaceNodeIndices = myVolForward ? Pyramid_F[ faceIndex ] : Pyramid_RE[ faceIndex ];
1531       else
1532         myFaceNodeIndices = myVolForward ? Pyramid_F[ faceIndex ] : Pyramid_R[ faceIndex ];
1533       break;
1534     case 6:
1535       myFaceNbNodes = Penta_nbN[ faceIndex ];
1536       if ( myExternalFaces )
1537         myFaceNodeIndices = myVolForward ? Penta_FE[ faceIndex ] : Penta_RE[ faceIndex ];
1538       else
1539         myFaceNodeIndices = myVolForward ? Penta_F[ faceIndex ] : Penta_R[ faceIndex ];
1540       break;
1541     case 8:
1542       myFaceNbNodes = Hexa_nbN[ faceIndex ];
1543       if ( myExternalFaces )
1544         myFaceNodeIndices = myVolForward ? Hexa_FE[ faceIndex ] : Hexa_RE[ faceIndex ];
1545       else
1546         myFaceNodeIndices = Hexa_F[ faceIndex ];
1547       break;
1548     case 10:
1549       myFaceNbNodes = QuadTetra_nbN[ faceIndex ];
1550       if ( myExternalFaces )
1551         myFaceNodeIndices = myVolForward ? QuadTetra_F[ faceIndex ] : QuadTetra_RE[ faceIndex ];
1552       else
1553         myFaceNodeIndices = myVolForward ? QuadTetra_F[ faceIndex ] : QuadTetra_R[ faceIndex ];
1554       break;
1555     case 13:
1556       myFaceNbNodes = QuadPyram_nbN[ faceIndex ];
1557       if ( myExternalFaces )
1558         myFaceNodeIndices = myVolForward ? QuadPyram_F[ faceIndex ] : QuadPyram_RE[ faceIndex ];
1559       else
1560         myFaceNodeIndices = myVolForward ? QuadPyram_F[ faceIndex ] : QuadPyram_R[ faceIndex ];
1561       break;
1562     case 15:
1563       myFaceNbNodes = QuadPenta_nbN[ faceIndex ];
1564       if ( myExternalFaces )
1565         myFaceNodeIndices = myVolForward ? QuadPenta_FE[ faceIndex ] : QuadPenta_RE[ faceIndex ];
1566       else
1567         myFaceNodeIndices = myVolForward ? QuadPenta_F[ faceIndex ] : QuadPenta_R[ faceIndex ];
1568       break;
1569     case 20:
1570       myFaceNbNodes = QuadHexa_nbN[ faceIndex ];
1571       if ( myExternalFaces )
1572         myFaceNodeIndices = myVolForward ? QuadHexa_FE[ faceIndex ] : QuadHexa_RE[ faceIndex ];
1573       else
1574         myFaceNodeIndices = QuadHexa_F[ faceIndex ];
1575       break;
1576     default:
1577       return false;
1578     }
1579
1580     // set face nodes
1581     myFaceNodes = new const SMDS_MeshNode* [myFaceNbNodes + 1];
1582     for ( int iNode = 0; iNode < myFaceNbNodes; iNode++ )
1583       myFaceNodes[ iNode ] = myVolumeNodes[ myFaceNodeIndices[ iNode ]];
1584     myFaceNodes[ myFaceNbNodes ] = myFaceNodes[ 0 ];
1585   }
1586
1587   myCurFace = faceIndex;
1588
1589   return true;
1590 }
1591
1592 //=======================================================================
1593 //function : GetType
1594 //purpose  : return VolumeType by nb of nodes in a volume
1595 //=======================================================================
1596
1597 SMDS_VolumeTool::VolumeType SMDS_VolumeTool::GetType(int nbNodes)
1598 {
1599   switch ( nbNodes ) {
1600   case 4: return TETRA;
1601   case 5: return PYRAM;
1602   case 6: return PENTA;
1603   case 8: return HEXA;
1604   case 10: return QUAD_TETRA;
1605   case 13: return QUAD_PYRAM;
1606   case 15: return QUAD_PENTA;
1607   case 20: return QUAD_HEXA;
1608   default:return UNKNOWN;
1609   }
1610 }
1611
1612 //=======================================================================
1613 //function : NbFaces
1614 //purpose  : return nb of faces by volume type
1615 //=======================================================================
1616
1617 int SMDS_VolumeTool::NbFaces( VolumeType type )
1618 {
1619   switch ( type ) {
1620   case TETRA     :
1621   case QUAD_TETRA: return 4;
1622   case PYRAM     :
1623   case QUAD_PYRAM: return 5;
1624   case PENTA     :
1625   case QUAD_PENTA: return 5;
1626   case HEXA      :
1627   case QUAD_HEXA : return 6;
1628   default:    return 0;
1629   }
1630 }
1631
1632 //================================================================================
1633 /*!
1634  * \brief Useful to know nb of corner nodes of a quadratic volume
1635   * \param type - volume type
1636   * \retval int - nb of corner nodes
1637  */
1638 //================================================================================
1639
1640 int SMDS_VolumeTool::NbCornerNodes(VolumeType type)
1641 {
1642   switch ( type ) {
1643   case TETRA     :
1644   case QUAD_TETRA: return 4;
1645   case PYRAM     :
1646   case QUAD_PYRAM: return 5;
1647   case PENTA     :
1648   case QUAD_PENTA: return 6;
1649   case HEXA      :
1650   case QUAD_HEXA : return 8;
1651   default:    return 0;
1652   }
1653   return 0;
1654 }
1655   // 
1656
1657 //=======================================================================
1658 //function : GetFaceNodesIndices
1659 //purpose  : Return the array of face nodes indices
1660 //           To comfort link iteration, the array
1661 //           length == NbFaceNodes( faceIndex ) + 1 and
1662 //           the last node index == the first one.
1663 //=======================================================================
1664
1665 const int* SMDS_VolumeTool::GetFaceNodesIndices(VolumeType type,
1666                                                 int        faceIndex,
1667                                                 bool       external)
1668 {
1669   switch ( type ) {
1670   case TETRA: return Tetra_F[ faceIndex ];
1671   case PYRAM: return Pyramid_F[ faceIndex ];
1672   case PENTA: return external ? Penta_FE[ faceIndex ] : Penta_F[ faceIndex ];
1673   case HEXA:  return external ? Hexa_FE[ faceIndex ] : Hexa_F[ faceIndex ];
1674   case QUAD_TETRA: return QuadTetra_F[ faceIndex ];
1675   case QUAD_PYRAM: return QuadPyram_F[ faceIndex ];
1676   case QUAD_PENTA: return external ? QuadPenta_FE[ faceIndex ] : QuadPenta_F[ faceIndex ];
1677   case QUAD_HEXA:  return external ? QuadHexa_FE[ faceIndex ] : QuadHexa_F[ faceIndex ];
1678   default:;
1679   }
1680   return 0;
1681 }
1682
1683 //=======================================================================
1684 //function : NbFaceNodes
1685 //purpose  : Return number of nodes in the array of face nodes
1686 //=======================================================================
1687
1688 int SMDS_VolumeTool::NbFaceNodes(VolumeType type,
1689                                  int        faceIndex )
1690 {
1691   switch ( type ) {
1692   case TETRA: return Tetra_nbN[ faceIndex ];
1693   case PYRAM: return Pyramid_nbN[ faceIndex ];
1694   case PENTA: return Penta_nbN[ faceIndex ];
1695   case HEXA:  return Hexa_nbN[ faceIndex ];
1696   case QUAD_TETRA: return QuadTetra_nbN[ faceIndex ];
1697   case QUAD_PYRAM: return QuadPyram_nbN[ faceIndex ];
1698   case QUAD_PENTA: return QuadPenta_nbN[ faceIndex ];
1699   case QUAD_HEXA:  return QuadHexa_nbN[ faceIndex ];
1700   default:;
1701   }
1702   return 0;
1703 }
1704
1705 //=======================================================================
1706 //function : Get
1707 //purpose  : return element
1708 //=======================================================================
1709
1710 const SMDS_MeshVolume* SMDS_VolumeTool::Element() const
1711 {
1712   return static_cast<const SMDS_MeshVolume*>( myVolume );
1713 }
1714
1715 //=======================================================================
1716 //function : ID
1717 //purpose  : return element ID
1718 //=======================================================================
1719
1720 int SMDS_VolumeTool::ID() const
1721 {
1722   return myVolume ? myVolume->GetID() : 0;
1723 }