Salome HOME
0019939: EDF 762 SMESH : Definition of groups from other existing groups.
[modules/smesh.git] / idl / SMESH_Mesh.idl
1 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 //
4 //  This library is free software; you can redistribute it and/or
5 //  modify it under the terms of the GNU Lesser General Public
6 //  License as published by the Free Software Foundation; either
7 //  version 2.1 of the License.
8 //
9 //  This library is distributed in the hope that it will be useful,
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 //  Lesser General Public License for more details.
13 //
14 //  You should have received a copy of the GNU Lesser General Public
15 //  License along with this library; if not, write to the Free Software
16 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 //
20 //
21 //
22 //  File   : SMESH_Mesh.idl
23 //  Author : Paul RASCLE, EDF
24 //  $Header$
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     };
73
74   struct log_block
75   {
76     long commandType;
77     long number;
78     double_array coords;
79     long_array indexes;
80   };
81
82   struct PointStruct { double x;
83                        double y;
84                        double z; } ;
85
86   typedef sequence<PointStruct> nodes_array;
87
88   struct DirStruct   { PointStruct PS ; } ;          // analog to Occ Direction
89
90   struct AxisStruct  { double x;
91                        double y;
92                        double z;
93                        double vx;
94                        double vy;
95                        double vz; } ;
96
97   /*!
98    * Node location on a shape
99    */
100   struct NodePosition {
101     long             shapeID;
102     GEOM::shape_type shapeType;
103     double_array     params; // [U] on EDGE, [U,V] on FACE, [] on the rest shapes
104   };
105
106   /*!
107    * Enumeration for element type, like in SMDS
108    */
109   enum ElementType
110   {
111     ALL,
112     NODE,
113     EDGE,
114     FACE,
115     VOLUME
116   };
117   
118   /*!
119    * ElementOrder points out entities of what order are requested
120    */
121   enum ElementOrder {
122     ORDER_ANY,          /*! entities of any order */
123     ORDER_LINEAR,       /*! entities of 1st order */
124     ORDER_QUADRATIC     /*! entities of 2nd order */
125   };
126
127   /*!
128    * Enumeration for hypothesis status (used by AddHypothesis() and RemoveHypothesis() methods)
129    */
130   enum Hypothesis_Status // in the order of severity
131   {
132     HYP_OK,
133     HYP_MISSING,      // algo misses a hypothesis
134     HYP_CONCURENT,    // several applicable hypotheses
135     HYP_BAD_PARAMETER,// hypothesis has a bad parameter value
136     HYP_HIDDEN_ALGO,  // an algo is hidden by an upper dim algo generating all-dim elements
137     HYP_HIDING_ALGO,  // an algo hides lower dim algos by generating all-dim elements
138     HYP_UNKNOWN_FATAL,//  --- all statuses below should be considered as fatal
139                       //      for Add/RemoveHypothesis operations
140     HYP_INCOMPATIBLE, // hypothesis does not fit algo
141     HYP_NOTCONFORM,   // not conform mesh is produced appling a hypothesis
142     HYP_ALREADY_EXIST,// such hypothesis already exist
143     HYP_BAD_DIM,      // bad dimension
144     HYP_BAD_SUBSHAPE, // shape is neither the main one, nor its subshape, nor a group
145     HYP_BAD_GEOMETRY, // geometry mismatches algorithm's expectation
146     HYP_NEED_SHAPE    // algorithm can work on shape only
147   };
148
149   /*!
150    * Enumeration for DriverMED read status (used by ImportMEDFile() method)
151    */
152   enum DriverMED_ReadStatus // in the order of severity
153   {
154     DRS_OK,
155     DRS_EMPTY,          // a MED file contains no mesh with the given name
156     DRS_WARN_RENUMBER,  // a MED file has overlapped ranges of element numbers,
157                         // so the numbers from the file are ignored
158     DRS_WARN_SKIP_ELEM, // some elements were skipped due to incorrect file data
159     DRS_FAIL            // general failure (exception etc.)
160   };
161
162   /*!
163    * Enumeration for DriverMED (used by Perform() method)
164    */
165   enum MED_VERSION // in the order of severity
166   {
167     MED_V2_1,
168     MED_V2_2
169   };
170
171   typedef sequence<log_block> log_array;
172
173
174   /*!
175    * Auxilary flags for advanced extrusion.
176    * BOUNDARY: create or not boundary for result of extrusion
177    * SEW:      try to use existing nodes or create new nodes in any case
178    */
179   const long EXTRUSION_FLAG_BOUNDARY = 1;
180   const long EXTRUSION_FLAG_SEW = 2;
181   
182   /*!
183    * Structure used in mesh edit preview data (MeshPreviewStruct)
184    */
185   struct ElementSubType { ElementType SMDS_ElementType;
186                           boolean     isPoly;
187                           long        nbNodesInElement; };
188
189   typedef sequence<ElementSubType> types_array;
190
191   /*!
192    * Structure containing mesh edit preview data
193    */
194   struct MeshPreviewStruct { nodes_array nodesXYZ;
195                              long_array  elementConnectivities;
196                              types_array elementTypes; };
197
198   interface SMESH_IDSource
199   {
200     /*!
201      * Returns a sequence of all element IDs
202      */
203     long_array GetIDs();
204   };
205
206   interface SMESH_Group;
207   interface SMESH_GroupOnGeom;
208   interface SMESH_subMesh;
209   interface SMESH_MeshEditor;
210   interface SMESH_Mesh : SALOME::GenericObj, SMESH_IDSource
211   {
212     /*!
213      * Return true if there is a geometry to be meshed
214      */
215     boolean HasShapeToMesh()
216       raises (SALOME::SALOME_Exception);
217
218     /*!
219      * Get geom shape to mesh. A result sould not be nil. Use HasShapeToMesh()
220      * to know if a returned shape 
221      */
222     GEOM::GEOM_Object GetShapeToMesh()
223       raises (SALOME::SALOME_Exception);
224
225     /*!
226      * Remove all nodes and elements
227      */
228     void Clear()
229       raises (SALOME::SALOME_Exception);
230
231     /*!
232      * Get the subMesh object associated to a subShape. The subMesh object
233      * gives access to nodes and elements IDs.
234      * SubMesh will be used instead of SubShape in a next idl version to
235      * adress a specific subMesh...
236      */
237     SMESH_subMesh GetSubMesh(in GEOM::GEOM_Object aSubObject, in string name)
238       raises (SALOME::SALOME_Exception);
239
240     /*!
241      * Remove a submesh
242      */
243     void RemoveSubMesh(in SMESH_subMesh aSubMesh)
244       raises (SALOME::SALOME_Exception);
245
246
247     /*!
248      * Create a group
249      */
250     SMESH_Group CreateGroup( in ElementType elem_type,
251                              in string name )
252       raises (SALOME::SALOME_Exception);
253
254     /*!
255      * Create a group from geometry group
256      */
257     SMESH_GroupOnGeom CreateGroupFromGEOM( in ElementType elem_type,
258                                           in string name,
259                                           in GEOM::GEOM_Object theGeomObject )
260       raises (SALOME::SALOME_Exception);
261
262     /*!
263      * Remove a group
264      */
265     void RemoveGroup(in SMESH_GroupBase aGroup)
266       raises (SALOME::SALOME_Exception);
267
268     /*!
269      *  Remove group with its contents
270      */
271     void RemoveGroupWithContents( in SMESH_GroupBase aGroup )
272       raises (SALOME::SALOME_Exception);
273
274     /*!
275      *  Get the list of groups existing in the mesh
276      */
277     ListOfGroups GetGroups()
278       raises (SALOME::SALOME_Exception);
279
280     /*!
281      *  Get number of groups existing in the mesh
282      */
283     long NbGroups()
284       raises (SALOME::SALOME_Exception);
285
286     /*!
287      * Union of two groups
288      *    New group is created. All mesh elements that are
289      *    present in initial groups are added to the new one
290      */
291     SMESH_Group UnionGroups (in SMESH_GroupBase aGroup1,
292                              in SMESH_GroupBase aGroup2,
293                              in string          name )
294       raises (SALOME::SALOME_Exception);
295       
296     /*!
297      * Union of list of groups
298      * New group is created. All mesh elements that are
299      * present in initial groups are added to the new one
300      */
301     SMESH_Group UnionListOfGroups (in ListOfGroups aListOfGroups,
302                                    in string       name )
303       raises (SALOME::SALOME_Exception);
304
305     /*!
306      *  Intersection of two groups
307      *  New group is created. All mesh elements that are
308      *  present in both initial groups are added to the new one.
309      */
310     SMESH_Group IntersectGroups (in SMESH_GroupBase aGroup1,
311                                  in SMESH_GroupBase aGroup2,
312                                  in string          name )
313       raises (SALOME::SALOME_Exception);
314       
315     /*!
316      *  Intersection of list of groups
317      *  New group is created. All mesh elements that are
318      *  present in all initial groups simultaneously are added to the new one.
319      */
320     SMESH_Group IntersectListOfGroups (in ListOfGroups aListOfGroups,
321                                        in string       name)
322       raises (SALOME::SALOME_Exception);
323
324     /*!
325      *  Cut of two groups
326      *  New group is created. All mesh elements that are present in
327      *  main group but do not present in tool group are added to the new one
328      */
329     SMESH_Group CutGroups (in SMESH_GroupBase aMainGroup,
330                            in SMESH_GroupBase aToolGroup,
331                            in string          name )
332       raises (SALOME::SALOME_Exception);
333       
334     /*!
335      *  Cut of lists of groups
336      *  New group is created. All mesh elements that are present in
337      *  main groups but do not present in tool groups are added to the new one
338      */
339     SMESH_Group CutListOfGroups (in ListOfGroups aMainGroups,
340                                  in ListOfGroups aToolGroups,
341                                  in string       name)
342       raises (SALOME::SALOME_Exception);
343       
344     /*!
345      *  Create groups of entities from existing groups of superior dimensions 
346      *  New group is created. System 
347      *  1) extract all nodes from each group,
348      *  2) combine all elements of specified dimension laying on these nodes.
349      */
350     SMESH_Group CreateDimGroup( in ListOfGroups aListOfGroups,
351                                 in ElementType  anElemType,
352                                 in string       name )
353       raises (SALOME::SALOME_Exception);
354
355     /*!
356      * Add hypothesis to the mesh, under a particular subShape
357      * (or the main shape itself)
358      * The Add method is only used to prepare the build of the mesh and store
359      * the algorithms and associated parameters.
360      * Actual job of mesh the shape is done by MESH_Gen.
361      * @params
362      * - aSubShape : subShape obtained by a shape explode in GEOM
363      *   (or main shape)
364      * - anHyp : hypothesis object
365      * @return
366      * - OK if the hypothesis is compatible with the subShape
367      *   (and all previous hypothesis on the subShape)
368      * - NOK if the hypothesis is not compatible with the subShape
369      *   (or one previous hypothesis on the subShape)
370      * raises exception if hypothesis has not been created
371      */
372     Hypothesis_Status AddHypothesis(in GEOM::GEOM_Object aSubObject,
373                                     in SMESH_Hypothesis anHyp)
374       raises (SALOME::SALOME_Exception);
375 //     boolean AddHypothesis(in SMESH_subMesh aSubMesh, in SMESH_Hypothesis anHyp)
376 //       raises (SALOME::SALOME_Exception);
377
378     /*!
379      * Remove an hypothesis previouly added with AddHypothesis.
380      */
381     Hypothesis_Status RemoveHypothesis(in GEOM::GEOM_Object aSubObject,
382                                        in SMESH_Hypothesis anHyp)
383       raises (SALOME::SALOME_Exception);
384 //     boolean RemoveHypothesis(in SMESH_subMesh aSubMesh,
385 //                           in SMESH_Hypothesis anHyp)
386 //       raises (SALOME::SALOME_Exception);
387
388     /*!
389      * Get the list of hypothesis added on a subShape
390      */
391     ListOfHypothesis GetHypothesisList(in GEOM::GEOM_Object aSubObject)
392       raises (SALOME::SALOME_Exception);
393 //     ListOfHypothesis GetHypothesisList(in SMESH_subMesh aSubMesh)
394 //       raises (SALOME::SALOME_Exception);
395
396     /*!
397      * Get the log of nodes and elements added or removed since previous
398      * clear of the log.
399      * @params
400      * - clearAfterGet : log is emptied after Get (safe if concurrents access)
401      */
402     //    string_array GetLog(in boolean clearAfterGet)
403     //      raises (SALOME::SALOME_Exception);
404     log_array GetLog(in boolean clearAfterGet)
405       raises (SALOME::SALOME_Exception);
406
407     /*!
408      * Clear the log of nodes and elements added or removed since previous
409      * clear. Must be used immediately after GetLog if clearAfterGet is false.
410      */
411     void ClearLog()
412       raises (SALOME::SALOME_Exception);
413
414     /*!
415      * Toggle auto color mode on the object.
416      * @params
417      * - theAutoColor : flag which toggles auto color mode.
418      */
419     void SetAutoColor(in boolean theAutoColor)
420       raises (SALOME::SALOME_Exception);
421
422     /*!
423      * Get flag of object's auto color mode.
424      */
425     boolean GetAutoColor()
426       raises (SALOME::SALOME_Exception);
427
428     /*!
429      * Get the internal Id
430      */
431     long GetId();
432
433     /*!
434      * Get the study Id
435      */
436     long GetStudyId();
437
438     /*!
439      * Obtain instance of SMESH_MeshEditor
440      */
441     SMESH_MeshEditor GetMeshEditor()
442       raises (SALOME::SALOME_Exception);
443
444     /*!
445      * Return SMESH_MeshEditor that would not modify the mesh but
446      * fill MeshPreviewStruct
447      */
448     SMESH_MeshEditor GetMeshEditPreviewer()
449       raises (SALOME::SALOME_Exception);
450
451     /*! Check group names for duplications.
452      *  Consider maximum group name length stored in MED file.
453      */
454     boolean HasDuplicatedGroupNamesMED();
455
456     /*!
457      * Export Mesh to different MED Formats
458      * @params
459      * - auto_groups : boolean parameter for creating/not creating
460      *   the groups Group_On_All_Nodes, Group_On_All_Faces, ... ;
461      *   the typical use is auto_groups=false.
462      * - theVersion : define the version of format of MED file, that will be created
463      */
464     void ExportToMED( in string file, in boolean auto_groups, in MED_VERSION theVersion )
465       raises (SALOME::SALOME_Exception);
466
467     /*!
468      * Export Mesh to MED_V2_1 MED format
469      * Works, just the same as ExportToMED, with MED_VERSION parameter equal to MED_V2_1.
470      * The method is kept in order to support old functionality
471      */
472     void ExportMED( in string file, in boolean auto_groups )
473       raises (SALOME::SALOME_Exception);
474
475     /*!
476      * Return string representation of a MED file version comprising nbDigits
477      */
478     string GetVersionString(in MED_VERSION version, in short nbDigits);
479
480     /*!
481      * Export Mesh to DAT, UNV and STL Formats
482      * (UNV supported version is I-DEAS 10)
483      */
484     void ExportDAT( in string file )
485       raises (SALOME::SALOME_Exception);
486     void ExportUNV( in string file )
487       raises (SALOME::SALOME_Exception);
488     void ExportSTL( in string file, in boolean isascii )
489       raises (SALOME::SALOME_Exception);
490
491     /*!
492      * Get MED Mesh
493      */
494     SALOME_MED::MESH GetMEDMesh()
495       raises (SALOME::SALOME_Exception);
496
497     /*!
498      * Get informations about mesh contents
499      */
500     long NbNodes()
501       raises (SALOME::SALOME_Exception);
502
503     long NbElements()
504       raises (SALOME::SALOME_Exception);
505
506     long NbEdges()
507       raises (SALOME::SALOME_Exception);
508
509     long NbEdgesOfOrder(in ElementOrder order)
510       raises (SALOME::SALOME_Exception);
511
512     long NbFaces()
513       raises (SALOME::SALOME_Exception);
514
515     long NbFacesOfOrder(in ElementOrder order)
516       raises (SALOME::SALOME_Exception);
517
518     long NbTriangles()
519       raises (SALOME::SALOME_Exception);
520
521     long NbTrianglesOfOrder(in ElementOrder order)
522       raises (SALOME::SALOME_Exception);
523
524     long NbQuadrangles()
525       raises (SALOME::SALOME_Exception);
526
527     long NbQuadranglesOfOrder(in ElementOrder order)
528       raises (SALOME::SALOME_Exception);
529
530     long NbPolygons()
531       raises (SALOME::SALOME_Exception);
532
533     long NbVolumes()
534       raises (SALOME::SALOME_Exception);
535
536     long NbVolumesOfOrder(in ElementOrder order)
537       raises (SALOME::SALOME_Exception);
538
539     long NbTetras()
540       raises (SALOME::SALOME_Exception);
541
542     long NbTetrasOfOrder(in ElementOrder order)
543       raises (SALOME::SALOME_Exception);
544
545     long NbHexas()
546       raises (SALOME::SALOME_Exception);
547
548     long NbHexasOfOrder(in ElementOrder order)
549       raises (SALOME::SALOME_Exception);
550
551     long NbPyramids()
552       raises (SALOME::SALOME_Exception);
553
554     long NbPyramidsOfOrder(in ElementOrder order)
555       raises (SALOME::SALOME_Exception);
556
557     long NbPrisms()
558       raises (SALOME::SALOME_Exception);
559
560     long NbPrismsOfOrder(in ElementOrder order)
561       raises (SALOME::SALOME_Exception);
562
563     long NbPolyhedrons()
564       raises (SALOME::SALOME_Exception);
565
566     long NbSubMesh()
567       raises (SALOME::SALOME_Exception);
568
569     long_array GetElementsId()
570       raises (SALOME::SALOME_Exception);
571
572     long_array GetElementsByType( in ElementType theType )
573       raises (SALOME::SALOME_Exception);
574
575     long_array GetNodesId()
576       raises (SALOME::SALOME_Exception);
577     
578     /*!
579      * Returns type of mesh element
580      */    
581     ElementType GetElementType( in long id, in boolean iselem )
582       raises (SALOME::SALOME_Exception);
583
584     long_array GetSubMeshElementsId(in long ShapeID)
585       raises (SALOME::SALOME_Exception);
586
587     long_array GetSubMeshNodesId(in long ShapeID, in boolean all )
588       raises (SALOME::SALOME_Exception);
589     
590     ElementType GetSubMeshElementType(in long ShapeID)
591       raises (SALOME::SALOME_Exception);
592
593     /*!
594      * Get mesh description
595      */
596     string Dump();
597
598     /*!
599      * Get mesh pointer
600      */
601     long long GetMeshPtr();
602
603     /*!
604      * Get XYZ coordinates of node as list of double
605      * If there is not node for given ID - returns empty list
606      */
607     double_array GetNodeXYZ(in long id);
608
609     /*!
610      * For given node returns list of IDs of inverse elements
611      * If there is not node for given ID - returns empty list
612      */
613     long_array GetNodeInverseElements(in long id);
614
615     /*!
616      * \brief Return position of a node on shape
617      */
618     NodePosition GetNodePosition(in long NodeID);
619
620     /*!
621      * If given element is node returns IDs of shape from position
622      * If there is not node for given ID - returns -1
623      */
624     long GetShapeID(in long id);
625
626     /*!
627      * For given element returns ID of result shape after 
628      * ::FindShape() from SMESH_MeshEditor
629      * If there is not element for given ID - returns -1
630      */
631     long GetShapeIDForElem(in long id);
632
633     /*!
634      * Returns number of nodes for given element
635      * If there is not element for given ID - returns -1
636      */
637     long GetElemNbNodes(in long id);
638
639     /*!
640      * Returns IDs of nodes of given element
641      */
642     long_array GetElemNodes(in long id);
643
644     /*!
645      * Returns ID of node by given index for given element
646      * If there is not element for given ID - returns -1
647      * If there is not node for given index - returns -2
648      */
649     long GetElemNode(in long id, in long index);
650
651     /*!
652      * Returns true if given node is medium node
653      * in given quadratic element
654      */
655     boolean IsMediumNode(in long ide, in long idn);
656
657     /*!
658      * Returns true if given node is medium node
659      * in one of quadratic elements
660      */
661     boolean IsMediumNodeOfAnyElem(in long idn, in ElementType elem_type);
662
663     /*!
664      * Returns number of edges for given element
665      */
666     long ElemNbEdges(in long id);
667
668     /*!
669      * Returns number of faces for given element
670      */
671     long ElemNbFaces(in long id);
672
673     /*!
674      * Returns true if given element is polygon
675      */
676     boolean IsPoly(in long id);
677
678     /*!
679      * Returns true if given element is quadratic
680      */
681     boolean IsQuadratic(in long id);
682
683     /*!
684      * Returns XYZ coordinates of bary center for given element
685      * as list of double
686      * If there is not element for given ID - returns empty list
687      */
688     double_array BaryCenter(in long id);
689
690     /*! Gets information about imported MED file */
691     SALOME_MED::MedFileInfo GetMEDFileInfo();
692   };
693
694   interface SMESH_subMesh : SALOME::GenericObj, SMESH_IDSource
695   {
696     /*!
697      *
698      */
699     long GetNumberOfElements()
700       raises (SALOME::SALOME_Exception);
701
702     /*!
703      *
704      */
705     long GetNumberOfNodes( in boolean all )
706       raises (SALOME::SALOME_Exception);
707
708     /*!
709      *
710      */
711     long_array GetElementsId()
712       raises (SALOME::SALOME_Exception);
713
714     /*!
715      *
716      */
717     long_array GetElementsByType( in ElementType theType )
718       raises (SALOME::SALOME_Exception);
719     
720     /*!
721      * Return type of submesh element
722      */
723     ElementType GetElementType( in long id, in boolean iselem )
724       raises (SALOME::SALOME_Exception);
725
726     /*!
727      *
728      */
729     long_array GetNodesId()
730       raises (SALOME::SALOME_Exception);
731
732     /*!
733      * Get geom shape the submesh is dedicated to
734      */
735     GEOM::GEOM_Object GetSubShape()
736       raises (SALOME::SALOME_Exception);
737
738     /*!
739      * Get SMESH_Mesh which stores nodes coordinates & elements definition
740      */
741     SMESH_Mesh GetFather()
742       raises (SALOME::SALOME_Exception);
743
744     /*!
745      * Get the internal Id
746      */
747     long GetId();
748
749     /*!
750      * Get MED subMesh
751      */
752     SALOME_MED::FAMILY GetFamily()
753       raises (SALOME::SALOME_Exception);
754   };
755
756 };
757
758 #endif