Salome HOME
Copyrights update 2015.
[plugins/netgenplugin.git] / src / NETGENPlugin / NETGENPlugin_SimpleHypothesis_2D_i.cxx
1 // Copyright (C) 2007-2015  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
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, or (at your option) any later version.
7 //
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.
12 //
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
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 //  NETGENPlugin : C++ implementation
21 // File      : NETGENPlugin_SimpleHypothesis_2D_i.cxx
22 // Author    : Edward AGAPOV
23 // Project   : SALOME
24 //=============================================================================
25 //
26 #include "NETGENPlugin_SimpleHypothesis_2D_i.hxx"
27 #include "NETGENPlugin_SimpleHypothesis_2D.hxx"
28
29 #include <SMESH_Gen.hxx>
30 #include <SMESH_PythonDump.hxx>
31
32 #include <Utils_CorbaException.hxx>
33 #include <utilities.h>
34
35 #include <TCollection_AsciiString.hxx>
36
37 using namespace std;
38
39 //=============================================================================
40 /*!
41  *  NETGENPlugin_SimpleHypothesis_2D_i::NETGENPlugin_SimpleHypothesis_2D_i
42  *
43  *  Constructor
44  */
45 //=============================================================================
46 NETGENPlugin_SimpleHypothesis_2D_i::
47 NETGENPlugin_SimpleHypothesis_2D_i (PortableServer::POA_ptr thePOA,
48                                     int                     theStudyId,
49                                     ::SMESH_Gen*            theGenImpl)
50   : SALOME::GenericObj_i( thePOA ),
51     SMESH_Hypothesis_i( thePOA )
52 {
53   MESSAGE( "NETGENPlugin_SimpleHypothesis_2D_i::NETGENPlugin_SimpleHypothesis_2D_i" );
54   myBaseImpl = new ::NETGENPlugin_SimpleHypothesis_2D (theGenImpl->GetANewId(),
55                                                        theStudyId,
56                                                        theGenImpl);
57 }
58
59 //=============================================================================
60 /*!
61  *  NETGENPlugin_SimpleHypothesis_2D_i::~NETGENPlugin_SimpleHypothesis_2D_i
62  *
63  *  Destructor
64  */
65 //=============================================================================
66 NETGENPlugin_SimpleHypothesis_2D_i::~NETGENPlugin_SimpleHypothesis_2D_i()
67 {
68   MESSAGE( "NETGENPlugin_SimpleHypothesis_2D_i::~NETGENPlugin_SimpleHypothesis_2D_i" );
69 }
70
71 //=============================================================================
72 /*!
73  *  NETGENPlugin_SimpleHypothesis_2D_i::SetNumberOfSegments
74  */
75 //=============================================================================
76 void NETGENPlugin_SimpleHypothesis_2D_i::SetNumberOfSegments(CORBA::Short nb)
77   throw ( SALOME::SALOME_Exception )
78 {
79   MESSAGE("NETGENPlugin_SimpleHypothesis_2D_i::SetNumberOfSegments");
80   ASSERT(myBaseImpl);
81   try {
82     this->GetImpl()->SetNumberOfSegments(nb);
83   }
84   catch (SALOME_Exception& S_ex) {
85     THROW_SALOME_CORBA_EXCEPTION( S_ex.what(), SALOME::BAD_PARAM );
86   }
87   SMESH::TPythonDump() << _this() << ".SetNumberOfSegments( " << SMESH::TVar(nb) << " )";
88 }
89
90 //=============================================================================
91 /*!
92  *  NETGENPlugin_SimpleHypothesis_2D_i::GetNumberOfSegments()
93  */
94 //=============================================================================
95 CORBA::Short NETGENPlugin_SimpleHypothesis_2D_i::GetNumberOfSegments()
96 {
97   MESSAGE("NETGENPlugin_SimpleHypothesis_2D_i::GetNumberOfSegments");
98   ASSERT(myBaseImpl);
99   return this->GetImpl()->GetNumberOfSegments();
100 }
101
102 //================================================================================
103 /*!
104  * LocalLength()
105  */
106 //================================================================================
107
108 void NETGENPlugin_SimpleHypothesis_2D_i::SetLocalLength(CORBA::Double segmentLength)
109 {
110   MESSAGE("NETGENPlugin_SimpleHypothesis_2D_i::SetLocalLength");
111   ASSERT(myBaseImpl);
112   try {
113     this->GetImpl()->SetLocalLength(segmentLength);
114   }
115   catch (SALOME_Exception& S_ex) {
116     THROW_SALOME_CORBA_EXCEPTION( S_ex.what(), SALOME::BAD_PARAM );
117   }
118   SMESH::TPythonDump() << _this() << ".SetLocalLength( " << SMESH::TVar(segmentLength) << " )";
119 }
120
121 //================================================================================
122 /*!
123  * GetLocalLength()
124  */
125 //================================================================================
126
127 CORBA::Double NETGENPlugin_SimpleHypothesis_2D_i::GetLocalLength()
128 {
129   MESSAGE("NETGENPlugin_SimpleHypothesis_2D_i::GetLocalLength");
130   ASSERT(myBaseImpl);
131   return this->GetImpl()->GetLocalLength();
132 }
133
134 //=============================================================================
135 /*!
136  *  NETGENPlugin_SimpleHypothesis_2D_i::LengthFromEdges()
137  */
138 //=============================================================================
139 void NETGENPlugin_SimpleHypothesis_2D_i::LengthFromEdges()
140 {
141   MESSAGE("NETGENPlugin_SimpleHypothesis_2D_i::LengthFromEdges");
142   ASSERT(myBaseImpl);
143   this->GetImpl()->LengthFromEdges();
144   SMESH::TPythonDump() << _this() << ".LengthFromEdges()";
145 }
146
147 //=============================================================================
148 /*!
149  *  NETGENPlugin_SimpleHypothesis_2D_i::SetMaxElementArea()
150  */
151 //=============================================================================
152 void NETGENPlugin_SimpleHypothesis_2D_i::SetMaxElementArea(CORBA::Double area)
153 {
154   MESSAGE("NETGENPlugin_SimpleHypothesis_2D_i::SetMaxElementArea");
155   ASSERT(myBaseImpl);
156   this->GetImpl()->SetMaxElementArea(area);
157   SMESH::TPythonDump() << _this() << ".SetMaxElementArea( " << SMESH::TVar(area) << " )";
158 }
159
160
161 //=============================================================================
162 /*!
163  *  NETGENPlugin_SimpleHypothesis_2D_i::GetMaxElementArea()
164  */
165 //=============================================================================
166
167 CORBA::Double NETGENPlugin_SimpleHypothesis_2D_i::GetMaxElementArea()
168 {
169   MESSAGE("NETGENPlugin_SimpleHypothesis_2D_i::GetMaxElementArea");
170   ASSERT(myBaseImpl);
171   return this->GetImpl()->GetMaxElementArea();
172 }
173
174 //=============================================================================
175 /*!
176  * Enables/disables generation of quadrangular faces
177  */
178 //=============================================================================
179
180 void NETGENPlugin_SimpleHypothesis_2D_i::SetAllowQuadrangles(CORBA::Boolean toAllow)
181 {
182   ASSERT(myBaseImpl);
183   SMESH::TPythonDump() << _this() << ".SetAllowQuadrangles( " << toAllow << " )";
184   this->GetImpl()->SetAllowQuadrangles(toAllow);
185 }
186
187 //=============================================================================
188 /*!
189  * Returns true if generation of quadrangular faces is enabled
190  */
191 //=============================================================================
192
193 CORBA::Boolean NETGENPlugin_SimpleHypothesis_2D_i::GetAllowQuadrangles()
194 {
195   return this->GetImpl()->GetAllowQuadrangles();
196 }
197 //=============================================================================
198 /*!
199  *  NETGENPlugin_SimpleHypothesis_2D_i::GetImpl
200  */
201 //=============================================================================
202 ::NETGENPlugin_SimpleHypothesis_2D* NETGENPlugin_SimpleHypothesis_2D_i::GetImpl() const
203 {
204   MESSAGE("NETGENPlugin_SimpleHypothesis_2D_i::GetImpl");
205   return (::NETGENPlugin_SimpleHypothesis_2D*)myBaseImpl;
206 }
207
208 //================================================================================
209 /*!
210  * \brief Verify whether hypothesis supports given entity type 
211  * \param type - dimension (see SMESH::Dimension enumeration)
212  * \retval CORBA::Boolean - TRUE if dimension is supported, FALSE otherwise
213  *
214  * Verify whether hypothesis supports given entity type (see SMESH::Dimension enumeration)
215  */
216 //================================================================================  
217 CORBA::Boolean NETGENPlugin_SimpleHypothesis_2D_i::IsDimSupported( SMESH::Dimension type )
218 {
219   return type == SMESH::DIM_2D;
220 }
221
222 //================================================================================
223 /*!
224  * \brief method intended to remove explicit treatment of Netgen hypotheses from SMESH_NoteBook
225  */
226 //================================================================================
227
228 int NETGENPlugin_SimpleHypothesis_2D_i::getParamIndex(const TCollection_AsciiString& method,
229                                                       int nbVars) const
230 {
231   if ( method == "SetLocalLength"      ) return 0;
232   if ( method == "SetNumberOfSegments" ) return 0;
233   if ( method == "SetMaxElementArea"   ) return 1;
234   if ( method == "LengthFromEdges"     ) return 10; // just to go to the next state
235   if ( method == "SetMaxElementVolume" ) return 2;
236   if ( method == "LengthFromFaces"     ) return 10; // just to go to the next state
237
238   return SMESH_Hypothesis_i::getParamIndex( method, nbVars ); // return default value
239 }
240
241 //================================================================================
242 /*!
243  * \brief Method used to convert variable parameters stored in an old study
244  * into myMethod2VarParams. It should return a method name for an index of
245  * variable parameters. Index is countered from zero
246  */
247 //================================================================================
248
249 std::string NETGENPlugin_SimpleHypothesis_2D_i::getMethodOfParameter(const int paramIndex,
250                                                                      int nbVars) const
251 {
252   switch ( paramIndex ) {
253   case 0: return GetImpl()->GetNumberOfSegments() ? "SetNumberOfSegments" : "SetLocalLength";
254   case 1: return "SetMaxElementArea";
255   case 2: return "SetMaxElementVolume";
256   }
257   return "";
258 }