Salome HOME
Merge from V6_main 12/11/2012
[modules/smesh.git] / idl / SMESH_Mesh.idl
1 // Copyright (C) 2007-2012  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   : SMESH_Mesh.idl
24 //  Author : Paul RASCLE, EDF
25 //
26 #ifndef _SMESH_MESH_IDL_
27 #define _SMESH_MESH_IDL_
28
29 #include "SALOME_Exception.idl"
30 #include "SALOME_GenericObj.idl"
31 #include "GEOM_Gen.idl"
32 #include "MED.idl"
33
34 module SMESH
35 {
36   interface SMESH_Hypothesis;
37   typedef sequence<SMESH_Hypothesis> ListOfHypothesis;
38   interface SMESH_GroupBase;
39   typedef sequence<SMESH_GroupBase> ListOfGroups;
40   interface SMESH_IDSource;
41   typedef sequence<SMESH_IDSource> ListOfIDSources;
42
43   typedef sequence<double    > double_array ;
44   typedef sequence<long      > long_array ;
45   typedef sequence<string    > string_array ;
46   typedef sequence<long_array> array_of_long_array ;
47
48   enum log_command
49     {
50       ADD_NODE,
51       ADD_EDGE,
52       ADD_TRIANGLE,
53       ADD_QUADRANGLE,
54       ADD_POLYGON,
55       ADD_TETRAHEDRON,
56       ADD_PYRAMID,
57       ADD_PRISM,
58       ADD_HEXAHEDRON,
59       ADD_POLYHEDRON,
60       REMOVE_NODE,
61       REMOVE_ELEMENT,
62       MOVE_NODE,
63       CHANGE_ELEMENT_NODES,
64       CHANGE_POLYHEDRON_NODES,
65       RENUMBER,
66       CLEAR_MESH,
67       ADD_QUADEDGE,
68       ADD_QUADTRIANGLE,
69       ADD_QUADQUADRANGLE,
70       ADD_QUADTETRAHEDRON,
71       ADD_QUADPYRAMID,
72       ADD_QUADPENTAHEDRON,
73       ADD_QUADHEXAHEDRON,
74       ADD_ELEM0D,
75       ADD_BIQUAD_QUADRANGLE,
76       ADD_TRIQUAD_HEXA,
77       ADD_HEXAGONAL_PRISM,
78       ADD_BALL
79     };
80
81   struct log_block
82   {
83     long commandType;
84     long number;
85     double_array coords;
86     long_array indexes;
87   };
88
89   struct PointStruct { double x;
90                        double y;
91                        double z; } ;
92
93   typedef sequence<PointStruct> nodes_array;
94
95   struct DirStruct   { PointStruct PS ; } ;          // analog to Occ Direction
96
97   struct AxisStruct  { double x;
98                        double y;
99                        double z;
100                        double vx;
101                        double vy;
102                        double vz; } ;
103
104   /*!
105    * Node location on a shape
106    */
107   struct NodePosition {
108     long             shapeID;
109     GEOM::shape_type shapeType;
110     double_array     params; // [U] on EDGE, [U,V] on FACE, [] on the rest shapes
111   };
112
113   /*!
114    * Enumeration for element type, like in SMDS
115    */
116   enum ElementType
117   {
118     ALL,
119     NODE,
120     EDGE,
121     FACE,
122     VOLUME,
123     ELEM0D,
124     BALL
125   };
126   typedef sequence<ElementType> array_of_ElementType ;
127
128   /*!
129    * Enumeration for element geometry type, like in SMDS
130    */
131   enum GeometryType
132   {
133     Geom_POINT,
134     Geom_EDGE,
135     Geom_TRIANGLE,
136     Geom_QUADRANGLE, // when a new GeometryType is added, please
137     Geom_POLYGON,    // update a corresponding list in SMESH_2smeshpy.cxx, ln 665
138     Geom_TETRA,
139     Geom_PYRAMID,
140     Geom_HEXA,
141     Geom_PENTA,
142     Geom_HEXAGONAL_PRISM,
143     Geom_POLYHEDRA,
144     Geom_BALL
145   };
146   
147   /*!
148    * ElementOrder points out entities of what order are requested
149    */
150   enum ElementOrder {
151     ORDER_ANY,          /*! entities of any order */
152     ORDER_LINEAR,       /*! entities of 1st order */
153     ORDER_QUADRATIC     /*! entities of 2nd order */
154   };
155
156
157   /*!
158    * Enumeration of entity type used in mesh info array,
159    * it should be synchronised with enum SMDSAbs_EntityType
160    */
161   enum EntityType
162   {
163     Entity_Node,
164     Entity_0D,
165     Entity_Edge,
166     Entity_Quad_Edge,
167     Entity_Triangle,
168     Entity_Quad_Triangle,
169     Entity_Quadrangle,
170     Entity_Quad_Quadrangle,
171     Entity_BiQuad_Quadrangle,
172     Entity_Polygon,
173     Entity_Quad_Polygon,
174     Entity_Tetra,
175     Entity_Quad_Tetra,
176     Entity_Pyramid,
177     Entity_Quad_Pyramid,
178     Entity_Hexa,
179     Entity_Quad_Hexa,
180     Entity_TriQuad_Hexa,
181     Entity_Penta,
182     Entity_Quad_Penta,
183     Entity_Hexagonal_Prism,
184     Entity_Polyhedra,
185     Entity_Quad_Polyhedra,
186     Entity_Ball,
187     Entity_Last
188   };
189
190
191   /*!
192    * Enumeration for hypothesis status (used by AddHypothesis() and RemoveHypothesis() methods)
193    */
194   enum Hypothesis_Status // in the order of severity
195   {
196     HYP_OK,
197     HYP_MISSING,      // algo misses a hypothesis
198     HYP_CONCURENT,    // several applicable hypotheses
199     HYP_BAD_PARAMETER,// hypothesis has a bad parameter value
200     HYP_HIDDEN_ALGO,  // an algo is hidden by an upper dim algo generating all-dim elements
201     HYP_HIDING_ALGO,  // an algo hides lower dim algos by generating all-dim elements
202     HYP_UNKNOWN_FATAL,//  --- all statuses below should be considered as fatal
203                       //      for Add/RemoveHypothesis operations
204     HYP_INCOMPATIBLE, // hypothesis does not fit algo
205     HYP_NOTCONFORM,   // not conform mesh is produced appling a hypothesis
206     HYP_ALREADY_EXIST,// such hypothesis already exist
207     HYP_BAD_DIM,      // bad dimension
208     HYP_BAD_SUBSHAPE, // shape is neither the main one, nor its sub-shape, nor a group
209     HYP_BAD_GEOMETRY, // geometry mismatches algorithm's expectation
210     HYP_NEED_SHAPE    // algorithm can work on shape only
211   };
212
213   /*!
214    * Enumeration for DriverMED read status (used by ImportMEDFile() method)
215    */
216   enum DriverMED_ReadStatus // in the order of severity
217   {
218     DRS_OK,
219     DRS_EMPTY,          // a MED file contains no mesh with the given name
220     DRS_WARN_RENUMBER,  // a MED file has overlapped ranges of element numbers,
221                         // so the numbers from the file are ignored
222     DRS_WARN_SKIP_ELEM, // some elements were skipped due to incorrect file data
223     DRS_FAIL            // general failure (exception etc.)
224   };
225
226   /*!
227    * Enumeration for DriverMED (used by Perform() method)
228    */
229   enum MED_VERSION // in the order of severity
230   {
231     MED_V2_1,
232     MED_V2_2
233   };
234
235   typedef sequence<log_block> log_array;
236
237
238   /*!
239    * Auxilary flags for advanced extrusion.
240    * BOUNDARY: create or not boundary for result of extrusion
241    * SEW:      try to use existing nodes or create new nodes in any case
242    */
243   const long EXTRUSION_FLAG_BOUNDARY = 1;
244   const long EXTRUSION_FLAG_SEW = 2;
245   
246   /*!
247    * Structure used in mesh edit preview data (MeshPreviewStruct)
248    */
249   struct ElementSubType { ElementType SMDS_ElementType;
250                           boolean     isPoly;
251                           long        nbNodesInElement; };
252
253   typedef sequence<ElementSubType> types_array;
254
255   /*!
256    * Structure containing mesh edit preview data
257    */
258   struct MeshPreviewStruct { nodes_array nodesXYZ;
259                              long_array  elementConnectivities;
260                              types_array elementTypes; };
261
262   interface SMESH_Mesh;
263
264   interface SMESH_IDSource
265   {
266     /*!
267      * Returns a sequence of all element IDs
268      */
269     long_array GetIDs();
270
271     /*!
272      * Returns statistic of mesh elements
273      * @return array of number enityties by index of EntityType
274      */
275     long_array GetMeshInfo();
276
277     /*!
278      * Returns types of elements it contains.
279      * It's empty if the SMESH_IDSource contains no IDs
280      */
281     array_of_ElementType GetTypes();
282
283     /*!
284      * Returns the mesh
285      */
286     SMESH_Mesh GetMesh();
287
288     /*!
289      * Returns false if GetMeshInfo() returns incorrect information that may
290      * happen if mesh data is not yet fully loaded from the file of study.
291      */
292     boolean IsMeshInfoCorrect();
293   };
294
295   interface SMESH_Group;
296   interface SMESH_GroupOnGeom;
297   interface Filter;
298   interface SMESH_GroupOnFilter;
299   interface SMESH_subMesh;
300   interface SMESH_MeshEditor;
301
302   typedef sequence<SMESH_subMesh>     submesh_array;
303   typedef sequence<submesh_array>     submesh_array_array;
304
305   interface SMESH_Mesh : SALOME::GenericObj, SMESH_IDSource
306   {
307     /*!
308      * Return true if there is a geometry to be meshed
309      */
310     boolean HasShapeToMesh()
311       raises (SALOME::SALOME_Exception);
312
313     /*!
314      * Get geom shape to mesh. A result sould not be nil. Use HasShapeToMesh()
315      * to know if a returned shape 
316      */
317     GEOM::GEOM_Object GetShapeToMesh()
318       raises (SALOME::SALOME_Exception);
319
320     /*!
321      * Return false if the mesh is not yet fully loaded from the study file
322      */
323     boolean IsLoaded()
324       raises (SALOME::SALOME_Exception);
325
326     /*!
327      * Load full mesh data from the study file
328      */
329     void Load()
330       raises (SALOME::SALOME_Exception);
331
332     /*!
333      * Remove all nodes and elements
334      */
335     void Clear()
336       raises (SALOME::SALOME_Exception);
337
338     /*!
339      *  Get the list of sub-meshes existing in the mesh
340      */
341     submesh_array GetSubMeshes()
342       raises (SALOME::SALOME_Exception);
343
344     /*!
345      * Remove all nodes and elements of submesh
346      */
347     void ClearSubMesh(in long ShapeID)
348       raises (SALOME::SALOME_Exception);
349
350     /*!
351      * Get the subMesh object associated to a Sub-shape. The subMesh object
352      * gives access to nodes and elements IDs.
353      * SubMesh will be used instead of Sub-shape in a next idl version to
354      * adress a specific subMesh...
355      */
356     SMESH_subMesh GetSubMesh(in GEOM::GEOM_Object aSubObject, in string name)
357       raises (SALOME::SALOME_Exception);
358
359     /*!
360      * Remove a submesh
361      */
362     void RemoveSubMesh(in SMESH_subMesh aSubMesh)
363       raises (SALOME::SALOME_Exception);
364
365
366     /*!
367      * Create a group
368      */
369     SMESH_Group CreateGroup( in ElementType elem_type,
370                              in string      name )
371       raises (SALOME::SALOME_Exception);
372
373     /*!
374      * Create a group from geometry
375      */
376     SMESH_GroupOnGeom CreateGroupFromGEOM( in ElementType       elemType,
377                                            in string            name,
378                                            in GEOM::GEOM_Object geomObject )
379       raises (SALOME::SALOME_Exception);
380
381     /*!
382      * Create a group from filter
383      */
384     SMESH_GroupOnFilter CreateGroupFromFilter( in ElementType   elemType,
385                                                in string        name,
386                                                in SMESH::Filter filter )
387       raises (SALOME::SALOME_Exception);
388
389     /*!
390      * Remove a group
391      */
392     void RemoveGroup(in SMESH_GroupBase aGroup)
393       raises (SALOME::SALOME_Exception);
394
395     /*!
396      *  Remove group with its contents
397      */
398     void RemoveGroupWithContents( in SMESH_GroupBase aGroup )
399       raises (SALOME::SALOME_Exception);
400
401     /*!
402      *  Get the list of groups existing in the mesh
403      */
404     ListOfGroups GetGroups()
405       raises (SALOME::SALOME_Exception);
406
407     /*!
408      *  Get number of groups existing in the mesh
409      */
410     long NbGroups()
411       raises (SALOME::SALOME_Exception);
412
413     /*!
414      * Union of two groups
415      *    New group is created. All mesh elements that are
416      *    present in initial groups are added to the new one
417      */
418     SMESH_Group UnionGroups (in SMESH_GroupBase aGroup1,
419                              in SMESH_GroupBase aGroup2,
420                              in string          name )
421       raises (SALOME::SALOME_Exception);
422       
423     /*!
424      * Union of list of groups
425      * New group is created. All mesh elements that are
426      * present in initial groups are added to the new one
427      */
428     SMESH_Group UnionListOfGroups (in ListOfGroups aListOfGroups,
429                                    in string       name )
430       raises (SALOME::SALOME_Exception);
431
432     /*!
433      *  Intersection of two groups
434      *  New group is created. All mesh elements that are
435      *  present in both initial groups are added to the new one.
436      */
437     SMESH_Group IntersectGroups (in SMESH_GroupBase aGroup1,
438                                  in SMESH_GroupBase aGroup2,
439                                  in string          name )
440       raises (SALOME::SALOME_Exception);
441       
442     /*!
443      *  Intersection of list of groups
444      *  New group is created. All mesh elements that are
445      *  present in all initial groups simultaneously are added to the new one.
446      */
447     SMESH_Group IntersectListOfGroups (in ListOfGroups aListOfGroups,
448                                        in string       name)
449       raises (SALOME::SALOME_Exception);
450
451     /*!
452      *  Cut of two groups
453      *  New group is created. All mesh elements that are present in
454      *  main group but do not present in tool group are added to the new one
455      */
456     SMESH_Group CutGroups (in SMESH_GroupBase aMainGroup,
457                            in SMESH_GroupBase aToolGroup,
458                            in string          name )
459       raises (SALOME::SALOME_Exception);
460       
461     /*!
462      *  Cut of lists of groups
463      *  New group is created. All mesh elements that are present in
464      *  main groups but do not present in tool groups are added to the new one
465      */
466     SMESH_Group CutListOfGroups (in ListOfGroups aMainGroups,
467                                  in ListOfGroups aToolGroups,
468                                  in string       name)
469       raises (SALOME::SALOME_Exception);
470       
471     /*!
472      *  Create groups of entities from existing groups of superior dimensions 
473      *  New group is created. System 
474      *  1) extracts all nodes from each group,
475      *  2) combines all elements of specified dimension laying on these nodes.
476      */
477     SMESH_Group CreateDimGroup( in ListOfGroups aListOfGroups,
478                                 in ElementType  anElemType,
479                                 in string       name )
480       raises (SALOME::SALOME_Exception);
481
482     /*!
483      * Convert group on geometry or on filter into standalone group
484      */
485     SMESH_Group ConvertToStandalone( in SMESH_GroupBase theGroupOn )
486       raises (SALOME::SALOME_Exception);
487
488     /*!
489      * Add hypothesis to the mesh, under a particular Sub-shape
490      * (or the main shape itself)
491      * The Add method is only used to prepare the build of the mesh and store
492      * the algorithms and associated parameters.
493      * Actual job of mesh the shape is done by MESH_Gen.
494      * @params
495      * - aSubShape : sub-shape obtained by a shape explode in GEOM
496      *   (or main shape)
497      * - anHyp : hypothesis object
498      * @return
499      * - OK if the hypothesis is compatible with the sub-shape
500      *   (and all previous hypothesis on the sub-shape)
501      * - NOK if the hypothesis is not compatible with the sub-shape
502      *   (or one previous hypothesis on the sub-shape)
503      * raises exception if hypothesis has not been created
504      */
505     Hypothesis_Status AddHypothesis(in GEOM::GEOM_Object aSubObject,
506                                     in SMESH_Hypothesis anHyp)
507       raises (SALOME::SALOME_Exception);
508 //     boolean AddHypothesis(in SMESH_subMesh aSubMesh, in SMESH_Hypothesis anHyp)
509 //       raises (SALOME::SALOME_Exception);
510
511     /*!
512      * Remove an hypothesis previouly added with AddHypothesis.
513      */
514     Hypothesis_Status RemoveHypothesis(in GEOM::GEOM_Object aSubObject,
515                                        in SMESH_Hypothesis anHyp)
516       raises (SALOME::SALOME_Exception);
517 //     boolean RemoveHypothesis(in SMESH_subMesh aSubMesh,
518 //                           in SMESH_Hypothesis anHyp)
519 //       raises (SALOME::SALOME_Exception);
520
521     /*!
522      * Get the list of hypothesis added on a sub-shape
523      */
524     ListOfHypothesis GetHypothesisList(in GEOM::GEOM_Object aSubObject)
525       raises (SALOME::SALOME_Exception);
526 //     ListOfHypothesis GetHypothesisList(in SMESH_subMesh aSubMesh)
527 //       raises (SALOME::SALOME_Exception);
528
529     /*!
530      * Get the log of nodes and elements added or removed since previous
531      * clear of the log.
532      * @params
533      * - clearAfterGet : log is emptied after Get (safe if concurrents access)
534      */
535     //    string_array GetLog(in boolean clearAfterGet)
536     //      raises (SALOME::SALOME_Exception);
537     log_array GetLog(in boolean clearAfterGet)
538       raises (SALOME::SALOME_Exception);
539
540     /*!
541      * Clear the log of nodes and elements added or removed since previous
542      * clear. Must be used immediately after GetLog if clearAfterGet is false.
543      */
544     void ClearLog()
545       raises (SALOME::SALOME_Exception);
546
547     /*!
548      * Toggle auto color mode on the object.
549      * @params
550      * - theAutoColor : flag which toggles auto color mode.
551      */
552     void SetAutoColor(in boolean theAutoColor)
553       raises (SALOME::SALOME_Exception);
554
555     /*!
556      * Get flag of object's auto color mode.
557      */
558     boolean GetAutoColor()
559       raises (SALOME::SALOME_Exception);
560
561     /*!
562      * Get the internal Id
563      */
564     long GetId();
565
566     /*!
567      * Get the study Id
568      */
569     long GetStudyId();
570
571     /*!
572      * Obtain instance of SMESH_MeshEditor
573      */
574     SMESH_MeshEditor GetMeshEditor()
575       raises (SALOME::SALOME_Exception);
576
577     /*!
578      * Return SMESH_MeshEditor that would not modify the mesh but
579      * fill MeshPreviewStruct
580      */
581     SMESH_MeshEditor GetMeshEditPreviewer()
582       raises (SALOME::SALOME_Exception);
583
584     /*!
585      * Return true if the mesh has been edited since a total re-compute
586      * and those modifications may prevent successful partial re-compute
587      */
588     boolean HasModificationsToDiscard()
589       raises (SALOME::SALOME_Exception);
590
591     /*! Check group names for duplications.
592      *  Consider maximum group name length stored in MED file.
593      */
594     boolean HasDuplicatedGroupNamesMED();
595
596     /*!
597      * Export Mesh to different MED Formats
598      * @params
599      * - file : name of the MED file
600      * - auto_groups : boolean parameter for creating/not creating
601      *   the groups Group_On_All_Nodes, Group_On_All_Faces, ... ;
602      *   the typical use is auto_groups=false.
603      * - version : define the version of format of MED file, that will be created
604      * - overwrite : boolean parameter for overwriting/not overwriting the file, if it exists
605      */
606     void ExportToMEDX( in string      file, 
607                        in boolean     auto_groups, 
608                        in MED_VERSION version, 
609                        in boolean     overwrite ) raises (SALOME::SALOME_Exception);
610
611     /*!
612      * Export a part of Mesh into a MED file
613      * @params
614      * - meshPart : a part of mesh to store
615      * - file : name of the MED file
616      * - version : define the version of format of MED file, that will be created
617      * - overwrite : boolean parameter for overwriting/not overwriting the file, if it exists
618      */
619     void ExportPartToMED( in SMESH_IDSource meshPart, 
620                           in string         file, 
621                           in boolean        auto_groups,
622                           in MED_VERSION    version,
623                           in boolean        overwrite ) raises (SALOME::SALOME_Exception);
624
625     /*!
626      * Export Mesh to different MED Formats
627      * Works, just the same as ExportToMEDX, with overwrite parameter equal to true.
628      * The method is kept in order to support old functionality
629      */
630     void ExportToMED( in string file, in boolean auto_groups, in MED_VERSION theVersion )
631       raises (SALOME::SALOME_Exception);
632
633     /*!
634      * Export Mesh to MED_V2_1 MED format
635      * Works, just the same as ExportToMEDX with MED_VERSION parameter equal to MED_V2_1
636      * and overwrite parameter equal to true
637      * The method is kept in order to support old functionality
638      */
639     void ExportMED( in string file, in boolean auto_groups )
640       raises (SALOME::SALOME_Exception);
641
642     /*!
643      * Export Mesh to SAUV formatted file
644      * Write a temporary med file and use med2sauv
645      */
646     void ExportSAUV( in string file, in boolean auto_groups )
647       raises (SALOME::SALOME_Exception);
648
649     /*!
650      * Return string representation of a MED file version comprising nbDigits
651      */
652     string GetVersionString(in MED_VERSION version, in short nbDigits);
653
654     /*!
655      * Export Mesh to different Formats
656      * (UNV supported version is I-DEAS 10)
657      */
658     void ExportDAT( in string file ) raises (SALOME::SALOME_Exception);
659     void ExportUNV( in string file ) raises (SALOME::SALOME_Exception);
660     void ExportSTL( in string  file,
661                     in boolean isascii ) raises (SALOME::SALOME_Exception);
662     void ExportCGNS( in SMESH_IDSource meshPart, 
663                      in string         file,
664                      in boolean        overwrite ) raises (SALOME::SALOME_Exception);
665     void ExportGMF( in SMESH_IDSource  meshPart, 
666                     in string          file ) raises (SALOME::SALOME_Exception);
667     void ExportPartToDAT( in SMESH_IDSource meshPart, 
668                           in string         file ) raises (SALOME::SALOME_Exception);
669     void ExportPartToUNV( in SMESH_IDSource meshPart, 
670                           in string         file ) raises (SALOME::SALOME_Exception);
671     void ExportPartToSTL( in SMESH_IDSource meshPart,
672                           in string         file,
673                           in boolean        isascii ) raises (SALOME::SALOME_Exception);
674
675     /*!
676      * Get MED Mesh
677      */
678     SALOME_MED::MESH GetMEDMesh()
679       raises (SALOME::SALOME_Exception);
680
681     /*!
682      * Get informations about mesh contents
683      */
684     long NbNodes()
685       raises (SALOME::SALOME_Exception);
686
687     long NbElements()
688       raises (SALOME::SALOME_Exception);
689
690     long Nb0DElements()
691       raises (SALOME::SALOME_Exception);
692
693     long NbBalls()
694       raises (SALOME::SALOME_Exception);
695
696     long NbEdges()
697       raises (SALOME::SALOME_Exception);
698
699     long NbEdgesOfOrder(in ElementOrder order)
700       raises (SALOME::SALOME_Exception);
701
702     long NbFaces()
703       raises (SALOME::SALOME_Exception);
704
705     long NbFacesOfOrder(in ElementOrder order)
706       raises (SALOME::SALOME_Exception);
707
708     long NbTriangles()
709       raises (SALOME::SALOME_Exception);
710
711     long NbTrianglesOfOrder(in ElementOrder order)
712       raises (SALOME::SALOME_Exception);
713
714     long NbQuadrangles()
715       raises (SALOME::SALOME_Exception);
716
717     long NbQuadranglesOfOrder(in ElementOrder order)
718       raises (SALOME::SALOME_Exception);
719
720     long NbBiQuadQuadrangles()
721       raises (SALOME::SALOME_Exception);
722
723     long NbPolygons()
724       raises (SALOME::SALOME_Exception);
725
726     long NbVolumes()
727       raises (SALOME::SALOME_Exception);
728
729     long NbVolumesOfOrder(in ElementOrder order)
730       raises (SALOME::SALOME_Exception);
731
732     long NbTetras()
733       raises (SALOME::SALOME_Exception);
734
735     long NbTetrasOfOrder(in ElementOrder order)
736       raises (SALOME::SALOME_Exception);
737
738     long NbHexas()
739       raises (SALOME::SALOME_Exception);
740
741     long NbHexasOfOrder(in ElementOrder order)
742       raises (SALOME::SALOME_Exception);
743
744     long NbTriQuadraticHexas()
745       raises (SALOME::SALOME_Exception);
746
747     long NbPyramids()
748       raises (SALOME::SALOME_Exception);
749
750     long NbPyramidsOfOrder(in ElementOrder order)
751       raises (SALOME::SALOME_Exception);
752
753     long NbPrisms()
754       raises (SALOME::SALOME_Exception);
755
756     long NbPrismsOfOrder(in ElementOrder order)
757       raises (SALOME::SALOME_Exception);
758
759     long NbHexagonalPrisms()
760       raises (SALOME::SALOME_Exception);
761
762     long NbPolyhedrons()
763       raises (SALOME::SALOME_Exception);
764
765     long NbSubMesh()
766       raises (SALOME::SALOME_Exception);
767
768     long_array GetElementsId()
769       raises (SALOME::SALOME_Exception);
770
771     long_array GetElementsByType( in ElementType theType )
772       raises (SALOME::SALOME_Exception);
773
774     long_array GetNodesId()
775       raises (SALOME::SALOME_Exception);
776     
777     /*!
778      * Returns type of mesh element
779      */    
780     ElementType GetElementType( in long id, in boolean iselem )
781       raises (SALOME::SALOME_Exception);
782
783     EntityType GetElementGeomType( in long id )
784       raises (SALOME::SALOME_Exception);
785
786     long_array GetSubMeshElementsId(in long ShapeID)
787       raises (SALOME::SALOME_Exception);
788
789     long_array GetSubMeshNodesId(in long ShapeID, in boolean all )
790       raises (SALOME::SALOME_Exception);
791     
792     ElementType GetSubMeshElementType(in long ShapeID)
793       raises (SALOME::SALOME_Exception);
794
795
796     /*!
797      * Methods to set meshing order of submeshes
798      */
799
800     /*!
801      * \brief Return submesh objects list in meshing order
802      */
803     submesh_array_array GetMeshOrder();
804
805     /*!
806      * \brief Set submesh object order
807      */
808     boolean SetMeshOrder(in submesh_array_array theSubMeshArray);
809
810
811     /*!
812      * Get mesh description
813      */
814     string Dump();
815
816     /*!
817      * Get mesh pointer
818      */
819     long long GetMeshPtr();
820
821     /*!
822      * Get XYZ coordinates of node as list of double
823      * If there is not node for given ID - returns empty list
824      */
825     double_array GetNodeXYZ(in long id);
826
827     /*!
828      * For given node returns list of IDs of inverse elements
829      * If there is not node for given ID - returns empty list
830      */
831     long_array GetNodeInverseElements(in long id);
832
833     /*!
834      * \brief Return position of a node on shape
835      */
836     NodePosition GetNodePosition(in long NodeID);
837
838     /*!
839      * If given element is node returns IDs of shape from position
840      * If there is not node for given ID - returns -1
841      */
842     long GetShapeID(in long id);
843
844     /*!
845      * For given element returns ID of result shape after 
846      * ::FindShape() from SMESH_MeshEditor
847      * If there is not element for given ID - returns -1
848      */
849     long GetShapeIDForElem(in long id);
850
851     /*!
852      * Returns number of nodes for given element
853      * If there is not element for given ID - returns -1
854      */
855     long GetElemNbNodes(in long id);
856
857     /*!
858      * Returns IDs of nodes of given element
859      */
860     long_array GetElemNodes(in long id);
861
862     /*!
863      * Returns ID of node by given index for given element
864      * If there is not element for given ID - returns -1
865      * If there is not node for given index - returns -2
866      */
867     long GetElemNode(in long id, in long index);
868
869     /*!
870      * Returns true if given node is medium node
871      * in given quadratic element
872      */
873     boolean IsMediumNode(in long ide, in long idn);
874
875     /*!
876      * Returns true if given node is medium node
877      * in one of quadratic elements
878      */
879     boolean IsMediumNodeOfAnyElem(in long idn, in ElementType elem_type);
880
881     /*!
882      * Returns number of edges for given element
883      */
884     long ElemNbEdges(in long id);
885
886     /*!
887      * Returns number of faces for given element
888      */
889     long ElemNbFaces(in long id);
890
891     /*!
892      * Returns nodes of given face (counted from zero) for given volumic element.
893      */
894     long_array GetElemFaceNodes(in long elemId, in short faceIndex);
895
896     /*!
897      * Returns an element based on all given nodes.
898      */
899     long FindElementByNodes(in long_array nodes);
900
901     /*!
902      * Returns true if given element is polygon
903      */
904     boolean IsPoly(in long id);
905
906     /*!
907      * Returns true if given element is quadratic
908      */
909     boolean IsQuadratic(in long id);
910
911     /*!
912      * Returns diameter of a ball discrete element or zero in case of an invalid \a id
913      */
914     double GetBallDiameter(in long id);
915
916     /*!
917      * Returns XYZ coordinates of bary center for given element
918      * as list of double
919      * If there is not element for given ID - returns empty list
920      */
921     double_array BaryCenter(in long id);
922
923     /*! Gets information about imported MED file */
924     SALOME_MED::MedFileInfo GetMEDFileInfo();
925
926     /*!
927      *  Sets list of notebook variables used for Mesh operations separated by ":" symbol
928      *  \param theParameters is a string containing the notebook variables
929      */
930     void SetParameters (in string theParameters);
931
932     /*!
933      *  Returns list of notebook variables used for Mesh operations separated by ":" symbol
934      */
935     string GetParameters();
936
937     /*!
938      *  Returns list of notebook variables used for last Mesh operation
939      */
940     string_array GetLastParameters();
941   };
942
943   interface SMESH_subMesh : SALOME::GenericObj, SMESH_IDSource
944   {
945     /*!
946      *
947      */
948     long GetNumberOfElements()
949       raises (SALOME::SALOME_Exception);
950
951     /*!
952      *
953      */
954     long GetNumberOfNodes( in boolean all )
955       raises (SALOME::SALOME_Exception);
956
957     /*!
958      *
959      */
960     long_array GetElementsId()
961       raises (SALOME::SALOME_Exception);
962
963     /*!
964      *
965      */
966     long_array GetElementsByType( in ElementType theType )
967       raises (SALOME::SALOME_Exception);
968     
969     /*!
970      * Return type of submesh element
971      */
972     ElementType GetElementType( in long id, in boolean iselem )
973       raises (SALOME::SALOME_Exception);
974
975     /*!
976      *
977      */
978     long_array GetNodesId()
979       raises (SALOME::SALOME_Exception);
980
981     /*!
982      * Get geom shape the submesh is dedicated to
983      */
984     GEOM::GEOM_Object GetSubShape()
985       raises (SALOME::SALOME_Exception);
986
987     /*!
988      * Get SMESH_Mesh which stores nodes coordinates & elements definition
989      */
990     SMESH_Mesh GetFather()
991       raises (SALOME::SALOME_Exception);
992
993     /*!
994      * Get the internal Id
995      */
996     long GetId();
997
998     /*!
999      * Get MED subMesh
1000      */
1001     SALOME_MED::FAMILY GetFamily()
1002       raises (SALOME::SALOME_Exception);
1003   };
1004
1005 };
1006
1007 #endif