1 // Copyright (C) 2007-2012 CEA/DEN, EDF R&D
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License.
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 // Lesser General Public License for more details.
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 // File : BLSURFPlugin_Hypothesis.hxx
22 // Authors : Francis KLOSS (OCC) & Patrick LAUG (INRIA) & Lioka RAZAFINDRAZAKA (CEA)
23 // Size maps developement: Nicolas GEIMER (OCC) & Gilles DAVID (EURIWARE)
26 #ifndef _BLSURFPlugin_Hypothesis_i_HXX_
27 #define _BLSURFPlugin_Hypothesis_i_HXX_
29 #include <SALOMEconfig.h>
30 #include CORBA_SERVER_HEADER(BLSURFPlugin_Algorithm)
32 #include "SMESH_Hypothesis_i.hxx"
33 #include "BLSURFPlugin_Hypothesis.hxx"
38 // BLSURFPlugin parameters hypothesis
40 class BLSURFPlugin_Hypothesis_i: public virtual POA_BLSURFPlugin::BLSURFPlugin_Hypothesis,
41 public virtual SMESH_Hypothesis_i {
44 BLSURFPlugin_Hypothesis_i(PortableServer::POA_ptr thePOA, int theStudyId, ::SMESH_Gen* theGenImpl);
46 virtual ~BLSURFPlugin_Hypothesis_i();
48 void SetPhysicalMesh(CORBA::Long theValue);
49 CORBA::Long GetPhysicalMesh();
51 void SetGeometricMesh(CORBA::Long theValue);
52 CORBA::Long GetGeometricMesh();
54 void SetPhySize(CORBA::Double theValue);
55 void SetPhySizeRel(CORBA::Double theValue);
56 CORBA::Double GetPhySize();
57 CORBA::Boolean IsPhySizeRel();
59 void SetMinSize(CORBA::Double theMinSize);
60 void SetMinSizeRel(CORBA::Double theMinSize);
61 CORBA::Double GetMinSize();
62 CORBA::Boolean IsMinSizeRel();
64 void SetMaxSize(CORBA::Double theMaxSize);
65 void SetMaxSizeRel(CORBA::Double theMaxSize);
66 CORBA::Double GetMaxSize();
67 CORBA::Boolean IsMaxSizeRel();
69 void SetGradation(CORBA::Double theValue);
70 CORBA::Double GetGradation();
72 void SetQuadAllowed(CORBA::Boolean theValue);
73 CORBA::Boolean GetQuadAllowed();
75 void SetAngleMesh(CORBA::Double theValue);
76 CORBA::Double GetAngleMesh();
78 void SetChordalError(CORBA::Double distance);
79 CORBA::Double GetChordalError();
81 void SetAnisotropic(CORBA::Boolean anisotropic);
82 CORBA::Boolean GetAnisotropic();
84 void SetAnisotropicRatio(CORBA::Double ratio);
85 CORBA::Double GetAnisotropicRatio();
87 void SetRemoveTinyEdges(CORBA::Boolean remove);
88 CORBA::Boolean GetRemoveTinyEdges();
90 void SetTinyEdgeLength(CORBA::Double length);
91 CORBA::Double GetTinyEdgeLength();
93 void SetBadElementRemoval(CORBA::Boolean remove);
94 CORBA::Boolean GetBadElementRemoval();
96 void SetBadElementAspectRatio(CORBA::Double ratio);
97 CORBA::Double GetBadElementAspectRatio();
99 void SetOptimizeMesh(CORBA::Boolean optimize);
100 CORBA::Boolean GetOptimizeMesh();
102 void SetQuadraticMesh(CORBA::Boolean quadratic);
103 CORBA::Boolean GetQuadraticMesh();
105 void SetTopology(CORBA::Long theValue);
106 CORBA::Long GetTopology();
108 void SetVerbosity(CORBA::Short theVal) throw (SALOME::SALOME_Exception);
109 CORBA::Short GetVerbosity();
111 void SetPreCADMergeEdges(CORBA::Boolean theValue);
112 CORBA::Boolean GetPreCADMergeEdges();
114 void SetPreCADProcess3DTopology(CORBA::Boolean theValue);
115 CORBA::Boolean GetPreCADProcess3DTopology();
117 void SetPreCADDiscardInput(CORBA::Boolean theValue);
118 CORBA::Boolean GetPreCADDiscardInput();
120 void SetOptionValue(const char* optionName, const char* optionValue) throw (SALOME::SALOME_Exception);
121 void SetPreCADOptionValue(const char* optionName, const char* optionValue) throw (SALOME::SALOME_Exception);
122 char* GetOptionValue(const char* optionName) throw (SALOME::SALOME_Exception);
123 char* GetPreCADOptionValue(const char* optionName) throw (SALOME::SALOME_Exception);
125 void UnsetOption(const char* optionName);
126 void UnsetPreCADOption(const char* optionName);
128 BLSURFPlugin::string_array* GetOptionValues();
129 BLSURFPlugin::string_array* GetPreCADOptionValues();
131 void SetOptionValues(const BLSURFPlugin::string_array& options) throw (SALOME::SALOME_Exception);
132 void SetPreCADOptionValues(const BLSURFPlugin::string_array& options) throw (SALOME::SALOME_Exception);
134 void SetSizeMapEntry(const char* entry, const char* sizeMap) throw (SALOME::SALOME_Exception);
136 void SetConstantSizeMapEntry(const char* entry, GEOM::shape_type shapeType, CORBA::Double sizeMap) throw (SALOME::SALOME_Exception);
138 char* GetSizeMapEntry(const char* entry) throw (SALOME::SALOME_Exception);
140 void UnsetEntry(const char* entry);
142 BLSURFPlugin::string_array* GetSizeMapEntries();
144 void SetSizeMapEntries(const BLSURFPlugin::string_array& sizeMaps) throw (SALOME::SALOME_Exception);
146 void SetSizeMap(GEOM::GEOM_Object_ptr GeomObj, const char* sizeMap);
148 void SetConstantSizeMap(GEOM::GEOM_Object_ptr GeomObj, CORBA::Double sizeMap);
150 void UnsetSizeMap(GEOM::GEOM_Object_ptr GeomObj);
152 void ClearSizeMaps();
154 void SetAttractor(GEOM::GEOM_Object_ptr GeomObj, const char* attractor);
156 void UnsetAttractor(GEOM::GEOM_Object_ptr GeomObj);
158 void SetAttractorEntry(const char* entry, const char* attractor) throw (SALOME::SALOME_Exception);
160 char* GetAttractorEntry(const char* entry) throw (SALOME::SALOME_Exception);
162 BLSURFPlugin::string_array* GetAttractorEntries();
166 * Set/get/unset an attractor on a face
169 void SetAttractorGeom(GEOM::GEOM_Object_ptr GeomObj, GEOM::GEOM_Object_ptr Attractor, CORBA::Double StartSize, CORBA::Double EndSize, CORBA::Double ActionRadius, CORBA::Double ConstantRadius );
171 void UnsetAttractorGeom(GEOM::GEOM_Object_ptr GeomObj);
173 void SetClassAttractorEntry(const char* entry, const char* att_entry, CORBA::Double StartSize, CORBA::Double EndSize, CORBA::Double ActionRadius, CORBA::Double ConstantRadius) throw (SALOME::SALOME_Exception);
175 BLSURFPlugin::TAttParamsMap* GetAttractorParams();
179 void SetCustomSizeMap(GEOM::GEOM_Object_ptr GeomObj, const char* sizeMap);
181 void UnsetCustomSizeMap(GEOM::GEOM_Object_ptr GeomObj);
183 void SetCustomSizeMapEntry(const char* entry,const char* sizeMap ) throw (SALOME::SALOME_Exception);
185 char* GetCustomSizeMapEntry(const char* entry) throw (SALOME::SALOME_Exception);
187 BLSURFPlugin::string_array* GetCustomSizeMapEntries();
190 ///////////////////////
191 // ENFORCED VERTEXES //
192 ///////////////////////
194 BLSURFPlugin::TFaceEntryEnfVertexListMap* GetAllEnforcedVerticesByFace();
195 BLSURFPlugin::TEnfVertexList* GetAllEnforcedVertices();
197 BLSURFPlugin::TFaceEntryCoordsListMap* GetAllCoordsByFace();
198 BLSURFPlugin::TCoordsEnfVertexMap* GetAllEnforcedVerticesByCoords();
200 BLSURFPlugin::TFaceEntryEnfVertexEntryListMap* GetAllEnfVertexEntriesByFace();
201 BLSURFPlugin::TEnfVertexEntryEnfVertexMap* GetAllEnforcedVerticesByEnfVertexEntry();
203 void ClearAllEnforcedVertices();
206 * Set/get/unset an enforced vertex on geom object
208 bool SetEnforcedVertex(GEOM::GEOM_Object_ptr theFace, CORBA::Double x, CORBA::Double y, CORBA::Double z)
209 throw (SALOME::SALOME_Exception);
210 bool SetEnforcedVertexNamed(GEOM::GEOM_Object_ptr theFace, CORBA::Double x, CORBA::Double y, CORBA::Double z, const char* theVertexName)
211 throw (SALOME::SALOME_Exception);
212 bool SetEnforcedVertexGeom(GEOM::GEOM_Object_ptr theFace, GEOM::GEOM_Object_ptr theVertex)
213 throw (SALOME::SALOME_Exception);
214 bool SetEnforcedVertexWithGroup(GEOM::GEOM_Object_ptr theFace, CORBA::Double x, CORBA::Double y, CORBA::Double z, const char* theGroupName)
215 throw (SALOME::SALOME_Exception);
216 bool SetEnforcedVertexNamedWithGroup(GEOM::GEOM_Object_ptr theFace, CORBA::Double x, CORBA::Double y, CORBA::Double z, const char* theVertexName, const char* theGroupName)
217 throw (SALOME::SALOME_Exception);
218 bool SetEnforcedVertexGeomWithGroup(GEOM::GEOM_Object_ptr theFace, GEOM::GEOM_Object_ptr theVertex, const char* theGroupName)
219 throw (SALOME::SALOME_Exception);
221 BLSURFPlugin::TEnfVertexList* GetEnforcedVertices(GEOM::GEOM_Object_ptr theFace) throw (SALOME::SALOME_Exception);
223 bool UnsetEnforcedVertex(GEOM::GEOM_Object_ptr theFace, CORBA::Double x, CORBA::Double y, CORBA::Double z)
224 throw (SALOME::SALOME_Exception);
225 bool UnsetEnforcedVertexGeom(GEOM::GEOM_Object_ptr theFace, GEOM::GEOM_Object_ptr theVertex)
226 throw (SALOME::SALOME_Exception);
227 bool UnsetEnforcedVertices(GEOM::GEOM_Object_ptr theFace) throw (SALOME::SALOME_Exception);
230 * Set/get/unset an enforced vertex on geom object given by entry
232 bool SetEnforcedVertexEntry(const char* theFaceEntry, CORBA::Double x = 0, CORBA::Double y = 0, CORBA::Double z = 0,
233 const char* theVertexName = "", const char* theVertexEntry = "", const char* theGroupName = "")
234 throw (SALOME::SALOME_Exception);
236 BLSURFPlugin::TEnfVertexList* GetEnforcedVerticesEntry(const char* theFaceEntry) throw (SALOME::SALOME_Exception);
238 bool UnsetEnforcedVertexEntry(const char* theFaceEntry, CORBA::Double x, CORBA::Double y, CORBA::Double z,
239 const char* theVertexEntry = "") throw (SALOME::SALOME_Exception);
240 bool UnsetEnforcedVerticesEntry(const char* theFaceEntry) throw (SALOME::SALOME_Exception);
243 * To add internal vertices as enforced vertices
245 void SetInternalEnforcedVertexAllFaces(CORBA::Boolean toEnforceInternalVertices);
246 CORBA::Boolean GetInternalEnforcedVertexAllFaces();
247 void SetInternalEnforcedVertexAllFacesGroup(const char* groupName = "");
248 char* GetInternalEnforcedVertexAllFacesGroup();
250 // Enable internal enforced vertices on specific face if requested by user
251 // void SetInternalEnforcedVertex(GEOM::GEOM_Object_ptr theFace, CORBA::Boolean toEnforceInternalVertices) throw (SALOME::SALOME_Exception);
252 // void SetInternalEnforcedVertexWithGroup(GEOM::GEOM_Object_ptr theFace, CORBA::Boolean toEnforceInternalVertices, const char* theGroupName = "") throw (SALOME::SALOME_Exception);
253 // void SetInternalEnforcedVertexEntry(const char* theFaceEntry, CORBA::Boolean toEnforceInternalVertices, const char* theGroupName = "") throw (SALOME::SALOME_Exception);
254 // CORBA::Boolean GetInternalEnforcedVertex(GEOM::GEOM_Object_ptr theFace) throw (SALOME::SALOME_Exception);
255 // CORBA::Boolean GetInternalEnforcedVertexEntry(const char* theFaceEntry) throw (SALOME::SALOME_Exception);
257 ///////////////////////
260 * Sets the file for export resulting mesh in GMF format
262 // void SetGMFFile(const char* theFileName, CORBA::Boolean isBinary);
263 void SetGMFFile(const char* theFileName);
265 // CORBA::Boolean GetGMFFileMode();
267 // Get implementation
268 ::BLSURFPlugin_Hypothesis* GetImpl();
270 // Verify whether hypothesis supports given entity type
271 CORBA::Boolean IsDimSupported(SMESH::Dimension type);
275 // Obsolete methods - To be removed in V7
277 void SetPhyMin(CORBA::Double theMinSize);
278 CORBA::Double GetPhyMin();
279 void SetPhyMax(CORBA::Double theMaxSize);
280 CORBA::Double GetPhyMax();
281 void SetGeoMin(CORBA::Double theMinSize);
282 CORBA::Double GetGeoMin();
283 void SetGeoMax(CORBA::Double theMaxSize);
284 CORBA::Double GetGeoMax();
285 void SetAngleMeshS(CORBA::Double angle);
286 CORBA::Double GetAngleMeshS();
287 void SetAngleMeshC(CORBA::Double angle);
288 CORBA::Double GetAngleMeshC();
289 void SetDecimesh(CORBA::Boolean toIgnoreEdges);
290 CORBA::Boolean GetDecimesh();
291 void SetPreCADRemoveNanoEdges(CORBA::Boolean toRemoveNanoEdges);
292 CORBA::Boolean GetPreCADRemoveNanoEdges();
293 void SetPreCADEpsNano(CORBA::Double epsNano);
294 CORBA::Double GetPreCADEpsNano();