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