]> SALOME platform Git repositories - plugins/netgenplugin.git/blob - src/NETGENPlugin/NETGENPlugin_Hypothesis_i.cxx
Salome HOME
Merge branch 'V8_5_BR'
[plugins/netgenplugin.git] / src / NETGENPlugin / NETGENPlugin_Hypothesis_i.cxx
1 // Copyright (C) 2007-2016  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 //  NETGENPlugin : C++ implementation
24 // File      : NETGENPlugin_Hypothesis_i.cxx
25 // Author    : Michael Sazonov (OCN)
26 // Date      : 03/04/2006
27 // Project   : SALOME
28 //=============================================================================
29 //
30 #include "NETGENPlugin_Hypothesis_i.hxx"
31 #include "SMESH_Gen.hxx"
32 #include "SMESH_PythonDump.hxx"
33
34 #include "Utils_CorbaException.hxx"
35 #include "utilities.h"
36
37 using namespace std;
38
39 //=============================================================================
40 /*!
41  *  Specialization of isToSetParameter<T> for double
42  */
43 //=============================================================================
44
45 template<>
46 bool NETGENPlugin_Hypothesis_i::isToSetParameter<double>(double curValue,
47                                                          double newValue,
48                                                          /*SettingMethod*/int meth)
49 {
50   return isToSetParameter(true, (fabs(curValue - newValue) < 1e-20), meth);
51 }
52
53 //=============================================================================
54 /*!
55  *  NETGENPlugin_Hypothesis_i::NETGENPlugin_Hypothesis_i
56  *
57  *  Constructor
58  */
59 //=============================================================================
60 NETGENPlugin_Hypothesis_i::
61 NETGENPlugin_Hypothesis_i (PortableServer::POA_ptr thePOA,
62                            int                     theStudyId,
63                            ::SMESH_Gen*            theGenImpl)
64   : SALOME::GenericObj_i( thePOA ), 
65     SMESH_Hypothesis_i( thePOA ),
66     mySetMethodFlags(0)
67 {
68   myBaseImpl = new ::NETGENPlugin_Hypothesis (theGenImpl->GetANewId(),
69                                               theStudyId,
70                                               theGenImpl);
71 }
72
73 //=============================================================================
74 /*!
75  *  NETGENPlugin_Hypothesis_i::~NETGENPlugin_Hypothesis_i
76  *
77  *  Destructor
78  */
79 //=============================================================================
80 NETGENPlugin_Hypothesis_i::~NETGENPlugin_Hypothesis_i()
81 {
82 }
83
84 //=============================================================================
85 /*!
86  *  NETGENPlugin_Hypothesis_i::SetMaxSize
87  *
88  *  Set MaxSize
89  */
90 //=============================================================================
91 void NETGENPlugin_Hypothesis_i::SetMaxSize (CORBA::Double theValue)
92 {
93   if ( isToSetParameter( GetMaxSize(), theValue, METH_SetMaxSize ))
94   {
95     this->GetImpl()->SetMaxSize(theValue);
96     SMESH::TPythonDump() << _this() << ".SetMaxSize( " << SMESH::TVar(theValue) << " )";
97   }
98 }
99
100 //=============================================================================
101 /*!
102  *  NETGENPlugin_Hypothesis_i::GetMaxSize
103  *
104  *  Get MaxSize
105  */
106 //=============================================================================
107 CORBA::Double NETGENPlugin_Hypothesis_i::GetMaxSize()
108 {
109   return this->GetImpl()->GetMaxSize();
110 }
111
112 //=============================================================================
113 /*!
114  *  NETGENPlugin_Hypothesis_i::SetMinSize
115  *
116  *  Set MinSize
117  */
118 //=============================================================================
119 void NETGENPlugin_Hypothesis_i::SetMinSize (CORBA::Double theValue)
120 {
121   if ( isToSetParameter( GetMinSize(), theValue, METH_SetMinSize ))
122   {
123     this->GetImpl()->SetMinSize(theValue);
124     SMESH::TPythonDump() << _this() << ".SetMinSize( " << SMESH::TVar(theValue) << " )";
125   }
126 }
127
128 //=============================================================================
129 /*!
130  *  NETGENPlugin_Hypothesis_i::GetMinSize
131  *
132  *  Get MinSize
133  */
134 //=============================================================================
135 CORBA::Double NETGENPlugin_Hypothesis_i::GetMinSize()
136 {
137   return this->GetImpl()->GetMinSize();
138 }
139
140 //=============================================================================
141 /*!
142  *  NETGENPlugin_Hypothesis_i::SetSecondOrder
143  *
144  *  Set SecondOrder flag
145  */
146 //=============================================================================
147 void NETGENPlugin_Hypothesis_i::SetSecondOrder (CORBA::Boolean theValue)
148 {
149   if ( isToSetParameter( GetSecondOrder(), theValue, METH_SetSecondOrder ))
150   {
151     this->GetImpl()->SetSecondOrder(theValue);
152     SMESH::TPythonDump() << _this() << ".SetSecondOrder( " << theValue << " )";
153   }
154 }
155
156 //=============================================================================
157 /*!
158  *  NETGENPlugin_Hypothesis_i::GetSecondOrder
159  *
160  *  Get SecondOrder flag
161  */
162 //=============================================================================
163 CORBA::Boolean NETGENPlugin_Hypothesis_i::GetSecondOrder()
164 {
165   return this->GetImpl()->GetSecondOrder();
166 }
167
168 //=============================================================================
169 /*!
170  *  NETGENPlugin_Hypothesis_i::SetOptimize
171  *
172  *  Set Optimize flag
173  */
174 //=============================================================================
175 void NETGENPlugin_Hypothesis_i::SetOptimize (CORBA::Boolean theValue)
176 {
177   if ( isToSetParameter( GetOptimize(), theValue, METH_SetOptimize ))
178   {
179     this->GetImpl()->SetOptimize(theValue);
180     SMESH::TPythonDump() << _this() << ".SetOptimize( " << theValue << " )";
181   }
182 }
183
184 //=============================================================================
185 /*!
186  *  NETGENPlugin_Hypothesis_i::GetOptimize
187  *
188  *  Get Optimize flag
189  */
190 //=============================================================================
191 CORBA::Boolean NETGENPlugin_Hypothesis_i::GetOptimize()
192 {
193   return this->GetImpl()->GetOptimize();
194 }
195
196 //=============================================================================
197 /*!
198  *  NETGENPlugin_Hypothesis_i::SetFineness
199  *
200  *  Set Fineness
201  */
202 //=============================================================================
203 void NETGENPlugin_Hypothesis_i::SetFineness (CORBA::Long theValue)
204 {
205   if ( isToSetParameter( GetFineness(), theValue, METH_SetFineness ))
206   {
207     this->GetImpl()->SetFineness((::NETGENPlugin_Hypothesis::Fineness)theValue);
208     SMESH::TPythonDump() << _this() << ".SetFineness( " << theValue << " )";
209   }
210 }
211
212 //=============================================================================
213 /*!
214  *  NETGENPlugin_Hypothesis_i::GetFineness
215  *
216  *  Get Fineness
217  */
218 //=============================================================================
219 CORBA::Long NETGENPlugin_Hypothesis_i::GetFineness()
220 {
221   return this->GetImpl()->GetFineness();
222 }
223
224 //=============================================================================
225 /*!
226  *  NETGENPlugin_Hypothesis_i::SetGrowthRate
227  *
228  *  Set GrowthRate
229  */
230 //=============================================================================
231 void NETGENPlugin_Hypothesis_i::SetGrowthRate (CORBA::Double theValue)
232 {
233   if ( isToSetParameter( GetGrowthRate(), theValue, METH_SetGrowthRate ))
234   {
235     this->GetImpl()->SetGrowthRate(theValue);
236     SMESH::TPythonDump() << _this() << ".SetGrowthRate( " << SMESH::TVar(theValue) << " )";
237   }
238 }
239
240 //=============================================================================
241 /*!
242  *  NETGENPlugin_Hypothesis_i::GetGrowthRate
243  *
244  *  Get GrowthRate
245  */
246 //=============================================================================
247 CORBA::Double NETGENPlugin_Hypothesis_i::GetGrowthRate()
248 {
249   return this->GetImpl()->GetGrowthRate();
250 }
251
252 //=============================================================================
253 /*!
254  *  NETGENPlugin_Hypothesis_i::SetNbSegPerEdge
255  *
256  *  Set NbSegPerEdge
257  */
258 //=============================================================================
259 void NETGENPlugin_Hypothesis_i::SetNbSegPerEdge (CORBA::Double theValue)
260 {
261   if ( isToSetParameter( GetNbSegPerEdge(), theValue, METH_SetNbSegPerEdge ))
262   {
263     this->GetImpl()->SetNbSegPerEdge(theValue);
264     SMESH::TPythonDump() << _this() << ".SetNbSegPerEdge( " << SMESH::TVar(theValue) << " )";
265   }
266 }
267
268 //=============================================================================
269 /*!
270  *  NETGENPlugin_Hypothesis_i::GetNbSegPerEdge
271  *
272  *  Get NbSegPerEdge
273  */
274 //=============================================================================
275 CORBA::Double NETGENPlugin_Hypothesis_i::GetNbSegPerEdge()
276 {
277   return this->GetImpl()->GetNbSegPerEdge();
278 }
279
280 //=============================================================================
281 /*!
282  *  NETGENPlugin_Hypothesis_i::SetNbSegPerRadius
283  *
284  *  Set NbSegPerRadius
285  */
286 //=============================================================================
287 void NETGENPlugin_Hypothesis_i::SetNbSegPerRadius (CORBA::Double theValue)
288 {
289   if ( isToSetParameter( GetNbSegPerRadius(), theValue, METH_SetNbSegPerRadius ))
290   {
291     this->GetImpl()->SetNbSegPerRadius(theValue);
292     SMESH::TPythonDump() << _this() << ".SetNbSegPerRadius( " << SMESH::TVar(theValue) << " )";
293   }
294 }
295
296 //=============================================================================
297 /*!
298  *  NETGENPlugin_Hypothesis_i::GetNbSegPerRadius
299  *
300  *  Get NbSegPerRadius
301  */
302 //=============================================================================
303 CORBA::Double NETGENPlugin_Hypothesis_i::GetNbSegPerRadius()
304 {
305   return this->GetImpl()->GetNbSegPerRadius();
306 }
307
308 //=============================================================================
309
310 void NETGENPlugin_Hypothesis_i::SetChordalErrorEnabled(CORBA::Boolean theValue)
311 {
312   if ( isToSetParameter( GetChordalErrorEnabled(), theValue, METH_SetChordalErrorEnabled ))
313   {
314     this->GetImpl()->SetChordalErrorEnabled(theValue);
315     SMESH::TPythonDump() << _this() << ".SetChordalErrorEnabled( " << theValue << " )";
316   }
317 }
318
319 CORBA::Boolean NETGENPlugin_Hypothesis_i::GetChordalErrorEnabled()
320 {
321   return GetImpl()->GetChordalErrorEnabled();
322 }
323
324 void NETGENPlugin_Hypothesis_i::SetChordalError(CORBA::Double theValue)
325 {
326   if ( isToSetParameter( GetChordalError(), theValue, METH_SetChordalError ))
327   {
328     this->GetImpl()->SetChordalError(theValue);
329     SMESH::TPythonDump() << _this() << ".SetChordalError( " << SMESH::TVar(theValue) << " )";
330   }
331 }
332
333 CORBA::Double NETGENPlugin_Hypothesis_i::GetChordalError()
334 {
335   return GetImpl()->GetChordalError();
336 }
337
338 //=============================================================================
339
340 void NETGENPlugin_Hypothesis_i::SetLocalSizeOnShape(GEOM::GEOM_Object_ptr GeomObj,
341                                                     CORBA::Double         localSize)
342   throw (SALOME::SALOME_Exception)
343 {
344   string entry;
345   entry = GeomObj->GetStudyEntry();
346   if ( entry.empty() )
347     THROW_SALOME_CORBA_EXCEPTION( "SetLocalSizeOnShape(), shape is not published in study!",
348                                   SALOME::BAD_PARAM );
349   SetLocalSizeOnEntry(entry.c_str(), localSize);
350 }
351
352 //=============================================================================
353
354 void NETGENPlugin_Hypothesis_i::SetLocalSizeOnEntry(const char*   entry,
355                                                     CORBA::Double localSize)
356 {
357   if ( isToSetParameter( GetLocalSizeOnEntry(entry), localSize, METH_SetLocalSizeOnEntry ))
358   {
359     this->GetImpl()->SetLocalSizeOnEntry(entry, localSize);
360     SMESH::TPythonDump()
361       << _this() << ".SetLocalSizeOnShape(" << entry << ", " << localSize << ")";
362   }
363 }
364
365 //=============================================================================
366
367 CORBA::Double NETGENPlugin_Hypothesis_i::GetLocalSizeOnEntry(const char* entry)
368 {
369   return this->GetImpl()->GetLocalSizeOnEntry(entry);
370 }
371
372 //=============================================================================
373
374 NETGENPlugin::string_array* NETGENPlugin_Hypothesis_i::GetLocalSizeEntries()
375 {
376   NETGENPlugin::string_array_var result = new NETGENPlugin::string_array();
377   const ::NETGENPlugin_Hypothesis::TLocalSize localSizes =
378     this->GetImpl()->GetLocalSizesAndEntries();
379   result->length(localSizes.size());
380   ::NETGENPlugin_Hypothesis::TLocalSize::const_iterator it = localSizes.begin();
381   for (int i=0 ; it != localSizes.end() ; i++, it++)
382     {
383       string entry = (*it).first;
384       result[i] = CORBA::string_dup(entry.c_str());
385     }
386   return result._retn();
387 }
388
389 //=============================================================================
390
391 void NETGENPlugin_Hypothesis_i::UnsetLocalSizeOnEntry(const char* entry)
392 {
393   this->GetImpl()->UnsetLocalSizeOnEntry(entry);
394   SMESH::TPythonDump() << _this() << ".UnsetLocalSizeOnEntry(\"" << entry << "\")";
395 }
396
397 //=============================================================================
398
399 void NETGENPlugin_Hypothesis_i::SetMeshSizeFile(const char* fileName)
400 {
401   if ( GetImpl()->GetMeshSizeFile() != fileName )
402   {
403     GetImpl()->SetMeshSizeFile( fileName );
404     SMESH::TPythonDump() << _this() << ".SetMeshSizeFile( '" << fileName << "' )";
405   }
406 }
407
408 //=============================================================================
409
410 char* NETGENPlugin_Hypothesis_i::GetMeshSizeFile()
411 {
412   return CORBA::string_dup( GetImpl()->GetMeshSizeFile().c_str() );
413 }
414
415 //=============================================================================
416
417 void NETGENPlugin_Hypothesis_i::SetQuadAllowed (CORBA::Boolean theValue)
418 {
419   if ( NETGENPlugin_Hypothesis_i::isToSetParameter( GetQuadAllowed(),
420                                                     theValue,
421                                                     METH_SetQuadAllowed ))
422   {
423     this->GetImpl()->SetQuadAllowed(theValue);
424     SMESH::TPythonDump() << _this() << ".SetQuadAllowed( " << theValue << " )";
425   }
426 }
427
428 //=============================================================================
429
430 CORBA::Boolean NETGENPlugin_Hypothesis_i::GetQuadAllowed()
431 {
432   return this->GetImpl()->GetQuadAllowed();
433 }
434
435 //=============================================================================
436
437 void NETGENPlugin_Hypothesis_i::SetUseSurfaceCurvature (CORBA::Boolean theValue)
438 {
439   if ( NETGENPlugin_Hypothesis_i::isToSetParameter( GetUseSurfaceCurvature(),
440                                                     theValue,
441                                                     METH_SetSurfaceCurvature ))
442   {
443     this->GetImpl()->SetSurfaceCurvature(theValue);
444     SMESH::TPythonDump() << _this() << ".SetUseSurfaceCurvature( " << theValue << " )";
445   }
446 }
447
448 //=============================================================================
449
450 CORBA::Boolean NETGENPlugin_Hypothesis_i::GetUseSurfaceCurvature()
451 {
452   return this->GetImpl()->GetSurfaceCurvature();
453 }
454
455 //=============================================================================
456
457 void NETGENPlugin_Hypothesis_i::SetFuseEdges (CORBA::Boolean theValue)
458 {
459   if ( NETGENPlugin_Hypothesis_i::isToSetParameter( GetFuseEdges(),
460                                                     theValue,
461                                                     METH_SetFuseEdges ))
462   {
463     this->GetImpl()->SetFuseEdges(theValue);
464     SMESH::TPythonDump() << _this() << ".SetFuseEdges( " << theValue << " )";
465   }
466 }
467
468 //=============================================================================
469
470 CORBA::Boolean NETGENPlugin_Hypothesis_i::GetFuseEdges()
471 {
472   return this->GetImpl()->GetFuseEdges();
473 }
474
475 //=============================================================================
476 /*!
477  *  NETGENPlugin_Hypothesis_i::GetImpl
478  *
479  *  Get implementation
480  */
481 //=============================================================================
482 ::NETGENPlugin_Hypothesis* NETGENPlugin_Hypothesis_i::GetImpl()
483 {
484   return (::NETGENPlugin_Hypothesis*)myBaseImpl;
485 }
486
487 //================================================================================
488 /*!
489  * \brief Verify whether hypothesis supports given entity type 
490   * \param type - dimension (see SMESH::Dimension enumeration)
491   * \retval CORBA::Boolean - TRUE if dimension is supported, FALSE otherwise
492  * 
493  * Verify whether hypothesis supports given entity type (see SMESH::Dimension enumeration)
494  */
495 //================================================================================  
496 CORBA::Boolean NETGENPlugin_Hypothesis_i::IsDimSupported( SMESH::Dimension type )
497 {
498   return type == SMESH::DIM_3D;
499 }
500
501 //================================================================================
502 /*!
503  * \brief method intended to remove explicit treatment of Netgen hypotheses from SMESH_NoteBook
504  */
505 //================================================================================
506
507 int NETGENPlugin_Hypothesis_i::getParamIndex(const TCollection_AsciiString& method,
508                                              int nbVars) const
509 {
510   if ( method == "SetMaxSize"        ) return 0;
511   if ( method == "SetGrowthRate"     ) return 1;
512   if ( method == "SetNbSegPerEdge"   ) return 2;
513   if ( method == "SetNbSegPerRadius" ) return 3;
514   if ( method == "SetMinSize" )        return nbVars-1;
515
516   return SMESH_Hypothesis_i::getParamIndex( method, nbVars ); // return default value
517 }
518
519 //================================================================================
520 /*!
521  * \brief Method used to convert variable parameters stored in an old study
522  * into myMethod2VarParams. It should return a method name for an index of
523  * variable parameters. Index is countered from zero
524  */
525 //================================================================================
526
527 std::string NETGENPlugin_Hypothesis_i::getMethodOfParameter(const int paramIndex,
528                                                             int nbVars) const
529 {
530   switch ( paramIndex ) {
531   case 0: return "SetMaxSize";
532   case 1: return nbVars == 2 ? "SetMinSize" : "SetGrowthRate";
533   case 2: return "SetNbSegPerEdge";
534   case 3: return "SetNbSegPerRadius";
535   case 4: return "SetMinSize";
536   }
537   return "";
538 }