1 // Copyright (C) 2007-2024 CEA, EDF, OPEN CASCADE
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.
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
20 // NETGENPlugin : C++ implementation
21 // File : NETGENPlugin_SimpleHypothesis_2D_i.cxx
22 // Author : Edward AGAPOV
24 //=============================================================================
26 #include "NETGENPlugin_SimpleHypothesis_2D_i.hxx"
27 #include "NETGENPlugin_SimpleHypothesis_2D.hxx"
29 #include <SMESH_Gen.hxx>
30 #include <SMESH_PythonDump.hxx>
32 #include <Utils_CorbaException.hxx>
33 #include <utilities.h>
35 #include <TCollection_AsciiString.hxx>
39 //=============================================================================
41 * NETGENPlugin_SimpleHypothesis_2D_i::NETGENPlugin_SimpleHypothesis_2D_i
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 )
52 //MESSAGE( "NETGENPlugin_SimpleHypothesis_2D_i::NETGENPlugin_SimpleHypothesis_2D_i" );
53 myBaseImpl = new ::NETGENPlugin_SimpleHypothesis_2D (theGenImpl->GetANewId(),
57 //=============================================================================
59 * NETGENPlugin_SimpleHypothesis_2D_i::~NETGENPlugin_SimpleHypothesis_2D_i
63 //=============================================================================
64 NETGENPlugin_SimpleHypothesis_2D_i::~NETGENPlugin_SimpleHypothesis_2D_i()
66 //MESSAGE( "NETGENPlugin_SimpleHypothesis_2D_i::~NETGENPlugin_SimpleHypothesis_2D_i" );
69 //=============================================================================
71 * NETGENPlugin_SimpleHypothesis_2D_i::SetNumberOfSegments
73 //=============================================================================
74 void NETGENPlugin_SimpleHypothesis_2D_i::SetNumberOfSegments(CORBA::Long nb)
78 this->GetImpl()->SetNumberOfSegments(nb);
80 catch (SALOME_Exception& S_ex) {
81 THROW_SALOME_CORBA_EXCEPTION( S_ex.what(), SALOME::BAD_PARAM );
83 SMESH::TPythonDump() << _this() << ".SetNumberOfSegments( " << SMESH::TVar(nb) << " )";
86 //=============================================================================
88 * NETGENPlugin_SimpleHypothesis_2D_i::GetNumberOfSegments()
90 //=============================================================================
91 CORBA::Long NETGENPlugin_SimpleHypothesis_2D_i::GetNumberOfSegments()
94 return (CORBA::Long) this->GetImpl()->GetNumberOfSegments();
97 //================================================================================
101 //================================================================================
103 void NETGENPlugin_SimpleHypothesis_2D_i::SetLocalLength(CORBA::Double segmentLength)
107 this->GetImpl()->SetLocalLength(segmentLength);
109 catch (SALOME_Exception& S_ex) {
110 THROW_SALOME_CORBA_EXCEPTION( S_ex.what(), SALOME::BAD_PARAM );
112 SMESH::TPythonDump() << _this() << ".SetLocalLength( " << SMESH::TVar(segmentLength) << " )";
115 //================================================================================
119 //================================================================================
121 CORBA::Double NETGENPlugin_SimpleHypothesis_2D_i::GetLocalLength()
124 return this->GetImpl()->GetLocalLength();
127 //=============================================================================
129 * NETGENPlugin_SimpleHypothesis_2D_i::LengthFromEdges()
131 //=============================================================================
132 void NETGENPlugin_SimpleHypothesis_2D_i::LengthFromEdges()
135 this->GetImpl()->LengthFromEdges();
136 SMESH::TPythonDump() << _this() << ".LengthFromEdges()";
139 //=============================================================================
141 * NETGENPlugin_SimpleHypothesis_2D_i::SetMaxElementArea()
143 //=============================================================================
144 void NETGENPlugin_SimpleHypothesis_2D_i::SetMaxElementArea(CORBA::Double area)
147 this->GetImpl()->SetMaxElementArea(area);
148 SMESH::TPythonDump() << _this() << ".SetMaxElementArea( " << SMESH::TVar(area) << " )";
152 //=============================================================================
154 * NETGENPlugin_SimpleHypothesis_2D_i::GetMaxElementArea()
156 //=============================================================================
158 CORBA::Double NETGENPlugin_SimpleHypothesis_2D_i::GetMaxElementArea()
161 return this->GetImpl()->GetMaxElementArea();
164 //=============================================================================
166 * Enables/disables generation of quadrangular faces
168 //=============================================================================
170 void NETGENPlugin_SimpleHypothesis_2D_i::SetAllowQuadrangles(CORBA::Boolean toAllow)
173 SMESH::TPythonDump() << _this() << ".SetAllowQuadrangles( " << toAllow << " )";
174 this->GetImpl()->SetAllowQuadrangles(toAllow);
177 //=============================================================================
179 * Returns true if generation of quadrangular faces is enabled
181 //=============================================================================
183 CORBA::Boolean NETGENPlugin_SimpleHypothesis_2D_i::GetAllowQuadrangles()
185 return this->GetImpl()->GetAllowQuadrangles();
187 //=============================================================================
189 * NETGENPlugin_SimpleHypothesis_2D_i::GetImpl
191 //=============================================================================
192 ::NETGENPlugin_SimpleHypothesis_2D* NETGENPlugin_SimpleHypothesis_2D_i::GetImpl() const
194 return (::NETGENPlugin_SimpleHypothesis_2D*)myBaseImpl;
197 //================================================================================
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
203 * Verify whether hypothesis supports given entity type (see SMESH::Dimension enumeration)
205 //================================================================================
206 CORBA::Boolean NETGENPlugin_SimpleHypothesis_2D_i::IsDimSupported( SMESH::Dimension type )
208 return type == SMESH::DIM_2D;
211 //================================================================================
213 * \brief method intended to remove explicit treatment of Netgen hypotheses from SMESH_NoteBook
215 //================================================================================
217 int NETGENPlugin_SimpleHypothesis_2D_i::getParamIndex(const TCollection_AsciiString& method,
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
227 return SMESH_Hypothesis_i::getParamIndex( method, nbVars ); // return default value
230 //================================================================================
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
236 //================================================================================
238 std::string NETGENPlugin_SimpleHypothesis_2D_i::getMethodOfParameter(const int paramIndex,
239 int /*nbVars*/) const
241 switch ( paramIndex ) {
242 case 0: return GetImpl()->GetNumberOfSegments() ? "SetNumberOfSegments" : "SetLocalLength";
243 case 1: return "SetMaxElementArea";
244 case 2: return "SetMaxElementVolume";