Salome HOME
PAL17694 (New Tool About Hexahedral Meshing)
[modules/smesh.git] / resources / StdMeshers.xml
1 <?xml version='1.0' encoding='us-ascii'?>
2 <!DOCTYPE meshers PUBLIC "" "desktop.dtd">
3
4 <!--  GUI customization for MESH component  -->
5
6 <meshers>
7
8 <meshers-group name="Standard Meshers"
9                resources="StdMeshers"
10                server-lib="libStdMeshersEngine.so"
11                gui-lib="libStdMeshersGUI.so">
12   <hypotheses>
13
14     <hypothesis type="SegmentLengthAroundVertex"
15                 label-id="Length Near Vertex"
16                 icon-id="mesh_hypo_length.png"
17                 dim="0"/>
18
19     <hypothesis type="LocalLength"
20                 label-id="Average length"
21                 icon-id="mesh_hypo_length.png"
22                 dim="1"/>
23
24     <hypothesis type="Arithmetic1D"
25                 label-id="Arithmetic 1D"
26                 icon-id="mesh_hypo_length.png"
27                 dim="1"/>
28
29     <hypothesis type="StartEndLength"
30                 label-id="Start and End Length"
31                 icon-id="mesh_hypo_length.png"
32                 dim="1"/>
33
34     <hypothesis type="NumberOfSegments"
35                 label-id="Nb. Segments"
36                 icon-id="mesh_hypo_segment.png"
37                 dim="1"/>
38
39     <hypothesis type="Deflection1D"
40                 label-id="Deflection 1D"
41                 icon-id="mesh_hypo_length.png"
42                 dim="1"/>
43
44     <hypothesis type="Propagation"
45                 label-id="Propagation of 1D Hyp. on opposite edges"
46                 icon-id="mesh_hypo_length.png"
47                 dim="1"
48                 auxiliary="true"/>
49
50     <hypothesis type="AutomaticLength"
51                 label-id="Automatic length"
52                 icon-id="mesh_hypo_length.png"
53                 dim="1"/>
54
55     <hypothesis type="LengthFromEdges"
56                 label-id="Length From Edges (2D Hyp. for Triangulator)"
57                 icon-id="mesh_hypo_length.png"
58                 dim="2"/>
59
60     <hypothesis type="QuadranglePreference"
61                 label-id="Quadrangle Preference"
62                 icon-id="mesh_algo_quad.png"
63                 auxiliary="true"
64                 dim="2"/>
65
66     <hypothesis type="QuadraticMesh"
67                 label-id="Quadratic Mesh"
68                 icon-id="mesh_algo_quad.png"
69                 dim="1"
70                 auxiliary="true"/>                
71
72     <hypothesis type="MaxElementArea"
73                 label-id="Max. Element Area"
74                 icon-id="mesh_hypo_area.png"
75                 dim="2"/>
76                 
77     <hypothesis type="NotConformAllowed"
78                 label-id="Not Conform Mesh Allowed"
79                 icon-id="mesh_hypo_length.png"
80                 dim="1,2,3"
81                 auxiliary="true"/>                
82
83     <hypothesis type="MaxElementVolume"
84                 label-id="Max. Element Volume"
85                 icon-id="mesh_hypo_volume.png"
86                 dim="3"/>
87
88     <hypothesis type="ProjectionSource3D"
89                 label-id="Source Shape 3D"
90                 icon-id="mesh_hypo_volume.png"
91                 dim="3"/>
92
93     <hypothesis type="ProjectionSource2D"
94                 label-id="Source Face"
95                 icon-id="mesh_hypo_area.png"
96                 dim="2"/>
97
98     <hypothesis type="ProjectionSource1D"
99                 label-id="Source Edge"
100                 icon-id="mesh_hypo_length.png"
101                 dim="1"/>
102
103     <hypothesis type="NumberOfLayers"
104                 label-id="Number of Layers"
105                 icon-id="mesh_hypo_length.png"
106                 dim="3"/>
107
108     <hypothesis type="LayerDistribution"
109                 label-id="Distribution of Layers"
110                 icon-id="mesh_hypo_length.png"
111                 dim="3"/>
112   </hypotheses>
113
114   <algorithms>
115
116     <algorithm type="SegmentAroundVertex_0D"
117                label-id="Segments around vertex"
118                icon-id="mesh_algo_regular.png"
119                hypos="SegmentLengthAroundVertex"
120                output="VERTEX"
121                dim="0"/>
122
123     <algorithm type="Regular_1D"
124                label-id="Wire discretisation"
125                icon-id="mesh_algo_regular.png"
126                hypos="LocalLength,Arithmetic1D,StartEndLength,NumberOfSegments,Deflection1D,AutomaticLength"
127                opt-hypos="Propagation,QuadraticMesh"
128                input="VERTEX"
129                output="EDGE"
130                dim="1"/>
131
132     <algorithm type="CompositeSegment_1D"
133                label-id="Composite side discretisation"
134                icon-id="mesh_algo_regular.png"
135                hypos="LocalLength,Arithmetic1D,StartEndLength,NumberOfSegments,Deflection1D,AutomaticLength"
136                opt-hypos="Propagation,QuadraticMesh"
137                input="VERTEX"
138                output="EDGE"
139                dim="1"/>
140
141     <algorithm type="MEFISTO_2D"
142                label-id="Triangle (Mefisto)"
143                icon-id="mesh_algo_mefisto.png"
144                hypos="LengthFromEdges,MaxElementArea"
145                input="EDGE"
146                output="TRIA"
147                dim="2"/>
148
149     <algorithm type="Quadrangle_2D"
150                label-id="Quadrangle (Mapping)"
151                icon-id="mesh_algo_quad.png"
152                opt-hypos="QuadranglePreference"
153                input="EDGE"
154                output="QUAD"
155                dim="2"/>
156
157     <algorithm type="Hexa_3D"
158                label-id="Hexahedron (i,j,k)"
159                icon-id="mesh_algo_hexa.png"
160                input="QUAD"
161                dim="3"/>
162
163     <algorithm type="Projection_1D"
164                label-id="Projection 1D"
165                icon-id="mesh_algo_regular.png"
166                hypos="ProjectionSource1D"
167                output="EDGE"
168                dim="1"/>
169
170     <algorithm type="Projection_2D"
171                label-id="Projection 2D"
172                icon-id="mesh_algo_quad.png"
173                input="EDGE"
174                hypos="ProjectionSource2D"
175                output="QUAD,TRIA"
176                dim="2"/>
177
178     <algorithm type="Projection_3D"
179                label-id="Projection 3D"
180                icon-id="mesh_algo_hexa.png"
181                hypos="ProjectionSource3D"
182                input="QUAD,TRIA"
183                dim="3"/>
184
185     <algorithm type="Prism_3D"
186                label-id="3D extrusion"
187                icon-id="mesh_algo_hexa.png"
188                input="QUAD,TRIA"
189                dim="3"/>
190
191     <algorithm type="RadialPrism_3D"
192                label-id="Radial Prism 3D"
193                icon-id="mesh_algo_hexa.png"
194                hypos="NumberOfLayers, LayerDistribution"
195                input="QUAD,TRIA"
196                dim="3"/>
197
198     <algorithm type="UseExisting_1D"
199                label-id="Use existing edges"
200                icon-id="mesh_algo_regular.png"
201                input="VERTEX"
202                output="EDGE"
203                dim="1"/>
204
205     <algorithm type="UseExisting_2D"
206                label-id="Use existing faces"
207                icon-id="mesh_algo_quad.png"
208                input="EDGE"
209                output="QUAD,TRIA"
210                dim="2"/>
211
212   </algorithms>
213 </meshers-group>
214
215 <meshers-group name="Your Meshers Group"
216                resources=""
217                server-lib=""
218                gui-lib="">
219   <hypotheses>
220
221     <hypothesis type=""
222                 label-id=""
223                 icon-id=""/>
224   </hypotheses>
225
226   <algorithms>
227
228     <algorithm type=""
229                label-id=""
230                icon-id=""/>
231   </algorithms>
232 </meshers-group>
233
234
235 <hypotheses-set-group>
236
237     <hypotheses-set name="Automatic Tetrahedralization"
238                     hypos="AutomaticLength, LengthFromEdges"
239                     algos="Regular_1D, MEFISTO_2D, NETGEN_3D"/>
240
241     <hypotheses-set name="Automatic Hexahedralization"
242                     hypos="AutomaticLength"
243                     algos="Regular_1D, Quadrangle_2D, Hexa_3D"/>
244
245 </hypotheses-set-group>
246
247 </meshers>