Salome HOME
Copyright update 2021
[plugins/netgenplugin.git] / src / NETGENPlugin / NETGENPlugin_SimpleHypothesis_2D_i.cxx
1 // Copyright (C) 2007-2021  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                                     ::SMESH_Gen*            theGenImpl)
49   : SALOME::GenericObj_i( thePOA ),
50     SMESH_Hypothesis_i( thePOA )
51 {
52   //MESSAGE( "NETGENPlugin_SimpleHypothesis_2D_i::NETGENPlugin_SimpleHypothesis_2D_i" );
53   myBaseImpl = new ::NETGENPlugin_SimpleHypothesis_2D (theGenImpl->GetANewId(),
54                                                        theGenImpl);
55 }
56
57 //=============================================================================
58 /*!
59  *  NETGENPlugin_SimpleHypothesis_2D_i::~NETGENPlugin_SimpleHypothesis_2D_i
60  *
61  *  Destructor
62  */
63 //=============================================================================
64 NETGENPlugin_SimpleHypothesis_2D_i::~NETGENPlugin_SimpleHypothesis_2D_i()
65 {
66   //MESSAGE( "NETGENPlugin_SimpleHypothesis_2D_i::~NETGENPlugin_SimpleHypothesis_2D_i" );
67 }
68
69 //=============================================================================
70 /*!
71  *  NETGENPlugin_SimpleHypothesis_2D_i::SetNumberOfSegments
72  */
73 //=============================================================================
74 void NETGENPlugin_SimpleHypothesis_2D_i::SetNumberOfSegments(CORBA::Short nb)
75 {
76   ASSERT(myBaseImpl);
77   try {
78     this->GetImpl()->SetNumberOfSegments(nb);
79   }
80   catch (SALOME_Exception& S_ex) {
81     THROW_SALOME_CORBA_EXCEPTION( S_ex.what(), SALOME::BAD_PARAM );
82   }
83   SMESH::TPythonDump() << _this() << ".SetNumberOfSegments( " << SMESH::TVar(nb) << " )";
84 }
85
86 //=============================================================================
87 /*!
88  *  NETGENPlugin_SimpleHypothesis_2D_i::GetNumberOfSegments()
89  */
90 //=============================================================================
91 CORBA::Short NETGENPlugin_SimpleHypothesis_2D_i::GetNumberOfSegments()
92 {
93   ASSERT(myBaseImpl);
94   return this->GetImpl()->GetNumberOfSegments();
95 }
96
97 //================================================================================
98 /*!
99  * LocalLength()
100  */
101 //================================================================================
102
103 void NETGENPlugin_SimpleHypothesis_2D_i::SetLocalLength(CORBA::Double segmentLength)
104 {
105   ASSERT(myBaseImpl);
106   try {
107     this->GetImpl()->SetLocalLength(segmentLength);
108   }
109   catch (SALOME_Exception& S_ex) {
110     THROW_SALOME_CORBA_EXCEPTION( S_ex.what(), SALOME::BAD_PARAM );
111   }
112   SMESH::TPythonDump() << _this() << ".SetLocalLength( " << SMESH::TVar(segmentLength) << " )";
113 }
114
115 //================================================================================
116 /*!
117  * GetLocalLength()
118  */
119 //================================================================================
120
121 CORBA::Double NETGENPlugin_SimpleHypothesis_2D_i::GetLocalLength()
122 {
123   ASSERT(myBaseImpl);
124   return this->GetImpl()->GetLocalLength();
125 }
126
127 //=============================================================================
128 /*!
129  *  NETGENPlugin_SimpleHypothesis_2D_i::LengthFromEdges()
130  */
131 //=============================================================================
132 void NETGENPlugin_SimpleHypothesis_2D_i::LengthFromEdges()
133 {
134   ASSERT(myBaseImpl);
135   this->GetImpl()->LengthFromEdges();
136   SMESH::TPythonDump() << _this() << ".LengthFromEdges()";
137 }
138
139 //=============================================================================
140 /*!
141  *  NETGENPlugin_SimpleHypothesis_2D_i::SetMaxElementArea()
142  */
143 //=============================================================================
144 void NETGENPlugin_SimpleHypothesis_2D_i::SetMaxElementArea(CORBA::Double area)
145 {
146   ASSERT(myBaseImpl);
147   this->GetImpl()->SetMaxElementArea(area);
148   SMESH::TPythonDump() << _this() << ".SetMaxElementArea( " << SMESH::TVar(area) << " )";
149 }
150
151
152 //=============================================================================
153 /*!
154  *  NETGENPlugin_SimpleHypothesis_2D_i::GetMaxElementArea()
155  */
156 //=============================================================================
157
158 CORBA::Double NETGENPlugin_SimpleHypothesis_2D_i::GetMaxElementArea()
159 {
160   ASSERT(myBaseImpl);
161   return this->GetImpl()->GetMaxElementArea();
162 }
163
164 //=============================================================================
165 /*!
166  * Enables/disables generation of quadrangular faces
167  */
168 //=============================================================================
169
170 void NETGENPlugin_SimpleHypothesis_2D_i::SetAllowQuadrangles(CORBA::Boolean toAllow)
171 {
172   ASSERT(myBaseImpl);
173   SMESH::TPythonDump() << _this() << ".SetAllowQuadrangles( " << toAllow << " )";
174   this->GetImpl()->SetAllowQuadrangles(toAllow);
175 }
176
177 //=============================================================================
178 /*!
179  * Returns true if generation of quadrangular faces is enabled
180  */
181 //=============================================================================
182
183 CORBA::Boolean NETGENPlugin_SimpleHypothesis_2D_i::GetAllowQuadrangles()
184 {
185   return this->GetImpl()->GetAllowQuadrangles();
186 }
187 //=============================================================================
188 /*!
189  *  NETGENPlugin_SimpleHypothesis_2D_i::GetImpl
190  */
191 //=============================================================================
192 ::NETGENPlugin_SimpleHypothesis_2D* NETGENPlugin_SimpleHypothesis_2D_i::GetImpl() const
193 {
194   return (::NETGENPlugin_SimpleHypothesis_2D*)myBaseImpl;
195 }
196
197 //================================================================================
198 /*!
199  * \brief Verify whether hypothesis supports given entity type 
200  * \param type - dimension (see SMESH::Dimension enumeration)
201  * \retval CORBA::Boolean - TRUE if dimension is supported, FALSE otherwise
202  *
203  * Verify whether hypothesis supports given entity type (see SMESH::Dimension enumeration)
204  */
205 //================================================================================  
206 CORBA::Boolean NETGENPlugin_SimpleHypothesis_2D_i::IsDimSupported( SMESH::Dimension type )
207 {
208   return type == SMESH::DIM_2D;
209 }
210
211 //================================================================================
212 /*!
213  * \brief method intended to remove explicit treatment of Netgen hypotheses from SMESH_NoteBook
214  */
215 //================================================================================
216
217 int NETGENPlugin_SimpleHypothesis_2D_i::getParamIndex(const TCollection_AsciiString& method,
218                                                       int nbVars) const
219 {
220   if ( method == "SetLocalLength"      ) return 0;
221   if ( method == "SetNumberOfSegments" ) return 0;
222   if ( method == "SetMaxElementArea"   ) return 1;
223   if ( method == "LengthFromEdges"     ) return 10; // just to go to the next state
224   if ( method == "SetMaxElementVolume" ) return 2;
225   if ( method == "LengthFromFaces"     ) return 10; // just to go to the next state
226
227   return SMESH_Hypothesis_i::getParamIndex( method, nbVars ); // return default value
228 }
229
230 //================================================================================
231 /*!
232  * \brief Method used to convert variable parameters stored in an old study
233  * into myMethod2VarParams. It should return a method name for an index of
234  * variable parameters. Index is countered from zero
235  */
236 //================================================================================
237
238 std::string NETGENPlugin_SimpleHypothesis_2D_i::getMethodOfParameter(const int paramIndex,
239                                                                      int /*nbVars*/) const
240 {
241   switch ( paramIndex ) {
242   case 0: return GetImpl()->GetNumberOfSegments() ? "SetNumberOfSegments" : "SetLocalLength";
243   case 1: return "SetMaxElementArea";
244   case 2: return "SetMaxElementVolume";
245   }
246   return "";
247 }