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