Salome HOME
#17351 [CEA] Mesh with Polyhedron
[modules/smesh.git] / src / StdMeshers_I / StdMeshers_i.cxx
1 // Copyright (C) 2007-2019  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 //  SMESH StdMeshers : implementation of SMESH idl descriptions
24 //  File   : StdMeshers_i.cxx
25 //  Author : Julia DOROVSKIKH
26 //  Module : SMESH
27 //
28 #include "SMESH_StdMeshers_I.hxx"
29
30 #include "SMESH_Gen_i.hxx"
31
32 #include "utilities.h"
33
34 #include "StdMeshers_Adaptive1D_i.hxx"
35 #include "StdMeshers_Arithmetic1D_i.hxx"
36 #include "StdMeshers_AutomaticLength_i.hxx"
37 #include "StdMeshers_CartesianParameters3D_i.hxx"
38 #include "StdMeshers_Cartesian_3D_i.hxx"
39 #include "StdMeshers_CompositeSegment_1D_i.hxx"
40 #include "StdMeshers_Deflection1D_i.hxx"
41 #include "StdMeshers_FixedPoints1D_i.hxx"
42 #include "StdMeshers_Geometric1D_i.hxx"
43 #include "StdMeshers_Hexa_3D_i.hxx"
44 #include "StdMeshers_ImportSource1D_i.hxx"
45 #include "StdMeshers_ImportSource2D_i.hxx"
46 #include "StdMeshers_Import_1D2D_i.hxx"
47 #include "StdMeshers_Import_1D_i.hxx"
48 #include "StdMeshers_LayerDistribution2D_i.hxx"
49 #include "StdMeshers_LayerDistribution_i.hxx"
50 #include "StdMeshers_LengthFromEdges_i.hxx"
51 #include "StdMeshers_LocalLength_i.hxx"
52 #include "StdMeshers_MaxElementArea_i.hxx"
53 #include "StdMeshers_MaxElementVolume_i.hxx"
54 #include "StdMeshers_MaxLength_i.hxx"
55 #include "StdMeshers_NotConformAllowed_i.hxx"
56 #include "StdMeshers_NumberOfLayers2D_i.hxx"
57 #include "StdMeshers_NumberOfLayers_i.hxx"
58 #include "StdMeshers_NumberOfSegments_i.hxx"
59 #include "StdMeshers_PolygonPerFace_2D_i.hxx"
60 #include "StdMeshers_PolyhedronPerSolid_3D_i.hxx"
61 #include "StdMeshers_Prism_3D_i.hxx"
62 #include "StdMeshers_ProjectionSource1D_i.hxx"
63 #include "StdMeshers_ProjectionSource2D_i.hxx"
64 #include "StdMeshers_ProjectionSource3D_i.hxx"
65 #include "StdMeshers_Projection_1D_2D_3D_i.hxx"
66 #include "StdMeshers_Propagation_i.hxx"
67 #include "StdMeshers_QuadrangleParams_i.hxx"
68 #include "StdMeshers_QuadranglePreference_i.hxx"
69 #include "StdMeshers_Quadrangle_2D_i.hxx"
70 #include "StdMeshers_QuadraticMesh_i.hxx"
71 #include "StdMeshers_RadialQuadrangle_1D2D_i.hxx"
72 #include "StdMeshers_Regular_1D_i.hxx"
73 #include "StdMeshers_SegmentAroundVertex_0D_i.hxx"
74 #include "StdMeshers_SegmentLengthAroundVertex_i.hxx"
75 #include "StdMeshers_StartEndLength_i.hxx"
76 #include "StdMeshers_UseExisting_1D2D_i.hxx"
77 #include "StdMeshers_ViscousLayers2D_i.hxx"
78 #include "StdMeshers_ViscousLayers_i.hxx"
79 #ifdef ENABLE_MEFISTO
80  #include "StdMeshers_MEFISTO_2D_i.hxx"
81 #endif
82
83 namespace SMESH {
84   class ApplicableToAny
85   {
86   public:
87     static bool IsApplicable( const TopoDS_Shape &S, bool toCheckAll, int algoDim )
88     {
89       return GenericHypothesisCreator_i::IsShapeOfDim( S, algoDim );
90     }
91   };
92 };
93
94 template <class T, class TIsApplicable = SMESH::ApplicableToAny>
95 class StdHypothesisCreator_i : public HypothesisCreator_i< T >
96 {
97 public:
98   // as we have 'module StdMeshers' in SMESH_BasicHypothesis.idl
99   virtual std::string GetModuleName() { return "StdMeshers"; }
100   virtual bool IsApplicable( const TopoDS_Shape & S, bool toCheckAll, int algoDim )
101   {
102     return TIsApplicable::IsApplicable( S, toCheckAll, algoDim );
103   }
104 };
105
106 //=============================================================================
107 /*!
108  * \brief Creates StdMeshers_QuadrangleParams_i instead of
109  * StdMeshers_TrianglePreference_i and StdMeshers_QuadranglePreference_i
110  */
111 //=============================================================================
112
113 template <StdMeshers::QuadType TYPE>
114 class QuadrangleParamsCreator : public StdHypothesisCreator_i<StdMeshers_QuadrangleParams_i>
115 {
116 public:
117   virtual SMESH_Hypothesis_i* Create (PortableServer::POA_ptr thePOA,
118                                       ::SMESH_Gen*            theGenImpl)
119   {
120     StdMeshers_QuadrangleParams_i* h =
121       new StdMeshers_QuadrangleParams_i( thePOA, theGenImpl);
122     h->SetQuadType( TYPE );
123     return h;
124   }
125 };
126
127 //=============================================================================
128 /*!
129  *
130  */
131 //=============================================================================
132
133 extern "C"
134 {
135 STDMESHERS_I_EXPORT
136   GenericHypothesisCreator_i* GetHypothesisCreator (const char* aHypName)
137   {
138     GenericHypothesisCreator_i* aCreator = 0;
139
140     // Hypotheses
141     if      (strcmp(aHypName, "LocalLength") == 0)
142       aCreator = new StdHypothesisCreator_i<StdMeshers_LocalLength_i>;
143     else if (strcmp(aHypName, "MaxLength") == 0)
144       aCreator = new StdHypothesisCreator_i<StdMeshers_MaxLength_i>;
145     else if (strcmp(aHypName, "NumberOfSegments") == 0)
146       aCreator = new StdHypothesisCreator_i<StdMeshers_NumberOfSegments_i>;
147     else if (strcmp(aHypName, "LengthFromEdges") == 0)
148       aCreator = new StdHypothesisCreator_i<StdMeshers_LengthFromEdges_i>;
149     else if (strcmp(aHypName, "NotConformAllowed") == 0)
150       aCreator = new StdHypothesisCreator_i<StdMeshers_NotConformAllowed_i>;
151     else if (strcmp(aHypName, "Propagation") == 0)
152       aCreator = new StdHypothesisCreator_i<StdMeshers_Propagation_i>;
153     else if (strcmp(aHypName, "PropagOfDistribution") == 0)
154       aCreator = new StdHypothesisCreator_i<StdMeshers_PropagOfDistribution_i>;
155     else if (strcmp(aHypName, "MaxElementArea") == 0)
156       aCreator = new StdHypothesisCreator_i<StdMeshers_MaxElementArea_i>;
157     else if (strcmp(aHypName, "MaxElementVolume") == 0)
158       aCreator = new StdHypothesisCreator_i<StdMeshers_MaxElementVolume_i>;
159     else if (strcmp(aHypName, "StartEndLength") == 0)
160       aCreator = new StdHypothesisCreator_i<StdMeshers_StartEndLength_i>;
161     else if (strcmp(aHypName, "Deflection1D") == 0)
162       aCreator = new StdHypothesisCreator_i<StdMeshers_Deflection1D_i>;
163     else if (strcmp(aHypName, "Adaptive1D") == 0)
164       aCreator = new StdHypothesisCreator_i<StdMeshers_Adaptive1D_i>;
165     else if (strcmp(aHypName, "FixedPoints1D") == 0)
166       aCreator = new StdHypothesisCreator_i<StdMeshers_FixedPoints1D_i>;
167     else if (strcmp(aHypName, "Arithmetic1D") == 0)
168       aCreator = new StdHypothesisCreator_i<StdMeshers_Arithmetic1D_i>;
169     else if (strcmp(aHypName, "GeometricProgression") == 0)
170       aCreator = new StdHypothesisCreator_i<StdMeshers_Geometric1D_i>;
171     else if (strcmp(aHypName, "AutomaticLength") == 0)
172       aCreator = new StdHypothesisCreator_i<StdMeshers_AutomaticLength_i>;
173     else if (strcmp(aHypName, "QuadranglePreference") == 0)
174       // do not convert to StdMeshers_QuadrangleParams_i as it is used by NETGEN 2D
175       aCreator = new StdHypothesisCreator_i<StdMeshers_QuadranglePreference_i>;
176       //aCreator = new QuadrangleParamsCreator< StdMeshers::QUAD_QUADRANGLE_PREF >();
177     else if (strcmp(aHypName, "TrianglePreference") == 0)
178       //aCreator = new StdHypothesisCreator_i<StdMeshers_TrianglePreference_i>;
179       aCreator = new QuadrangleParamsCreator< StdMeshers::QUAD_TRIANGLE_PREF >();
180     else if (strcmp(aHypName, "QuadraticMesh") == 0)
181       aCreator = new StdHypothesisCreator_i<StdMeshers_QuadraticMesh_i>;
182     else if (strcmp(aHypName, "ProjectionSource3D") == 0)
183       aCreator = new StdHypothesisCreator_i<StdMeshers_ProjectionSource3D_i>;
184     else if (strcmp(aHypName, "ProjectionSource2D") == 0)
185       aCreator = new StdHypothesisCreator_i<StdMeshers_ProjectionSource2D_i>;
186     else if (strcmp(aHypName, "ProjectionSource1D") == 0)
187       aCreator = new StdHypothesisCreator_i<StdMeshers_ProjectionSource1D_i>;
188     else if (strcmp(aHypName, "NumberOfLayers") == 0)
189       aCreator = new StdHypothesisCreator_i<StdMeshers_NumberOfLayers_i>;
190     else if (strcmp(aHypName, "LayerDistribution") == 0)
191       aCreator = new StdHypothesisCreator_i<StdMeshers_LayerDistribution_i>;
192     else if (strcmp(aHypName, "NumberOfLayers2D") == 0)
193       aCreator = new StdHypothesisCreator_i<StdMeshers_NumberOfLayers2D_i>;
194     else if (strcmp(aHypName, "LayerDistribution2D") == 0)
195       aCreator = new StdHypothesisCreator_i<StdMeshers_LayerDistribution2D_i>;
196     else if (strcmp(aHypName, "SegmentLengthAroundVertex") == 0)
197       aCreator = new StdHypothesisCreator_i<StdMeshers_SegmentLengthAroundVertex_i>;
198     else if (strcmp(aHypName, "QuadrangleParams") == 0)
199       aCreator = new StdHypothesisCreator_i<StdMeshers_QuadrangleParams_i>;
200     else if (strcmp(aHypName, "ImportSource1D") == 0)
201       aCreator = new StdHypothesisCreator_i<StdMeshers_ImportSource1D_i>;
202     else if (strcmp(aHypName, "ImportSource2D") == 0)
203       aCreator = new StdHypothesisCreator_i<StdMeshers_ImportSource2D_i>;
204     else if (strcmp(aHypName, "ViscousLayers") == 0)
205       aCreator = new StdHypothesisCreator_i<StdMeshers_ViscousLayers_i>;
206     else if (strcmp(aHypName, "ViscousLayers2D") == 0)
207       aCreator = new StdHypothesisCreator_i<StdMeshers_ViscousLayers2D_i>;
208     else if (strcmp(aHypName, "CartesianParameters3D") == 0)
209       aCreator = new StdHypothesisCreator_i<StdMeshers_CartesianParameters3D_i>;
210
211     // Algorithms
212     else if (strcmp(aHypName, "Regular_1D") == 0)
213       aCreator = new StdHypothesisCreator_i<StdMeshers_Regular_1D_i>;
214 #ifdef ENABLE_MEFISTO
215     else if (strcmp(aHypName, "MEFISTO_2D") == 0)
216       aCreator = new StdHypothesisCreator_i<StdMeshers_MEFISTO_2D_i>;
217 #endif
218     else if (strcmp(aHypName, "Quadrangle_2D") == 0)
219       aCreator = new StdHypothesisCreator_i<StdMeshers_Quadrangle_2D_i, StdMeshers_Quadrangle_2D_i>;
220     else if (strcmp(aHypName, "QuadFromMedialAxis_1D2D") == 0)
221       aCreator = new StdHypothesisCreator_i<StdMeshers_QuadFromMedialAxis_1D2D_i, StdMeshers_QuadFromMedialAxis_1D2D_i>;
222     else if (strcmp(aHypName, "Hexa_3D") == 0)
223       aCreator = new StdHypothesisCreator_i<StdMeshers_Hexa_3D_i, StdMeshers_Hexa_3D_i>;
224     else if (strcmp(aHypName, "Projection_1D") == 0)
225       aCreator = new StdHypothesisCreator_i<StdMeshers_Projection_1D_i>;
226     else if (strcmp(aHypName, "Projection_1D2D") == 0)
227       aCreator = new StdHypothesisCreator_i<StdMeshers_Projection_1D2D_i>;
228     else if (strcmp(aHypName, "Projection_2D") == 0)
229       aCreator = new StdHypothesisCreator_i<StdMeshers_Projection_2D_i>;
230     else if (strcmp(aHypName, "Projection_3D") == 0)
231       aCreator = new StdHypothesisCreator_i<StdMeshers_Projection_3D_i, StdMeshers_Projection_3D_i>;
232     else if (strcmp(aHypName, "Prism_3D") == 0)
233       aCreator = new StdHypothesisCreator_i<StdMeshers_Prism_3D_i, StdMeshers_Prism_3D_i>;
234     else if (strcmp(aHypName, "RadialPrism_3D") == 0)
235       aCreator = new StdHypothesisCreator_i<StdMeshers_RadialPrism_3D_i, StdMeshers_RadialPrism_3D_i>;
236     else if (strcmp(aHypName, "SegmentAroundVertex_0D") == 0)
237       aCreator = new StdHypothesisCreator_i<StdMeshers_SegmentAroundVertex_0D_i>;
238     else if (strcmp(aHypName, "CompositeSegment_1D") == 0)
239       aCreator = new StdHypothesisCreator_i<StdMeshers_CompositeSegment_1D_i>;
240     else if (strcmp(aHypName, "UseExisting_1D") == 0)
241       aCreator = new StdHypothesisCreator_i<StdMeshers_UseExisting_1D_i>;
242     else if (strcmp(aHypName, "UseExisting_2D") == 0)
243       aCreator = new StdHypothesisCreator_i<StdMeshers_UseExisting_2D_i>;
244     else if (strcmp(aHypName, "RadialQuadrangle_1D2D") == 0)
245       aCreator = new StdHypothesisCreator_i<StdMeshers_RadialQuadrangle_1D2D_i, StdMeshers_RadialQuadrangle_1D2D_i>;
246     else if (strcmp(aHypName, "Import_1D") == 0)
247       aCreator = new StdHypothesisCreator_i<StdMeshers_Import_1D_i>;
248     else if (strcmp(aHypName, "Import_1D2D") == 0)
249       aCreator = new StdHypothesisCreator_i<StdMeshers_Import_1D2D_i>;
250     else if (strcmp(aHypName, "Cartesian_3D") == 0)
251       aCreator = new StdHypothesisCreator_i<StdMeshers_Cartesian_3D_i>;
252     else if (strcmp(aHypName, "PolygonPerFace_2D") == 0)
253       aCreator = new StdHypothesisCreator_i<StdMeshers_PolygonPerFace_2D_i>;
254     else if (strcmp(aHypName, "PolyhedronPerSolid_3D") == 0)
255       aCreator = new StdHypothesisCreator_i<StdMeshers_PolyhedronPerSolid_3D_i>;
256     else ;
257
258     return aCreator;
259   }
260 }