2013-04-01 19:05:47 +06:00
|
|
|
// Copyright (C) 2007-2013 CEA/DEN, EDF R&D, OPEN CASCADE
|
2009-02-17 10:27:49 +05:00
|
|
|
//
|
2012-08-09 16:03:55 +06:00
|
|
|
// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
|
|
|
|
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
|
2009-02-17 10:27:49 +05:00
|
|
|
//
|
2012-08-09 16:03:55 +06:00
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
// version 2.1 of the License.
|
2003-07-10 19:35:03 +06:00
|
|
|
//
|
2012-08-09 16:03:55 +06:00
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Lesser General Public License for more details.
|
2003-07-10 19:35:03 +06:00
|
|
|
//
|
2012-08-09 16:03:55 +06:00
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
// License along with this library; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
2003-07-10 19:35:03 +06:00
|
|
|
//
|
2012-08-09 16:03:55 +06:00
|
|
|
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
2003-07-10 19:35:03 +06:00
|
|
|
//
|
|
|
|
// File : SMESH_Mesh_i.hxx
|
|
|
|
// Author : Paul RASCLE, EDF
|
|
|
|
// Module : SMESH
|
2012-08-09 16:03:55 +06:00
|
|
|
|
2003-05-19 19:54:48 +06:00
|
|
|
#ifndef _SMESH_MESH_I_HXX_
|
|
|
|
#define _SMESH_MESH_I_HXX_
|
|
|
|
|
2008-03-07 12:47:05 +05:00
|
|
|
#include "SMESH.hxx"
|
|
|
|
|
2003-05-19 19:54:48 +06:00
|
|
|
#include <SALOMEconfig.h>
|
2012-10-08 17:56:59 +06:00
|
|
|
#include CORBA_SERVER_HEADER(SMESH_Gen)
|
2003-05-19 19:54:48 +06:00
|
|
|
#include CORBA_SERVER_HEADER(SMESH_Mesh)
|
2004-06-18 14:34:31 +06:00
|
|
|
#include CORBA_SERVER_HEADER(SMESH_Group)
|
2003-05-19 19:54:48 +06:00
|
|
|
#include CORBA_SERVER_HEADER(SMESH_Hypothesis)
|
|
|
|
#include CORBA_CLIENT_HEADER(GEOM_Gen)
|
|
|
|
#include CORBA_CLIENT_HEADER(MED)
|
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
#include "SMESH_Hypothesis.hxx"
|
2003-05-19 19:54:48 +06:00
|
|
|
#include "SMESH_Mesh.hxx"
|
|
|
|
#include "SMESH_subMesh.hxx"
|
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
#include "SALOME_GenericObj_i.hh"
|
|
|
|
|
2004-12-01 15:48:31 +05:00
|
|
|
class SMESH_Gen_i;
|
|
|
|
class SMESH_GroupBase_i;
|
2008-03-07 12:47:05 +05:00
|
|
|
class SMESH_subMesh_i;
|
2012-08-09 16:03:55 +06:00
|
|
|
class SMESH_PreMeshInfo;
|
2004-12-01 15:48:31 +05:00
|
|
|
|
|
|
|
#include <map>
|
|
|
|
|
2008-03-07 12:47:05 +05:00
|
|
|
class SMESH_I_EXPORT SMESH_Mesh_i:
|
2004-06-18 14:34:31 +06:00
|
|
|
public virtual POA_SMESH::SMESH_Mesh,
|
2005-03-23 10:56:25 +05:00
|
|
|
public virtual SALOME::GenericObj_i
|
2003-05-19 19:54:48 +06:00
|
|
|
{
|
2004-06-18 14:34:31 +06:00
|
|
|
SMESH_Mesh_i();
|
2004-12-01 15:48:31 +05:00
|
|
|
SMESH_Mesh_i(const SMESH_Mesh_i&);
|
|
|
|
public:
|
2004-06-18 14:34:31 +06:00
|
|
|
SMESH_Mesh_i( PortableServer::POA_ptr thePOA,
|
|
|
|
SMESH_Gen_i* myGen_i,
|
2012-08-09 16:03:55 +06:00
|
|
|
CORBA::Long studyId );
|
2003-05-19 19:54:48 +06:00
|
|
|
|
|
|
|
virtual ~SMESH_Mesh_i();
|
|
|
|
|
|
|
|
// --- CORBA
|
2004-12-01 15:48:31 +05:00
|
|
|
void SetShape( GEOM::GEOM_Object_ptr theShapeObject )
|
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
2008-03-07 12:47:05 +05:00
|
|
|
CORBA::Boolean HasShapeToMesh()
|
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
2004-12-01 15:48:31 +05:00
|
|
|
GEOM::GEOM_Object_ptr GetShapeToMesh()
|
2004-06-18 14:34:31 +06:00
|
|
|
throw (SALOME::SALOME_Exception);
|
2003-05-19 19:54:48 +06:00
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
CORBA::Boolean IsLoaded()
|
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
|
|
|
void Load()
|
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
void Clear()
|
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
|
|
|
void ClearSubMesh(CORBA::Long ShapeID)
|
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
2004-12-01 15:48:31 +05:00
|
|
|
SMESH::Hypothesis_Status AddHypothesis(GEOM::GEOM_Object_ptr aSubShapeObject,
|
2004-06-18 14:34:31 +06:00
|
|
|
SMESH::SMESH_Hypothesis_ptr anHyp)
|
2003-05-19 19:54:48 +06:00
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
2004-12-01 15:48:31 +05:00
|
|
|
SMESH::Hypothesis_Status RemoveHypothesis(GEOM::GEOM_Object_ptr aSubShapeObject,
|
2004-06-18 14:34:31 +06:00
|
|
|
SMESH::SMESH_Hypothesis_ptr anHyp)
|
2003-05-19 19:54:48 +06:00
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
2004-12-01 15:48:31 +05:00
|
|
|
SMESH::ListOfHypothesis* GetHypothesisList(GEOM::GEOM_Object_ptr aSubShapeObject)
|
2003-05-19 19:54:48 +06:00
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
SMESH::submesh_array* GetSubMeshes()
|
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
2004-12-01 15:48:31 +05:00
|
|
|
SMESH::SMESH_subMesh_ptr GetSubMesh(GEOM::GEOM_Object_ptr aSubShapeObject, const char* theName)
|
2004-06-18 14:34:31 +06:00
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
|
|
|
void RemoveSubMesh( SMESH::SMESH_subMesh_ptr theSubMesh )
|
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
|
|
|
SMESH::SMESH_Group_ptr CreateGroup( SMESH::ElementType theElemType, const char* theName )
|
|
|
|
throw (SALOME::SALOME_Exception);
|
2012-08-09 16:03:55 +06:00
|
|
|
|
2004-12-01 15:48:31 +05:00
|
|
|
SMESH::SMESH_GroupOnGeom_ptr CreateGroupFromGEOM(SMESH::ElementType theElemType,
|
|
|
|
const char* theName,
|
|
|
|
GEOM::GEOM_Object_ptr theGeomObj )
|
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
SMESH::SMESH_GroupOnFilter_ptr CreateGroupFromFilter(SMESH::ElementType theElemType,
|
|
|
|
const char* theName,
|
|
|
|
SMESH::Filter_ptr theFilter )
|
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
2004-12-01 15:48:31 +05:00
|
|
|
void RemoveGroup( SMESH::SMESH_GroupBase_ptr theGroup )
|
|
|
|
throw (SALOME::SALOME_Exception);
|
2012-08-09 16:03:55 +06:00
|
|
|
|
2004-12-01 15:48:31 +05:00
|
|
|
void RemoveGroupWithContents( SMESH::SMESH_GroupBase_ptr theGroup )
|
|
|
|
throw (SALOME::SALOME_Exception);
|
2012-08-09 16:03:55 +06:00
|
|
|
|
2006-05-06 14:51:48 +06:00
|
|
|
SMESH::ListOfGroups* GetGroups()
|
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
2008-03-07 12:47:05 +05:00
|
|
|
CORBA::Long NbGroups()
|
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
SMESH::SMESH_Group_ptr UnionGroups( SMESH::SMESH_GroupBase_ptr theGroup1,
|
|
|
|
SMESH::SMESH_GroupBase_ptr theGroup2,
|
2004-12-01 15:48:31 +05:00
|
|
|
const char* theName )
|
|
|
|
throw (SALOME::SALOME_Exception);
|
2009-02-17 10:27:49 +05:00
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
SMESH::SMESH_Group_ptr UnionListOfGroups( const SMESH::ListOfGroups& theGroups,
|
2009-02-17 10:27:49 +05:00
|
|
|
const char* theName)
|
|
|
|
throw (SALOME::SALOME_Exception);
|
2012-08-09 16:03:55 +06:00
|
|
|
|
|
|
|
SMESH::SMESH_Group_ptr IntersectGroups( SMESH::SMESH_GroupBase_ptr theGroup1,
|
|
|
|
SMESH::SMESH_GroupBase_ptr theGroup2,
|
2004-12-01 15:48:31 +05:00
|
|
|
const char* theName )
|
|
|
|
throw (SALOME::SALOME_Exception);
|
2009-02-17 10:27:49 +05:00
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
SMESH::SMESH_Group_ptr IntersectListOfGroups( const SMESH::ListOfGroups& theGroups,
|
2009-02-17 10:27:49 +05:00
|
|
|
const char* theName )
|
|
|
|
throw (SALOME::SALOME_Exception);
|
2012-08-09 16:03:55 +06:00
|
|
|
|
|
|
|
SMESH::SMESH_Group_ptr CutGroups( SMESH::SMESH_GroupBase_ptr theGroup1,
|
|
|
|
SMESH::SMESH_GroupBase_ptr theGroup2,
|
2009-02-17 10:27:49 +05:00
|
|
|
const char* theName )
|
2003-05-19 19:54:48 +06:00
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
SMESH::SMESH_Group_ptr CutListOfGroups( const SMESH::ListOfGroups& theMainGroups,
|
|
|
|
const SMESH::ListOfGroups& theToolGroups,
|
2009-02-17 10:27:49 +05:00
|
|
|
const char* theName )
|
2013-02-12 20:37:44 +06:00
|
|
|
throw (SALOME::SALOME_Exception);
|
2009-02-17 10:27:49 +05:00
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
SMESH::SMESH_Group_ptr CreateDimGroup( const SMESH::ListOfGroups& theGroups,
|
|
|
|
SMESH::ElementType theElemType,
|
2009-02-17 10:27:49 +05:00
|
|
|
const char* theName )
|
2013-02-12 20:37:44 +06:00
|
|
|
throw (SALOME::SALOME_Exception);
|
2012-08-09 16:03:55 +06:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
|
2013-02-12 20:37:44 +06:00
|
|
|
SMESH::SMESH_Group_ptr ConvertToStandalone( SMESH::SMESH_GroupBase_ptr theGroupOn )
|
|
|
|
throw (SALOME::SALOME_Exception);
|
2003-05-19 19:54:48 +06:00
|
|
|
|
|
|
|
SMESH::log_array* GetLog(CORBA::Boolean clearAfterGet)
|
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
2013-02-12 20:37:44 +06:00
|
|
|
SMESH::SMESH_MeshEditor_ptr GetMeshEditor() throw (SALOME::SALOME_Exception);
|
2003-05-19 19:54:48 +06:00
|
|
|
|
2013-02-12 20:37:44 +06:00
|
|
|
SMESH::SMESH_MeshEditor_ptr GetMeshEditPreviewer() throw (SALOME::SALOME_Exception);
|
2008-03-07 12:47:05 +05:00
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
CORBA::Boolean HasModificationsToDiscard() throw (SALOME::SALOME_Exception);
|
|
|
|
|
2013-02-12 20:37:44 +06:00
|
|
|
void ClearLog() throw (SALOME::SALOME_Exception);
|
2003-05-19 19:54:48 +06:00
|
|
|
|
2013-02-12 20:37:44 +06:00
|
|
|
CORBA::Long GetId() throw (SALOME::SALOME_Exception);
|
2003-05-19 19:54:48 +06:00
|
|
|
|
2013-02-12 20:37:44 +06:00
|
|
|
CORBA::Long GetStudyId() throw (SALOME::SALOME_Exception);
|
2003-05-19 19:54:48 +06:00
|
|
|
|
|
|
|
// --- C++ interface
|
|
|
|
void SetImpl(::SMESH_Mesh* impl);
|
|
|
|
::SMESH_Mesh& GetImpl(); // :: force no namespace here
|
2004-06-18 14:34:31 +06:00
|
|
|
|
|
|
|
SMESH_Gen_i* GetGen() { return _gen_i; }
|
2006-03-13 20:29:49 +05:00
|
|
|
|
2004-12-01 15:48:31 +05:00
|
|
|
int ImportUNVFile( const char* theFileName )
|
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
|
|
|
int ImportSTLFile( const char* theFileName )
|
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
2012-12-13 17:41:29 +06:00
|
|
|
SMESH::ComputeError* ImportGMFFile( const char* theFileName,
|
|
|
|
bool theMakeRequiredGroups)
|
2012-10-08 17:56:59 +06:00
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
/*!
|
|
|
|
* consult DriverMED_R_SMESHDS_Mesh::ReadStatus for returned value
|
|
|
|
*/
|
|
|
|
SMESH::DriverMED_ReadStatus ImportMEDFile( const char* theFileName, const char* theMeshName )
|
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
SMESH::DriverMED_ReadStatus ImportCGNSFile( const char* theFileName,
|
|
|
|
const int theMeshIndex,
|
|
|
|
std::string& theMeshName)
|
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
2008-03-07 12:47:05 +05:00
|
|
|
/*!
|
|
|
|
* Auto color
|
|
|
|
*/
|
|
|
|
void SetAutoColor(CORBA::Boolean theAutoColor)
|
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
|
|
|
CORBA::Boolean GetAutoColor()
|
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
2006-03-13 20:29:49 +05:00
|
|
|
/*! Check group names for duplications.
|
|
|
|
* Consider maximum group name length stored in MED file.
|
|
|
|
*/
|
|
|
|
CORBA::Boolean HasDuplicatedGroupNamesMED();
|
2008-03-07 12:47:05 +05:00
|
|
|
/*!
|
|
|
|
* Return string representation of a MED file version comprising nbDigits
|
|
|
|
*/
|
|
|
|
char* GetVersionString(SMESH::MED_VERSION version, CORBA::Short nbDigits);
|
2006-03-13 20:29:49 +05:00
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
void ExportToMEDX( const char* file,
|
|
|
|
CORBA::Boolean auto_groups,
|
|
|
|
SMESH::MED_VERSION version,
|
|
|
|
CORBA::Boolean overwrite ) throw (SALOME::SALOME_Exception);
|
|
|
|
void ExportToMED ( const char* file,
|
|
|
|
CORBA::Boolean auto_groups,
|
|
|
|
SMESH::MED_VERSION version ) throw (SALOME::SALOME_Exception);
|
|
|
|
void ExportMED ( const char* file,
|
|
|
|
CORBA::Boolean auto_groups ) throw (SALOME::SALOME_Exception);
|
|
|
|
|
|
|
|
void ExportSAUV( const char* file, CORBA::Boolean auto_groups ) throw (SALOME::SALOME_Exception);
|
|
|
|
|
|
|
|
void ExportDAT( const char* file ) throw (SALOME::SALOME_Exception);
|
|
|
|
void ExportUNV( const char* file ) throw (SALOME::SALOME_Exception);
|
|
|
|
void ExportSTL( const char* file, bool isascii ) throw (SALOME::SALOME_Exception);
|
|
|
|
void ExportCGNS(SMESH::SMESH_IDSource_ptr meshPart,
|
|
|
|
const char* file,
|
|
|
|
CORBA::Boolean overwrite) throw (SALOME::SALOME_Exception);
|
2012-10-08 17:56:59 +06:00
|
|
|
void ExportGMF(SMESH::SMESH_IDSource_ptr meshPart,
|
2012-12-13 17:41:29 +06:00
|
|
|
const char* file,
|
|
|
|
CORBA::Boolean withRequiredGroups) throw (SALOME::SALOME_Exception);
|
2012-08-09 16:03:55 +06:00
|
|
|
|
|
|
|
void ExportPartToMED(SMESH::SMESH_IDSource_ptr meshPart,
|
|
|
|
const char* file,
|
|
|
|
CORBA::Boolean auto_groups,
|
|
|
|
SMESH::MED_VERSION version,
|
|
|
|
CORBA::Boolean overwrite) throw (SALOME::SALOME_Exception);
|
|
|
|
void ExportPartToDAT(SMESH::SMESH_IDSource_ptr meshPart,
|
|
|
|
const char* file) throw (SALOME::SALOME_Exception);
|
|
|
|
void ExportPartToUNV(SMESH::SMESH_IDSource_ptr meshPart,
|
|
|
|
const char* file) throw (SALOME::SALOME_Exception);
|
|
|
|
void ExportPartToSTL(SMESH::SMESH_IDSource_ptr meshPart,
|
|
|
|
const char* file,
|
|
|
|
CORBA::Boolean isascii) throw (SALOME::SALOME_Exception);
|
2003-05-19 19:54:48 +06:00
|
|
|
|
|
|
|
SALOME_MED::MESH_ptr GetMEDMesh()
|
|
|
|
throw (SALOME::SALOME_Exception);
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2003-05-19 19:54:48 +06:00
|
|
|
CORBA::Long NbNodes()
|
|
|
|
throw (SALOME::SALOME_Exception);
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2005-01-20 11:25:54 +05:00
|
|
|
CORBA::Long NbElements()
|
|
|
|
throw (SALOME::SALOME_Exception);
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
CORBA::Long Nb0DElements()
|
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
|
|
|
CORBA::Long NbBalls()
|
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
2003-05-19 19:54:48 +06:00
|
|
|
CORBA::Long NbEdges()
|
|
|
|
throw (SALOME::SALOME_Exception);
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2006-05-06 14:51:48 +06:00
|
|
|
CORBA::Long NbEdgesOfOrder(SMESH::ElementOrder order)
|
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
2003-05-19 19:54:48 +06:00
|
|
|
CORBA::Long NbFaces()
|
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
2006-05-06 14:51:48 +06:00
|
|
|
CORBA::Long NbFacesOfOrder(SMESH::ElementOrder order)
|
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
2003-05-19 19:54:48 +06:00
|
|
|
CORBA::Long NbTriangles()
|
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
2006-05-06 14:51:48 +06:00
|
|
|
CORBA::Long NbTrianglesOfOrder(SMESH::ElementOrder order)
|
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
2013-05-16 22:49:03 +06:00
|
|
|
CORBA::Long NbBiQuadTriangles()
|
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
2003-05-19 19:54:48 +06:00
|
|
|
CORBA::Long NbQuadrangles()
|
|
|
|
throw (SALOME::SALOME_Exception);
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2006-05-06 14:51:48 +06:00
|
|
|
CORBA::Long NbQuadranglesOfOrder(SMESH::ElementOrder order)
|
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
CORBA::Long NbBiQuadQuadrangles()
|
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
CORBA::Long NbPolygons()
|
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
2003-05-19 19:54:48 +06:00
|
|
|
CORBA::Long NbVolumes()
|
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
2006-05-06 14:51:48 +06:00
|
|
|
CORBA::Long NbVolumesOfOrder(SMESH::ElementOrder order)
|
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
2003-05-19 19:54:48 +06:00
|
|
|
CORBA::Long NbTetras()
|
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
2006-05-06 14:51:48 +06:00
|
|
|
CORBA::Long NbTetrasOfOrder(SMESH::ElementOrder order)
|
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
2003-05-19 19:54:48 +06:00
|
|
|
CORBA::Long NbHexas()
|
|
|
|
throw (SALOME::SALOME_Exception);
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2006-05-06 14:51:48 +06:00
|
|
|
CORBA::Long NbHexasOfOrder(SMESH::ElementOrder order)
|
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
CORBA::Long NbTriQuadraticHexas()
|
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
CORBA::Long NbPyramids()
|
|
|
|
throw (SALOME::SALOME_Exception);
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2006-05-06 14:51:48 +06:00
|
|
|
CORBA::Long NbPyramidsOfOrder(SMESH::ElementOrder order)
|
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
CORBA::Long NbPrisms()
|
|
|
|
throw (SALOME::SALOME_Exception);
|
2005-06-07 19:22:20 +06:00
|
|
|
|
2006-05-06 14:51:48 +06:00
|
|
|
CORBA::Long NbPrismsOfOrder(SMESH::ElementOrder order)
|
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
CORBA::Long NbHexagonalPrisms()
|
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
CORBA::Long NbPolyhedrons()
|
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
2003-05-19 19:54:48 +06:00
|
|
|
CORBA::Long NbSubMesh()
|
|
|
|
throw (SALOME::SALOME_Exception);
|
2004-06-18 14:34:31 +06:00
|
|
|
|
2005-01-20 11:25:54 +05:00
|
|
|
SMESH::long_array* GetElementsId()
|
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
|
|
|
SMESH::long_array* GetElementsByType( SMESH::ElementType theElemType )
|
|
|
|
throw (SALOME::SALOME_Exception);
|
2012-08-09 16:03:55 +06:00
|
|
|
|
2005-01-20 11:25:54 +05:00
|
|
|
SMESH::long_array* GetNodesId()
|
|
|
|
throw (SALOME::SALOME_Exception);
|
2012-08-09 16:03:55 +06:00
|
|
|
|
2008-03-07 12:47:05 +05:00
|
|
|
SMESH::ElementType GetElementType( CORBA::Long id, bool iselem )
|
2005-08-23 14:38:33 +06:00
|
|
|
throw (SALOME::SALOME_Exception);
|
2012-08-09 16:03:55 +06:00
|
|
|
|
|
|
|
SMESH::EntityType GetElementGeomType( CORBA::Long id )
|
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
2006-05-06 14:51:48 +06:00
|
|
|
/*!
|
|
|
|
* Returns ID of elements for given submesh
|
|
|
|
*/
|
2008-03-07 12:47:05 +05:00
|
|
|
SMESH::long_array* GetSubMeshElementsId(CORBA::Long ShapeID)
|
2006-05-06 14:51:48 +06:00
|
|
|
throw (SALOME::SALOME_Exception);
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* Returns ID of nodes for given submesh
|
|
|
|
* If param all==true - returns all nodes, else -
|
|
|
|
* returns only nodes on shapes.
|
|
|
|
*/
|
2008-03-07 12:47:05 +05:00
|
|
|
SMESH::long_array* GetSubMeshNodesId(CORBA::Long ShapeID, CORBA::Boolean all)
|
2006-05-06 14:51:48 +06:00
|
|
|
throw (SALOME::SALOME_Exception);
|
2012-08-09 16:03:55 +06:00
|
|
|
|
2006-05-06 14:51:48 +06:00
|
|
|
/*!
|
|
|
|
* Returns type of elements for given submesh
|
|
|
|
*/
|
2008-03-07 12:47:05 +05:00
|
|
|
SMESH::ElementType GetSubMeshElementType(CORBA::Long ShapeID)
|
2006-05-06 14:51:48 +06:00
|
|
|
throw (SALOME::SALOME_Exception);
|
2012-08-09 16:03:55 +06:00
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
char* Dump();
|
2012-08-09 16:03:55 +06:00
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
// Internal methods not available through CORBA
|
|
|
|
// They are called by corresponding interface methods
|
2004-12-01 15:48:31 +05:00
|
|
|
SMESH_Hypothesis::Hypothesis_Status addHypothesis(GEOM::GEOM_Object_ptr aSubShapeObject,
|
2004-06-18 14:34:31 +06:00
|
|
|
SMESH::SMESH_Hypothesis_ptr anHyp);
|
|
|
|
|
2004-12-01 15:48:31 +05:00
|
|
|
SMESH_Hypothesis::Hypothesis_Status removeHypothesis(GEOM::GEOM_Object_ptr aSubShapeObject,
|
2004-06-18 14:34:31 +06:00
|
|
|
SMESH::SMESH_Hypothesis_ptr anHyp);
|
2012-08-09 16:03:55 +06:00
|
|
|
|
2008-03-07 12:47:05 +05:00
|
|
|
static SMESH::Hypothesis_Status
|
|
|
|
ConvertHypothesisStatus (SMESH_Hypothesis::Hypothesis_Status theStatus);
|
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
static void PrepareForWriting (const char* file, bool overwrite = true);
|
2009-02-17 10:27:49 +05:00
|
|
|
|
2008-03-07 12:47:05 +05:00
|
|
|
//int importMEDFile( const char* theFileName, const char* theMeshName );
|
2004-06-18 14:34:31 +06:00
|
|
|
|
2004-12-01 15:48:31 +05:00
|
|
|
SMESH::SMESH_subMesh_ptr createSubMesh( GEOM::GEOM_Object_ptr theSubShapeObject );
|
2004-06-18 14:34:31 +06:00
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
bool removeSubMesh(SMESH::SMESH_subMesh_ptr theSubMesh,
|
2004-12-01 15:48:31 +05:00
|
|
|
GEOM::GEOM_Object_ptr theSubShapeObject );
|
2004-06-18 14:34:31 +06:00
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
SMESH::SMESH_GroupBase_ptr createGroup(SMESH::ElementType theElemType,
|
|
|
|
const char* theName,
|
|
|
|
const TopoDS_Shape& theShape = TopoDS_Shape(),
|
|
|
|
const SMESH_PredicatePtr& thePred = SMESH_PredicatePtr());
|
2004-06-18 14:34:31 +06:00
|
|
|
|
|
|
|
void removeGroup( const int theId );
|
2003-05-19 19:54:48 +06:00
|
|
|
|
2004-12-01 15:48:31 +05:00
|
|
|
SMESH::SMESH_subMesh_ptr getSubMesh(int shapeID);
|
|
|
|
// return an existing subMesh object for the shapeID. shapeID == submeshID.
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
const std::map<int, SMESH::SMESH_GroupBase_ptr>& getGroups() { return _mapGroups; }
|
2004-12-01 15:48:31 +05:00
|
|
|
// return an existing group object.
|
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
void onHypothesisModified();
|
|
|
|
// callback from _impl to forget not loaded mesh data (issue 0021208)
|
|
|
|
|
|
|
|
void checkMeshLoaded();
|
|
|
|
|
2008-03-07 12:47:05 +05:00
|
|
|
/*!
|
|
|
|
* \brief Update hypotheses assigned to geom groups if the latter change
|
2012-08-09 16:03:55 +06:00
|
|
|
*
|
2008-03-07 12:47:05 +05:00
|
|
|
* NPAL16168: "geometrical group edition from a submesh don't modifiy mesh computation"
|
|
|
|
*/
|
|
|
|
void CheckGeomGroupModif();
|
|
|
|
|
|
|
|
CORBA::LongLong GetMeshPtr();
|
2006-03-13 20:29:49 +05:00
|
|
|
|
2008-03-07 12:47:05 +05:00
|
|
|
/*!
|
|
|
|
* \brief Assure that all groups are published
|
|
|
|
*/
|
|
|
|
void CreateGroupServants();
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* \brief Return groups cantained in _mapGroups by their IDs
|
|
|
|
*/
|
|
|
|
SMESH::ListOfGroups* GetGroups(const std::list<int>& groupIDs) const;
|
2006-05-06 14:51:48 +06:00
|
|
|
|
|
|
|
/*!
|
|
|
|
* Get XYZ coordinates of node as list of double
|
|
|
|
* If there is not node for given ID - returns empty list
|
|
|
|
*/
|
2008-03-07 12:47:05 +05:00
|
|
|
SMESH::double_array* GetNodeXYZ(CORBA::Long id);
|
2012-08-09 16:03:55 +06:00
|
|
|
|
2006-05-06 14:51:48 +06:00
|
|
|
/*!
|
|
|
|
* For given node returns list of IDs of inverse elements
|
|
|
|
* If there is not node for given ID - returns empty list
|
|
|
|
*/
|
2008-03-07 12:47:05 +05:00
|
|
|
SMESH::long_array* GetNodeInverseElements(CORBA::Long id);
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* \brief Return position of a node on shape
|
|
|
|
*/
|
|
|
|
SMESH::NodePosition* GetNodePosition(CORBA::Long NodeID);
|
2006-05-06 14:51:48 +06:00
|
|
|
|
2013-02-12 20:37:44 +06:00
|
|
|
/*!
|
|
|
|
* \brief Return position of an element on shape
|
|
|
|
*/
|
|
|
|
SMESH::ElementPosition GetElementPosition(CORBA::Long ElemID);
|
|
|
|
|
2006-05-06 14:51:48 +06:00
|
|
|
/*!
|
|
|
|
* If given element is node returns IDs of shape from position
|
2008-03-07 12:47:05 +05:00
|
|
|
* If there is not node for given ID - returns -1
|
|
|
|
*/
|
|
|
|
CORBA::Long GetShapeID(CORBA::Long id);
|
|
|
|
|
|
|
|
/*!
|
2012-08-09 16:03:55 +06:00
|
|
|
* For given element returns ID of result shape after
|
2008-03-07 12:47:05 +05:00
|
|
|
* ::FindShape() from SMESH_MeshEditor
|
2006-05-06 14:51:48 +06:00
|
|
|
* If there is not element for given ID - returns -1
|
|
|
|
*/
|
2008-03-07 12:47:05 +05:00
|
|
|
CORBA::Long GetShapeIDForElem(CORBA::Long id);
|
2006-05-06 14:51:48 +06:00
|
|
|
|
|
|
|
/*!
|
|
|
|
* Returns number of nodes for given element
|
|
|
|
* If there is not element for given ID - returns -1
|
|
|
|
*/
|
2008-03-07 12:47:05 +05:00
|
|
|
CORBA::Long GetElemNbNodes(CORBA::Long id);
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* Returns IDs of nodes of given element
|
|
|
|
*/
|
|
|
|
SMESH::long_array* GetElemNodes(CORBA::Long id);
|
2006-05-06 14:51:48 +06:00
|
|
|
|
|
|
|
/*!
|
|
|
|
* Returns ID of node by given index for given element
|
|
|
|
* If there is not element for given ID - returns -1
|
|
|
|
* If there is not node for given index - returns -2
|
|
|
|
*/
|
2008-03-07 12:47:05 +05:00
|
|
|
CORBA::Long GetElemNode(CORBA::Long id, CORBA::Long index);
|
2012-08-09 16:03:55 +06:00
|
|
|
|
2006-05-06 14:51:48 +06:00
|
|
|
/*!
|
|
|
|
* Returns true if given node is medium node
|
|
|
|
* in given quadratic element
|
|
|
|
*/
|
2008-03-07 12:47:05 +05:00
|
|
|
CORBA::Boolean IsMediumNode(CORBA::Long ide, CORBA::Long idn);
|
2012-08-09 16:03:55 +06:00
|
|
|
|
2006-05-06 14:51:48 +06:00
|
|
|
/*!
|
|
|
|
* Returns true if given node is medium node
|
|
|
|
* in one of quadratic elements
|
|
|
|
*/
|
2008-03-07 12:47:05 +05:00
|
|
|
CORBA::Boolean IsMediumNodeOfAnyElem(CORBA::Long idn,
|
2006-05-06 14:51:48 +06:00
|
|
|
SMESH::ElementType theElemType);
|
2012-08-09 16:03:55 +06:00
|
|
|
|
2006-05-06 14:51:48 +06:00
|
|
|
/*!
|
|
|
|
* Returns number of edges for given element
|
|
|
|
*/
|
2008-03-07 12:47:05 +05:00
|
|
|
CORBA::Long ElemNbEdges(CORBA::Long id);
|
2012-08-09 16:03:55 +06:00
|
|
|
|
2006-05-06 14:51:48 +06:00
|
|
|
/*!
|
|
|
|
* Returns number of faces for given element
|
|
|
|
*/
|
2008-03-07 12:47:05 +05:00
|
|
|
CORBA::Long ElemNbFaces(CORBA::Long id);
|
2012-08-09 16:03:55 +06:00
|
|
|
/*!
|
|
|
|
* Returns nodes of given face (counted from zero) for given element.
|
|
|
|
*/
|
|
|
|
SMESH::long_array* GetElemFaceNodes(CORBA::Long elemId, CORBA::Short faceIndex);
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* Returns an element based on all given nodes.
|
|
|
|
*/
|
|
|
|
CORBA::Long FindElementByNodes(const SMESH::long_array& nodes);
|
|
|
|
|
2006-05-06 14:51:48 +06:00
|
|
|
/*!
|
|
|
|
* Returns true if given element is polygon
|
|
|
|
*/
|
2008-03-07 12:47:05 +05:00
|
|
|
CORBA::Boolean IsPoly(CORBA::Long id);
|
2012-08-09 16:03:55 +06:00
|
|
|
|
2006-05-06 14:51:48 +06:00
|
|
|
/*!
|
|
|
|
* Returns true if given element is quadratic
|
|
|
|
*/
|
2008-03-07 12:47:05 +05:00
|
|
|
CORBA::Boolean IsQuadratic(CORBA::Long id);
|
2012-08-09 16:03:55 +06:00
|
|
|
|
|
|
|
/*!
|
|
|
|
* Returns diameter of ball discrete element or zero in case of an invalid \a id
|
|
|
|
*/
|
|
|
|
CORBA::Double GetBallDiameter(CORBA::Long id);
|
|
|
|
|
2006-05-06 14:51:48 +06:00
|
|
|
/*!
|
|
|
|
* Returns bary center for given element
|
|
|
|
*/
|
2008-03-07 12:47:05 +05:00
|
|
|
SMESH::double_array* BaryCenter(CORBA::Long id);
|
2006-05-06 14:51:48 +06:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
/*!
|
|
|
|
* Returns information about imported MED file
|
|
|
|
*/
|
|
|
|
virtual SALOME_MED::MedFileInfo* GetMEDFileInfo();
|
2006-05-06 14:51:48 +06:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
/*!
|
|
|
|
* Sets list of notebook variables used for Mesh operations separated by ":" symbol
|
|
|
|
*/
|
|
|
|
void SetParameters (const char* theParameters);
|
2012-08-09 16:03:55 +06:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
/*!
|
|
|
|
* Returns list of notebook variables used for Mesh operations separated by ":" symbol
|
|
|
|
*/
|
|
|
|
char* GetParameters();
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* Returns list of notebook variables used for last Mesh operation
|
|
|
|
*/
|
|
|
|
SMESH::string_array* GetLastParameters();
|
2012-08-09 16:03:55 +06:00
|
|
|
|
|
|
|
/*!
|
|
|
|
* Collect statistic of mesh elements given by iterator
|
|
|
|
*/
|
|
|
|
static void CollectMeshInfo(const SMDS_ElemIteratorPtr theItr,
|
|
|
|
SMESH::long_array& theInfo);
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* \brief Return submesh objects list in meshing order
|
|
|
|
*/
|
|
|
|
virtual SMESH::submesh_array_array* GetMeshOrder();
|
|
|
|
/*!
|
|
|
|
* \brief Set submesh object order
|
|
|
|
*/
|
|
|
|
virtual ::CORBA::Boolean SetMeshOrder(const SMESH::submesh_array_array& theSubMeshArray);
|
|
|
|
|
|
|
|
|
|
|
|
// =========================
|
|
|
|
// SMESH_IDSource interface
|
|
|
|
// =========================
|
|
|
|
|
|
|
|
virtual SMESH::long_array* GetIDs();
|
|
|
|
/*!
|
|
|
|
* Returns statistic of mesh elements
|
|
|
|
* Result array of number enityties
|
|
|
|
* Inherited from SMESH_IDSource
|
|
|
|
*/
|
|
|
|
virtual SMESH::long_array* GetMeshInfo();
|
|
|
|
/*!
|
|
|
|
* Returns types of elements it contains
|
|
|
|
*/
|
|
|
|
virtual SMESH::array_of_ElementType* GetTypes();
|
|
|
|
/*!
|
|
|
|
* Returns self
|
|
|
|
*/
|
|
|
|
virtual SMESH::SMESH_Mesh_ptr GetMesh();
|
|
|
|
/*!
|
|
|
|
* Returns false if GetMeshInfo() returns incorrect information that may
|
|
|
|
* happen if mesh data is not yet fully loaded from the file of study.
|
|
|
|
*/
|
|
|
|
bool IsMeshInfoCorrect();
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
std::map<int, SMESH_subMesh_i*> _mapSubMesh_i; //NRI
|
|
|
|
std::map<int, ::SMESH_subMesh*> _mapSubMesh; //NRI
|
|
|
|
|
|
|
|
private:
|
2012-08-09 16:03:55 +06:00
|
|
|
std::string prepareMeshNameAndGroups( const char* file, CORBA::Boolean overwrite );
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
/*!
|
|
|
|
* Check and correct names of mesh groups
|
|
|
|
*/
|
|
|
|
void checkGroupNames();
|
2003-05-19 19:54:48 +06:00
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
/*!
|
|
|
|
* Convert submesh ids into submesh interfaces
|
|
|
|
*/
|
|
|
|
void convertMeshOrder(const TListOfListOfInt& theIdsOrder,
|
|
|
|
SMESH::submesh_array_array& theSubMeshOrder,
|
|
|
|
const bool theIsDump);
|
|
|
|
|
2003-05-19 19:54:48 +06:00
|
|
|
private:
|
2006-05-06 14:51:48 +06:00
|
|
|
|
2012-08-09 16:03:55 +06:00
|
|
|
static int _idGenerator;
|
|
|
|
::SMESH_Mesh* _impl; // :: force no namespace here
|
|
|
|
SMESH_Gen_i* _gen_i;
|
|
|
|
int _id; // id given by creator (unique within the creator instance)
|
|
|
|
int _studyId;
|
2009-02-17 10:27:49 +05:00
|
|
|
std::map<int, SMESH::SMESH_subMesh_ptr> _mapSubMeshIor;
|
|
|
|
std::map<int, SMESH::SMESH_GroupBase_ptr> _mapGroups;
|
|
|
|
std::map<int, SMESH::SMESH_Hypothesis_ptr> _mapHypo;
|
2012-08-09 16:03:55 +06:00
|
|
|
SALOME_MED::MedFileInfo_var _medFileInfo;
|
|
|
|
SMESH_PreMeshInfo* _preMeshInfo; // mesh info before full loading from study file
|
|
|
|
|
|
|
|
SMESH_PreMeshInfo* & changePreMeshInfo() { return _preMeshInfo; }
|
|
|
|
friend class SMESH_PreMeshInfo;
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
// Data used to track changes of GEOM groups
|
|
|
|
struct TGeomGroupData {
|
|
|
|
// keep study entry but not ior because GEOM_Object actually changes if
|
|
|
|
// number of items in a group varies (1) <-> (>1)
|
|
|
|
std::string _groupEntry;
|
|
|
|
std::set<int> _indices; // indices of group items within group's main shape
|
|
|
|
CORBA::Object_ptr _smeshObject; // SMESH object depending on GEOM group
|
|
|
|
};
|
|
|
|
std::list<TGeomGroupData> _geomGroupData;
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* Remember GEOM group data
|
|
|
|
*/
|
|
|
|
void addGeomGroupData(GEOM::GEOM_Object_ptr theGeomObj,
|
|
|
|
CORBA::Object_ptr theSmeshObj);
|
|
|
|
/*!
|
|
|
|
* Remove GEOM group data relating to removed smesh object
|
|
|
|
*/
|
|
|
|
void removeGeomGroupData(CORBA::Object_ptr theSmeshObj);
|
|
|
|
/*!
|
|
|
|
* \brief Return new group contents if it has been changed and update group data
|
|
|
|
*/
|
|
|
|
TopoDS_Shape newGroupShape( TGeomGroupData & groupData);
|
|
|
|
|
2003-05-19 19:54:48 +06:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|