2003-07-10 16:13:42 +06:00
|
|
|
// SMESH SMESHDS : management of mesh data and SMESH document
|
|
|
|
//
|
|
|
|
// Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
|
|
|
|
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
// 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
|
|
|
|
//
|
|
|
|
// See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// File : SMESH_Mesh.cxx
|
|
|
|
// Author : Yves FRICAUD, OCC
|
|
|
|
// Module : SMESH
|
|
|
|
// $Header:
|
2003-05-19 19:25:06 +06:00
|
|
|
|
2003-09-04 13:14:51 +06:00
|
|
|
#include "SMESHDS_Mesh.hxx"
|
2004-12-01 15:48:31 +05:00
|
|
|
|
|
|
|
#include "SMESHDS_Group.hxx"
|
2003-05-19 19:25:06 +06:00
|
|
|
#include "SMDS_VertexPosition.hxx"
|
|
|
|
#include "SMDS_EdgePosition.hxx"
|
|
|
|
#include "SMDS_FacePosition.hxx"
|
2005-01-26 13:42:27 +05:00
|
|
|
#include "SMESHDS_GroupOnGeom.hxx"
|
2003-05-19 19:25:06 +06:00
|
|
|
#include <TopExp_Explorer.hxx>
|
|
|
|
#include <TopExp.hxx>
|
2004-12-01 15:48:31 +05:00
|
|
|
#include <TopoDS_Iterator.hxx>
|
2003-05-19 19:25:06 +06:00
|
|
|
|
|
|
|
#include "utilities.h"
|
2004-12-01 15:48:31 +05:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
2003-05-19 19:25:06 +06:00
|
|
|
//=======================================================================
|
|
|
|
//function : Create
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
2006-03-13 20:29:49 +05:00
|
|
|
SMESHDS_Mesh::SMESHDS_Mesh(int theMeshID, bool theIsEmbeddedMode):
|
2006-05-06 14:51:48 +06:00
|
|
|
myMeshID(theMeshID),
|
2006-03-13 20:29:49 +05:00
|
|
|
myIsEmbeddedMode(theIsEmbeddedMode),
|
2006-05-06 14:51:48 +06:00
|
|
|
myCurSubID(-1)
|
2003-05-19 19:25:06 +06:00
|
|
|
{
|
2006-03-13 20:29:49 +05:00
|
|
|
myScript = new SMESHDS_Script(theIsEmbeddedMode);
|
2006-05-06 14:51:48 +06:00
|
|
|
myCurSubMesh = 0;
|
2006-03-13 20:29:49 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
bool SMESHDS_Mesh::IsEmbeddedMode()
|
|
|
|
{
|
|
|
|
return myIsEmbeddedMode;
|
2003-05-19 19:25:06 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : ShapeToMesh
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
2003-09-04 13:14:51 +06:00
|
|
|
void SMESHDS_Mesh::ShapeToMesh(const TopoDS_Shape & S)
|
2003-05-19 19:25:06 +06:00
|
|
|
{
|
2005-01-26 13:42:27 +05:00
|
|
|
if ( !myShape.IsNull() && S.IsNull() )
|
|
|
|
{
|
|
|
|
// removal of a shape to mesh, delete ...
|
|
|
|
// - hypotheses
|
|
|
|
myShapeToHypothesis.clear();
|
|
|
|
// - shape indices in SMDS_Position of nodes
|
|
|
|
map<int,SMESHDS_SubMesh*>::iterator i_sub = myShapeIndexToSubMesh.begin();
|
|
|
|
for ( ; i_sub != myShapeIndexToSubMesh.end(); i_sub++ ) {
|
|
|
|
if ( !i_sub->second->IsComplexSubmesh() ) {
|
|
|
|
SMDS_NodeIteratorPtr nIt = i_sub->second->GetNodes();
|
|
|
|
while ( nIt->more() )
|
|
|
|
nIt->next()->GetPosition()->SetShapeId( 0 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// - sub-meshes
|
|
|
|
myIndexToShape.Clear();
|
|
|
|
myShapeIndexToSubMesh.clear();
|
|
|
|
// - groups on geometry
|
|
|
|
set<SMESHDS_GroupBase*>::iterator gr = myGroups.begin();
|
|
|
|
while ( gr != myGroups.end() ) {
|
|
|
|
if ( dynamic_cast<SMESHDS_GroupOnGeom*>( *gr ))
|
|
|
|
myGroups.erase( gr++ );
|
|
|
|
else
|
|
|
|
gr++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
myShape = S;
|
|
|
|
if ( !S.IsNull() )
|
|
|
|
TopExp::MapShapes(myShape, myIndexToShape);
|
|
|
|
}
|
2003-05-19 19:25:06 +06:00
|
|
|
}
|
2003-09-04 13:14:51 +06:00
|
|
|
|
2003-05-19 19:25:06 +06:00
|
|
|
//=======================================================================
|
|
|
|
//function : AddHypothesis
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
|
|
|
|
2003-09-04 13:14:51 +06:00
|
|
|
bool SMESHDS_Mesh::AddHypothesis(const TopoDS_Shape & SS,
|
|
|
|
const SMESHDS_Hypothesis * H)
|
2003-05-19 19:25:06 +06:00
|
|
|
{
|
2003-09-04 13:14:51 +06:00
|
|
|
list<const SMESHDS_Hypothesis *>& alist=myShapeToHypothesis[SS];
|
|
|
|
|
|
|
|
//Check if the Hypothesis is still present
|
|
|
|
list<const SMESHDS_Hypothesis*>::iterator ith=alist.begin();
|
|
|
|
|
|
|
|
for (; ith!=alist.end(); ith++)
|
|
|
|
if (H == *ith) return false;
|
2003-05-19 19:25:06 +06:00
|
|
|
|
2003-09-04 13:14:51 +06:00
|
|
|
alist.push_back(H);
|
|
|
|
return true;
|
2003-05-19 19:25:06 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : RemoveHypothesis
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
|
|
|
|
2003-09-04 13:14:51 +06:00
|
|
|
bool SMESHDS_Mesh::RemoveHypothesis(const TopoDS_Shape & S,
|
|
|
|
const SMESHDS_Hypothesis * H)
|
2003-05-19 19:25:06 +06:00
|
|
|
{
|
2003-09-04 13:14:51 +06:00
|
|
|
ShapeToHypothesis::iterator its=myShapeToHypothesis.find(S);
|
|
|
|
if(its!=myShapeToHypothesis.end())
|
|
|
|
{
|
|
|
|
list<const SMESHDS_Hypothesis*>::iterator ith=(*its).second.begin();
|
|
|
|
|
|
|
|
for (; ith!=(*its).second.end(); ith++)
|
|
|
|
if (H == *ith)
|
|
|
|
{
|
|
|
|
(*its).second.erase(ith);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
2003-05-19 19:25:06 +06:00
|
|
|
}
|
2003-09-04 13:14:51 +06:00
|
|
|
|
2003-05-19 19:25:06 +06:00
|
|
|
//=======================================================================
|
|
|
|
//function : AddNode
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
2004-06-18 14:34:31 +06:00
|
|
|
SMDS_MeshNode* SMESHDS_Mesh::AddNode(double x, double y, double z){
|
|
|
|
SMDS_MeshNode* node = SMDS_Mesh::AddNode(x, y, z);
|
|
|
|
if(node!=NULL) myScript->AddNode(node->GetID(), x, y, z);
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
|
|
|
SMDS_MeshNode* SMESHDS_Mesh::AddNodeWithID(double x, double y, double z, int ID){
|
|
|
|
SMDS_MeshNode* node = SMDS_Mesh::AddNodeWithID(x,y,z,ID);
|
|
|
|
if(node!=NULL) myScript->AddNode(node->GetID(), x, y, z);
|
|
|
|
return node;
|
2003-05-19 19:25:06 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : MoveNode
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
2003-09-05 16:31:32 +06:00
|
|
|
void SMESHDS_Mesh::MoveNode(const SMDS_MeshNode *n, double x, double y, double z)
|
2003-05-19 19:25:06 +06:00
|
|
|
{
|
2004-06-18 14:34:31 +06:00
|
|
|
SMDS_MeshNode * node=const_cast<SMDS_MeshNode*>(n);
|
|
|
|
node->setXYZ(x,y,z);
|
|
|
|
myScript->MoveNode(n->GetID(), x, y, z);
|
2003-05-19 19:25:06 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
2004-12-01 15:48:31 +05:00
|
|
|
//function : ChangeElementNodes
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
|
|
|
|
|
|
|
bool SMESHDS_Mesh::ChangeElementNodes(const SMDS_MeshElement * elem,
|
|
|
|
const SMDS_MeshNode * nodes[],
|
|
|
|
const int nbnodes)
|
|
|
|
{
|
|
|
|
if ( ! SMDS_Mesh::ChangeElementNodes( elem, nodes, nbnodes ))
|
|
|
|
return false;
|
|
|
|
|
2005-09-07 10:50:08 +06:00
|
|
|
vector<int> IDs( nbnodes );
|
|
|
|
for ( int i = 0; i < nbnodes; i++ )
|
2004-12-01 15:48:31 +05:00
|
|
|
IDs [ i ] = nodes[ i ]->GetID();
|
2005-09-07 10:50:08 +06:00
|
|
|
myScript->ChangeElementNodes( elem->GetID(), &IDs[0], nbnodes);
|
2005-08-30 18:57:02 +06:00
|
|
|
|
2004-12-01 15:48:31 +05:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2005-06-07 19:22:20 +06:00
|
|
|
//=======================================================================
|
|
|
|
//function : ChangePolygonNodes
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
|
|
|
bool SMESHDS_Mesh::ChangePolygonNodes
|
2005-09-07 10:50:08 +06:00
|
|
|
(const SMDS_MeshElement * elem,
|
|
|
|
vector<const SMDS_MeshNode*> nodes)
|
2005-06-07 19:22:20 +06:00
|
|
|
{
|
|
|
|
ASSERT(nodes.size() > 3);
|
|
|
|
|
2005-09-07 10:50:08 +06:00
|
|
|
return ChangeElementNodes(elem, &nodes[0], nodes.size());
|
2005-06-07 19:22:20 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : ChangePolyhedronNodes
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
|
|
|
bool SMESHDS_Mesh::ChangePolyhedronNodes
|
|
|
|
(const SMDS_MeshElement * elem,
|
|
|
|
std::vector<const SMDS_MeshNode*> nodes,
|
|
|
|
std::vector<int> quantities)
|
|
|
|
{
|
|
|
|
ASSERT(nodes.size() > 3);
|
|
|
|
|
|
|
|
if (!SMDS_Mesh::ChangePolyhedronNodes(elem, nodes, quantities))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
int i, len = nodes.size();
|
|
|
|
std::vector<int> nodes_ids (len);
|
|
|
|
for (i = 0; i < len; i++) {
|
|
|
|
nodes_ids[i] = nodes[i]->GetID();
|
|
|
|
}
|
|
|
|
myScript->ChangePolyhedronNodes(elem->GetID(), nodes_ids, quantities);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2004-12-01 15:48:31 +05:00
|
|
|
//=======================================================================
|
|
|
|
//function : Renumber
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
|
|
|
|
|
|
|
void SMESHDS_Mesh::Renumber (const bool isNodes, const int startID, const int deltaID)
|
|
|
|
{
|
|
|
|
SMDS_Mesh::Renumber( isNodes, startID, deltaID );
|
|
|
|
myScript->Renumber( isNodes, startID, deltaID );
|
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function :AddEdgeWithID
|
2003-05-19 19:25:06 +06:00
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
2004-06-18 14:34:31 +06:00
|
|
|
SMDS_MeshEdge* SMESHDS_Mesh::AddEdgeWithID(int n1, int n2, int ID)
|
|
|
|
{
|
|
|
|
SMDS_MeshEdge* anElem = SMDS_Mesh::AddEdgeWithID(n1,n2,ID);
|
|
|
|
if(anElem) myScript->AddEdge(ID,n1,n2);
|
|
|
|
return anElem;
|
|
|
|
}
|
|
|
|
|
|
|
|
SMDS_MeshEdge* SMESHDS_Mesh::AddEdgeWithID(const SMDS_MeshNode * n1,
|
|
|
|
const SMDS_MeshNode * n2,
|
|
|
|
int ID)
|
|
|
|
{
|
|
|
|
return AddEdgeWithID(n1->GetID(),
|
|
|
|
n2->GetID(),
|
|
|
|
ID);
|
|
|
|
}
|
|
|
|
|
2003-09-05 16:31:32 +06:00
|
|
|
SMDS_MeshEdge* SMESHDS_Mesh::AddEdge(const SMDS_MeshNode * n1,
|
2004-06-18 14:34:31 +06:00
|
|
|
const SMDS_MeshNode * n2)
|
2003-05-19 19:25:06 +06:00
|
|
|
{
|
2004-06-18 14:34:31 +06:00
|
|
|
SMDS_MeshEdge* anElem = SMDS_Mesh::AddEdge(n1,n2);
|
|
|
|
if(anElem) myScript->AddEdge(anElem->GetID(),
|
|
|
|
n1->GetID(),
|
|
|
|
n2->GetID());
|
|
|
|
return anElem;
|
2003-05-19 19:25:06 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function :AddFace
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
2004-06-18 14:34:31 +06:00
|
|
|
SMDS_MeshFace* SMESHDS_Mesh::AddFaceWithID(int n1, int n2, int n3, int ID)
|
|
|
|
{
|
|
|
|
SMDS_MeshFace *anElem = SMDS_Mesh::AddFaceWithID(n1, n2, n3, ID);
|
|
|
|
if(anElem) myScript->AddFace(ID,n1,n2,n3);
|
|
|
|
return anElem;
|
|
|
|
}
|
|
|
|
|
|
|
|
SMDS_MeshFace* SMESHDS_Mesh::AddFaceWithID(const SMDS_MeshNode * n1,
|
|
|
|
const SMDS_MeshNode * n2,
|
|
|
|
const SMDS_MeshNode * n3,
|
|
|
|
int ID)
|
|
|
|
{
|
|
|
|
return AddFaceWithID(n1->GetID(),
|
|
|
|
n2->GetID(),
|
|
|
|
n3->GetID(),
|
|
|
|
ID);
|
|
|
|
}
|
|
|
|
|
2003-09-05 16:31:32 +06:00
|
|
|
SMDS_MeshFace* SMESHDS_Mesh::AddFace( const SMDS_MeshNode * n1,
|
2004-06-18 14:34:31 +06:00
|
|
|
const SMDS_MeshNode * n2,
|
|
|
|
const SMDS_MeshNode * n3)
|
2003-05-19 19:25:06 +06:00
|
|
|
{
|
2004-06-18 14:34:31 +06:00
|
|
|
SMDS_MeshFace *anElem = SMDS_Mesh::AddFace(n1, n2, n3);
|
|
|
|
if(anElem) myScript->AddFace(anElem->GetID(),
|
|
|
|
n1->GetID(),
|
|
|
|
n2->GetID(),
|
|
|
|
n3->GetID());
|
|
|
|
return anElem;
|
2003-05-19 19:25:06 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function :AddFace
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
2004-06-18 14:34:31 +06:00
|
|
|
SMDS_MeshFace* SMESHDS_Mesh::AddFaceWithID(int n1, int n2, int n3, int n4, int ID)
|
|
|
|
{
|
|
|
|
SMDS_MeshFace *anElem = SMDS_Mesh::AddFaceWithID(n1, n2, n3, n4, ID);
|
|
|
|
if(anElem) myScript->AddFace(ID, n1, n2, n3, n4);
|
|
|
|
return anElem;
|
|
|
|
}
|
|
|
|
|
|
|
|
SMDS_MeshFace* SMESHDS_Mesh::AddFaceWithID(const SMDS_MeshNode * n1,
|
|
|
|
const SMDS_MeshNode * n2,
|
|
|
|
const SMDS_MeshNode * n3,
|
|
|
|
const SMDS_MeshNode * n4,
|
|
|
|
int ID)
|
|
|
|
{
|
|
|
|
return AddFaceWithID(n1->GetID(),
|
|
|
|
n2->GetID(),
|
|
|
|
n3->GetID(),
|
|
|
|
n4->GetID(),
|
|
|
|
ID);
|
|
|
|
}
|
|
|
|
|
2003-09-05 16:31:32 +06:00
|
|
|
SMDS_MeshFace* SMESHDS_Mesh::AddFace(const SMDS_MeshNode * n1,
|
2004-06-18 14:34:31 +06:00
|
|
|
const SMDS_MeshNode * n2,
|
|
|
|
const SMDS_MeshNode * n3,
|
|
|
|
const SMDS_MeshNode * n4)
|
2003-05-19 19:25:06 +06:00
|
|
|
{
|
2004-06-18 14:34:31 +06:00
|
|
|
SMDS_MeshFace *anElem = SMDS_Mesh::AddFace(n1, n2, n3, n4);
|
|
|
|
if(anElem) myScript->AddFace(anElem->GetID(),
|
|
|
|
n1->GetID(),
|
|
|
|
n2->GetID(),
|
|
|
|
n3->GetID(),
|
|
|
|
n4->GetID());
|
|
|
|
return anElem;
|
2003-05-19 19:25:06 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function :AddVolume
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
2004-06-18 14:34:31 +06:00
|
|
|
SMDS_MeshVolume* SMESHDS_Mesh::AddVolumeWithID(int n1, int n2, int n3, int n4, int ID)
|
|
|
|
{
|
|
|
|
SMDS_MeshVolume *anElem = SMDS_Mesh::AddVolumeWithID(n1, n2, n3, n4, ID);
|
|
|
|
if(anElem) myScript->AddVolume(ID, n1, n2, n3, n4);
|
|
|
|
return anElem;
|
|
|
|
}
|
|
|
|
|
|
|
|
SMDS_MeshVolume* SMESHDS_Mesh::AddVolumeWithID(const SMDS_MeshNode * n1,
|
|
|
|
const SMDS_MeshNode * n2,
|
|
|
|
const SMDS_MeshNode * n3,
|
|
|
|
const SMDS_MeshNode * n4,
|
|
|
|
int ID)
|
|
|
|
{
|
|
|
|
return AddVolumeWithID(n1->GetID(),
|
|
|
|
n2->GetID(),
|
|
|
|
n3->GetID(),
|
|
|
|
n4->GetID(),
|
|
|
|
ID);
|
|
|
|
}
|
|
|
|
|
|
|
|
SMDS_MeshVolume* SMESHDS_Mesh::AddVolume(const SMDS_MeshNode * n1,
|
|
|
|
const SMDS_MeshNode * n2,
|
|
|
|
const SMDS_MeshNode * n3,
|
|
|
|
const SMDS_MeshNode * n4)
|
2003-05-19 19:25:06 +06:00
|
|
|
{
|
2004-06-18 14:34:31 +06:00
|
|
|
SMDS_MeshVolume *anElem = SMDS_Mesh::AddVolume(n1, n2, n3, n4);
|
|
|
|
if(anElem) myScript->AddVolume(anElem->GetID(),
|
|
|
|
n1->GetID(),
|
|
|
|
n2->GetID(),
|
|
|
|
n3->GetID(),
|
|
|
|
n4->GetID());
|
|
|
|
return anElem;
|
2003-05-19 19:25:06 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function :AddVolume
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
2004-06-18 14:34:31 +06:00
|
|
|
SMDS_MeshVolume* SMESHDS_Mesh::AddVolumeWithID(int n1, int n2, int n3, int n4, int n5, int ID)
|
|
|
|
{
|
|
|
|
SMDS_MeshVolume *anElem = SMDS_Mesh::AddVolumeWithID(n1, n2, n3, n4, n5, ID);
|
|
|
|
if(anElem) myScript->AddVolume(ID, n1, n2, n3, n4, n5);
|
|
|
|
return anElem;
|
|
|
|
}
|
|
|
|
|
|
|
|
SMDS_MeshVolume* SMESHDS_Mesh::AddVolumeWithID(const SMDS_MeshNode * n1,
|
|
|
|
const SMDS_MeshNode * n2,
|
|
|
|
const SMDS_MeshNode * n3,
|
|
|
|
const SMDS_MeshNode * n4,
|
|
|
|
const SMDS_MeshNode * n5,
|
|
|
|
int ID)
|
|
|
|
{
|
|
|
|
return AddVolumeWithID(n1->GetID(),
|
|
|
|
n2->GetID(),
|
|
|
|
n3->GetID(),
|
|
|
|
n4->GetID(),
|
|
|
|
n5->GetID(),
|
|
|
|
ID);
|
|
|
|
}
|
|
|
|
|
|
|
|
SMDS_MeshVolume* SMESHDS_Mesh::AddVolume(const SMDS_MeshNode * n1,
|
|
|
|
const SMDS_MeshNode * n2,
|
|
|
|
const SMDS_MeshNode * n3,
|
|
|
|
const SMDS_MeshNode * n4,
|
|
|
|
const SMDS_MeshNode * n5)
|
2003-05-19 19:25:06 +06:00
|
|
|
{
|
2004-06-18 14:34:31 +06:00
|
|
|
SMDS_MeshVolume *anElem = SMDS_Mesh::AddVolume(n1, n2, n3, n4, n5);
|
|
|
|
if(anElem) myScript->AddVolume(anElem->GetID(),
|
|
|
|
n1->GetID(),
|
|
|
|
n2->GetID(),
|
|
|
|
n3->GetID(),
|
|
|
|
n4->GetID(),
|
|
|
|
n5->GetID());
|
|
|
|
return anElem;
|
2003-05-19 19:25:06 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function :AddVolume
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
2004-06-18 14:34:31 +06:00
|
|
|
SMDS_MeshVolume* SMESHDS_Mesh::AddVolumeWithID(int n1, int n2, int n3, int n4, int n5, int n6, int ID)
|
2003-05-19 19:25:06 +06:00
|
|
|
{
|
2004-06-18 14:34:31 +06:00
|
|
|
SMDS_MeshVolume *anElem= SMDS_Mesh::AddVolumeWithID(n1, n2, n3, n4, n5, n6, ID);
|
|
|
|
if(anElem) myScript->AddVolume(ID, n1, n2, n3, n4, n5, n6);
|
|
|
|
return anElem;
|
|
|
|
}
|
|
|
|
|
|
|
|
SMDS_MeshVolume* SMESHDS_Mesh::AddVolumeWithID(const SMDS_MeshNode * n1,
|
|
|
|
const SMDS_MeshNode * n2,
|
|
|
|
const SMDS_MeshNode * n3,
|
|
|
|
const SMDS_MeshNode * n4,
|
|
|
|
const SMDS_MeshNode * n5,
|
|
|
|
const SMDS_MeshNode * n6,
|
|
|
|
int ID)
|
|
|
|
{
|
|
|
|
return AddVolumeWithID(n1->GetID(),
|
|
|
|
n2->GetID(),
|
|
|
|
n3->GetID(),
|
|
|
|
n4->GetID(),
|
|
|
|
n5->GetID(),
|
|
|
|
n6->GetID(),
|
|
|
|
ID);
|
|
|
|
}
|
|
|
|
|
|
|
|
SMDS_MeshVolume* SMESHDS_Mesh::AddVolume(const SMDS_MeshNode * n1,
|
|
|
|
const SMDS_MeshNode * n2,
|
|
|
|
const SMDS_MeshNode * n3,
|
|
|
|
const SMDS_MeshNode * n4,
|
|
|
|
const SMDS_MeshNode * n5,
|
|
|
|
const SMDS_MeshNode * n6)
|
|
|
|
{
|
|
|
|
SMDS_MeshVolume *anElem = SMDS_Mesh::AddVolume(n1, n2, n3, n4, n5, n6);
|
|
|
|
if(anElem) myScript->AddVolume(anElem->GetID(),
|
|
|
|
n1->GetID(),
|
|
|
|
n2->GetID(),
|
|
|
|
n3->GetID(),
|
|
|
|
n4->GetID(),
|
|
|
|
n5->GetID(),
|
|
|
|
n6->GetID());
|
|
|
|
return anElem;
|
2003-05-19 19:25:06 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function :AddVolume
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
2004-06-18 14:34:31 +06:00
|
|
|
SMDS_MeshVolume* SMESHDS_Mesh::AddVolumeWithID(int n1, int n2, int n3, int n4, int n5, int n6, int n7, int n8, int ID)
|
|
|
|
{
|
|
|
|
SMDS_MeshVolume *anElem= SMDS_Mesh::AddVolumeWithID(n1, n2, n3, n4, n5, n6, n7, n8, ID);
|
|
|
|
if(anElem) myScript->AddVolume(ID, n1, n2, n3, n4, n5, n6, n7, n8);
|
|
|
|
return anElem;
|
|
|
|
}
|
|
|
|
|
|
|
|
SMDS_MeshVolume* SMESHDS_Mesh::AddVolumeWithID(const SMDS_MeshNode * n1,
|
|
|
|
const SMDS_MeshNode * n2,
|
|
|
|
const SMDS_MeshNode * n3,
|
|
|
|
const SMDS_MeshNode * n4,
|
|
|
|
const SMDS_MeshNode * n5,
|
|
|
|
const SMDS_MeshNode * n6,
|
|
|
|
const SMDS_MeshNode * n7,
|
|
|
|
const SMDS_MeshNode * n8,
|
|
|
|
int ID)
|
|
|
|
{
|
|
|
|
return AddVolumeWithID(n1->GetID(),
|
|
|
|
n2->GetID(),
|
|
|
|
n3->GetID(),
|
|
|
|
n4->GetID(),
|
|
|
|
n5->GetID(),
|
|
|
|
n6->GetID(),
|
|
|
|
n7->GetID(),
|
|
|
|
n8->GetID(),
|
|
|
|
ID);
|
|
|
|
}
|
|
|
|
|
|
|
|
SMDS_MeshVolume* SMESHDS_Mesh::AddVolume(const SMDS_MeshNode * n1,
|
|
|
|
const SMDS_MeshNode * n2,
|
|
|
|
const SMDS_MeshNode * n3,
|
|
|
|
const SMDS_MeshNode * n4,
|
|
|
|
const SMDS_MeshNode * n5,
|
|
|
|
const SMDS_MeshNode * n6,
|
|
|
|
const SMDS_MeshNode * n7,
|
|
|
|
const SMDS_MeshNode * n8)
|
|
|
|
{
|
|
|
|
SMDS_MeshVolume *anElem = SMDS_Mesh::AddVolume(n1, n2, n3, n4, n5, n6, n7, n8);
|
|
|
|
if(anElem) myScript->AddVolume(anElem->GetID(),
|
|
|
|
n1->GetID(),
|
|
|
|
n2->GetID(),
|
|
|
|
n3->GetID(),
|
|
|
|
n4->GetID(),
|
|
|
|
n5->GetID(),
|
|
|
|
n6->GetID(),
|
|
|
|
n7->GetID(),
|
|
|
|
n8->GetID());
|
|
|
|
return anElem;
|
|
|
|
}
|
2005-06-07 19:22:20 +06:00
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : AddPolygonalFace
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
|
|
|
SMDS_MeshFace* SMESHDS_Mesh::AddPolygonalFaceWithID (std::vector<int> nodes_ids,
|
|
|
|
const int ID)
|
|
|
|
{
|
|
|
|
SMDS_MeshFace *anElem = SMDS_Mesh::AddPolygonalFaceWithID(nodes_ids, ID);
|
|
|
|
if (anElem) {
|
|
|
|
myScript->AddPolygonalFace(ID, nodes_ids);
|
|
|
|
}
|
|
|
|
return anElem;
|
|
|
|
}
|
|
|
|
|
|
|
|
SMDS_MeshFace* SMESHDS_Mesh::AddPolygonalFaceWithID
|
|
|
|
(std::vector<const SMDS_MeshNode*> nodes,
|
|
|
|
const int ID)
|
|
|
|
{
|
|
|
|
SMDS_MeshFace *anElem = SMDS_Mesh::AddPolygonalFaceWithID(nodes, ID);
|
|
|
|
if (anElem) {
|
|
|
|
int i, len = nodes.size();
|
|
|
|
std::vector<int> nodes_ids (len);
|
|
|
|
for (i = 0; i < len; i++) {
|
|
|
|
nodes_ids[i] = nodes[i]->GetID();
|
|
|
|
}
|
|
|
|
myScript->AddPolygonalFace(ID, nodes_ids);
|
|
|
|
}
|
|
|
|
return anElem;
|
|
|
|
}
|
|
|
|
|
|
|
|
SMDS_MeshFace* SMESHDS_Mesh::AddPolygonalFace
|
|
|
|
(std::vector<const SMDS_MeshNode*> nodes)
|
|
|
|
{
|
|
|
|
SMDS_MeshFace *anElem = SMDS_Mesh::AddPolygonalFace(nodes);
|
|
|
|
if (anElem) {
|
|
|
|
int i, len = nodes.size();
|
|
|
|
std::vector<int> nodes_ids (len);
|
|
|
|
for (i = 0; i < len; i++) {
|
|
|
|
nodes_ids[i] = nodes[i]->GetID();
|
|
|
|
}
|
|
|
|
myScript->AddPolygonalFace(anElem->GetID(), nodes_ids);
|
|
|
|
}
|
|
|
|
return anElem;
|
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : AddPolyhedralVolume
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
|
|
|
SMDS_MeshVolume* SMESHDS_Mesh::AddPolyhedralVolumeWithID (std::vector<int> nodes_ids,
|
|
|
|
std::vector<int> quantities,
|
|
|
|
const int ID)
|
|
|
|
{
|
|
|
|
SMDS_MeshVolume *anElem = SMDS_Mesh::AddPolyhedralVolumeWithID(nodes_ids, quantities, ID);
|
|
|
|
if (anElem) {
|
|
|
|
myScript->AddPolyhedralVolume(ID, nodes_ids, quantities);
|
|
|
|
}
|
|
|
|
return anElem;
|
|
|
|
}
|
|
|
|
|
|
|
|
SMDS_MeshVolume* SMESHDS_Mesh::AddPolyhedralVolumeWithID
|
|
|
|
(std::vector<const SMDS_MeshNode*> nodes,
|
|
|
|
std::vector<int> quantities,
|
|
|
|
const int ID)
|
|
|
|
{
|
|
|
|
SMDS_MeshVolume *anElem = SMDS_Mesh::AddPolyhedralVolumeWithID(nodes, quantities, ID);
|
|
|
|
if (anElem) {
|
|
|
|
int i, len = nodes.size();
|
|
|
|
std::vector<int> nodes_ids (len);
|
|
|
|
for (i = 0; i < len; i++) {
|
|
|
|
nodes_ids[i] = nodes[i]->GetID();
|
|
|
|
}
|
|
|
|
myScript->AddPolyhedralVolume(ID, nodes_ids, quantities);
|
|
|
|
}
|
|
|
|
return anElem;
|
|
|
|
}
|
|
|
|
|
|
|
|
SMDS_MeshVolume* SMESHDS_Mesh::AddPolyhedralVolume
|
|
|
|
(std::vector<const SMDS_MeshNode*> nodes,
|
|
|
|
std::vector<int> quantities)
|
|
|
|
{
|
|
|
|
SMDS_MeshVolume *anElem = SMDS_Mesh::AddPolyhedralVolume(nodes, quantities);
|
|
|
|
if (anElem) {
|
|
|
|
int i, len = nodes.size();
|
|
|
|
std::vector<int> nodes_ids (len);
|
|
|
|
for (i = 0; i < len; i++) {
|
|
|
|
nodes_ids[i] = nodes[i]->GetID();
|
|
|
|
}
|
|
|
|
myScript->AddPolyhedralVolume(anElem->GetID(), nodes_ids, quantities);
|
|
|
|
}
|
|
|
|
return anElem;
|
|
|
|
}
|
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
//=======================================================================
|
2004-12-01 15:48:31 +05:00
|
|
|
//function : removeFromContainers
|
2004-06-18 14:34:31 +06:00
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
|
|
|
|
2006-03-13 20:29:49 +05:00
|
|
|
static void removeFromContainers (map<int,SMESHDS_SubMesh*>& theSubMeshes,
|
|
|
|
set<SMESHDS_GroupBase*>& theGroups,
|
|
|
|
list<const SMDS_MeshElement*>& theElems,
|
|
|
|
const bool isNode)
|
2004-06-18 14:34:31 +06:00
|
|
|
{
|
|
|
|
if ( theElems.empty() )
|
|
|
|
return;
|
2004-12-01 15:48:31 +05:00
|
|
|
|
|
|
|
// Rm from group
|
|
|
|
// Element can belong to several groups
|
|
|
|
if ( !theGroups.empty() )
|
|
|
|
{
|
|
|
|
set<SMESHDS_GroupBase*>::iterator GrIt = theGroups.begin();
|
|
|
|
for ( ; GrIt != theGroups.end(); GrIt++ )
|
|
|
|
{
|
|
|
|
SMESHDS_Group* group = dynamic_cast<SMESHDS_Group*>( *GrIt );
|
|
|
|
if ( !group || group->IsEmpty() ) continue;
|
|
|
|
|
|
|
|
list<const SMDS_MeshElement *>::iterator elIt = theElems.begin();
|
|
|
|
for ( ; elIt != theElems.end(); elIt++ )
|
|
|
|
{
|
|
|
|
group->SMDSGroup().Remove( *elIt );
|
|
|
|
if ( group->IsEmpty() ) break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Rm from sub-meshes
|
|
|
|
// Element should belong to only one sub-mesh
|
2004-06-18 14:34:31 +06:00
|
|
|
map<int,SMESHDS_SubMesh*>::iterator SubIt = theSubMeshes.begin();
|
|
|
|
for ( ; SubIt != theSubMeshes.end(); SubIt++ )
|
|
|
|
{
|
2004-12-01 15:48:31 +05:00
|
|
|
int size = isNode ? (*SubIt).second->NbNodes() : (*SubIt).second->NbElements();
|
|
|
|
if ( size == 0 ) continue;
|
|
|
|
|
2004-06-18 14:34:31 +06:00
|
|
|
list<const SMDS_MeshElement *>::iterator elIt = theElems.begin();
|
|
|
|
while ( elIt != theElems.end() )
|
|
|
|
{
|
|
|
|
bool removed = false;
|
|
|
|
if ( isNode )
|
|
|
|
removed = (*SubIt).second->RemoveNode( static_cast<const SMDS_MeshNode*> (*elIt) );
|
|
|
|
else
|
|
|
|
removed = (*SubIt).second->RemoveElement( *elIt );
|
|
|
|
|
|
|
|
if (removed)
|
|
|
|
{
|
|
|
|
elIt = theElems.erase( elIt );
|
|
|
|
if ( theElems.empty() )
|
|
|
|
return; // all elements are found and removed
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
elIt++ ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-05-19 19:25:06 +06:00
|
|
|
//=======================================================================
|
|
|
|
//function : RemoveNode
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
2003-09-05 16:31:32 +06:00
|
|
|
void SMESHDS_Mesh::RemoveNode(const SMDS_MeshNode * n)
|
2003-05-19 19:25:06 +06:00
|
|
|
{
|
2004-06-18 14:34:31 +06:00
|
|
|
myScript->RemoveNode(n->GetID());
|
|
|
|
|
|
|
|
list<const SMDS_MeshElement *> removedElems;
|
|
|
|
list<const SMDS_MeshElement *> removedNodes;
|
|
|
|
|
|
|
|
SMDS_Mesh::RemoveElement( n, removedElems, removedNodes, true );
|
|
|
|
|
2004-12-01 15:48:31 +05:00
|
|
|
removeFromContainers( myShapeIndexToSubMesh, myGroups, removedElems, false );
|
|
|
|
removeFromContainers( myShapeIndexToSubMesh, myGroups, removedNodes, true );
|
2003-05-19 19:25:06 +06:00
|
|
|
}
|
|
|
|
|
2006-03-13 20:29:49 +05:00
|
|
|
//=======================================================================
|
|
|
|
//function : RemoveFreeNode
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
|
|
|
void SMESHDS_Mesh::RemoveFreeNode(const SMDS_MeshNode * n, SMESHDS_SubMesh * subMesh)
|
|
|
|
{
|
|
|
|
myScript->RemoveNode(n->GetID());
|
|
|
|
|
|
|
|
// Rm from group
|
|
|
|
// Node can belong to several groups
|
|
|
|
if (!myGroups.empty()) {
|
|
|
|
set<SMESHDS_GroupBase*>::iterator GrIt = myGroups.begin();
|
|
|
|
for (; GrIt != myGroups.end(); GrIt++) {
|
|
|
|
SMESHDS_Group* group = dynamic_cast<SMESHDS_Group*>(*GrIt);
|
|
|
|
if (!group || group->IsEmpty()) continue;
|
|
|
|
group->SMDSGroup().Remove(n);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Rm from sub-mesh
|
|
|
|
// Node should belong to only one sub-mesh
|
2006-05-06 14:51:48 +06:00
|
|
|
if( subMesh )
|
|
|
|
subMesh->RemoveNode(n);
|
2006-03-13 20:29:49 +05:00
|
|
|
|
|
|
|
SMDS_Mesh::RemoveFreeElement(n);
|
|
|
|
}
|
|
|
|
|
2003-05-19 19:25:06 +06:00
|
|
|
//=======================================================================
|
|
|
|
//function : RemoveElement
|
|
|
|
//purpose :
|
|
|
|
//========================================================================
|
2003-09-05 16:31:32 +06:00
|
|
|
void SMESHDS_Mesh::RemoveElement(const SMDS_MeshElement * elt)
|
2003-05-19 19:25:06 +06:00
|
|
|
{
|
2004-06-18 14:34:31 +06:00
|
|
|
if (elt->GetType() == SMDSAbs_Node)
|
|
|
|
{
|
|
|
|
RemoveNode( static_cast<const SMDS_MeshNode*>( elt ));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
myScript->RemoveElement(elt->GetID());
|
|
|
|
|
|
|
|
list<const SMDS_MeshElement *> removedElems;
|
|
|
|
list<const SMDS_MeshElement *> removedNodes;
|
|
|
|
|
|
|
|
SMDS_Mesh::RemoveElement(elt, removedElems, removedNodes, false);
|
|
|
|
|
2004-12-01 15:48:31 +05:00
|
|
|
removeFromContainers( myShapeIndexToSubMesh, myGroups, removedElems, false );
|
2003-05-19 19:25:06 +06:00
|
|
|
}
|
|
|
|
|
2006-03-13 20:29:49 +05:00
|
|
|
//=======================================================================
|
|
|
|
//function : RemoveFreeElement
|
|
|
|
//purpose :
|
|
|
|
//========================================================================
|
|
|
|
void SMESHDS_Mesh::RemoveFreeElement(const SMDS_MeshElement * elt, SMESHDS_SubMesh * subMesh)
|
|
|
|
{
|
|
|
|
if (elt->GetType() == SMDSAbs_Node) {
|
|
|
|
RemoveFreeNode( static_cast<const SMDS_MeshNode*>(elt), subMesh);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (hasConstructionEdges() || hasConstructionFaces())
|
|
|
|
// this methods is only for meshes without descendants
|
|
|
|
return;
|
|
|
|
|
|
|
|
myScript->RemoveElement(elt->GetID());
|
|
|
|
|
|
|
|
// Rm from group
|
|
|
|
// Node can belong to several groups
|
|
|
|
if (!myGroups.empty()) {
|
|
|
|
set<SMESHDS_GroupBase*>::iterator GrIt = myGroups.begin();
|
|
|
|
for (; GrIt != myGroups.end(); GrIt++) {
|
|
|
|
SMESHDS_Group* group = dynamic_cast<SMESHDS_Group*>(*GrIt);
|
|
|
|
if (!group || group->IsEmpty()) continue;
|
|
|
|
group->SMDSGroup().Remove(elt);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Rm from sub-mesh
|
|
|
|
// Element should belong to only one sub-mesh
|
2006-05-06 14:51:48 +06:00
|
|
|
if( subMesh )
|
|
|
|
subMesh->RemoveElement(elt);
|
2006-03-13 20:29:49 +05:00
|
|
|
|
|
|
|
SMDS_Mesh::RemoveFreeElement(elt);
|
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================================
|
|
|
|
/*!
|
|
|
|
* \brief return submesh by shape
|
|
|
|
* \param shape - the subshape
|
|
|
|
* \retval SMESHDS_SubMesh* - the found submesh
|
|
|
|
*
|
|
|
|
* search of submeshes is optimized
|
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
|
|
|
|
SMESHDS_SubMesh* SMESHDS_Mesh::getSubmesh( const TopoDS_Shape & shape )
|
|
|
|
{
|
|
|
|
if ( shape.IsNull() )
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if ( !myCurSubShape.IsNull() && shape.IsSame( myCurSubShape ))
|
|
|
|
return myCurSubMesh;
|
|
|
|
|
|
|
|
getSubmesh( ShapeToIndex( shape ));
|
|
|
|
myCurSubShape = shape;
|
|
|
|
return myCurSubMesh;
|
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================================
|
|
|
|
/*!
|
|
|
|
* \brief return submesh by subshape index
|
|
|
|
* \param Index - the subshape index
|
|
|
|
* \retval SMESHDS_SubMesh* - the found submesh
|
|
|
|
* search of submeshes is optimized
|
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
|
|
|
|
SMESHDS_SubMesh* SMESHDS_Mesh::getSubmesh( const int Index )
|
|
|
|
{
|
|
|
|
//Update or build submesh
|
|
|
|
if ( Index != myCurSubID ) {
|
|
|
|
map<int,SMESHDS_SubMesh*>::iterator it = myShapeIndexToSubMesh.find( Index );
|
|
|
|
if ( it == myShapeIndexToSubMesh.end() )
|
|
|
|
it = myShapeIndexToSubMesh.insert( make_pair(Index, new SMESHDS_SubMesh() )).first;
|
|
|
|
myCurSubMesh = it->second;
|
|
|
|
myCurSubID = Index;
|
|
|
|
myCurSubShape.Nullify(); // myCurSubShape no more corresponds to submesh
|
|
|
|
}
|
|
|
|
return myCurSubMesh;
|
|
|
|
}
|
|
|
|
|
|
|
|
//================================================================================
|
|
|
|
/*!
|
|
|
|
* \brief Add element or node to submesh
|
|
|
|
* \param elem - element to add
|
|
|
|
* \param subMesh - submesh to be filled in
|
|
|
|
*/
|
|
|
|
//================================================================================
|
|
|
|
|
|
|
|
bool SMESHDS_Mesh::add(const SMDS_MeshElement* elem, SMESHDS_SubMesh* subMesh )
|
|
|
|
{
|
|
|
|
if ( elem && subMesh ) {
|
|
|
|
if ( elem->GetType() == SMDSAbs_Node )
|
|
|
|
subMesh->AddNode( static_cast<const SMDS_MeshNode* >( elem ));
|
|
|
|
else
|
|
|
|
subMesh->AddElement( elem );
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2003-05-19 19:25:06 +06:00
|
|
|
//=======================================================================
|
|
|
|
//function : SetNodeOnVolume
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
2005-09-07 10:50:08 +06:00
|
|
|
void SMESHDS_Mesh::SetNodeInVolume(SMDS_MeshNode * aNode,
|
|
|
|
const TopoDS_Shell & S)
|
2003-05-19 19:25:06 +06:00
|
|
|
{
|
2006-05-06 14:51:48 +06:00
|
|
|
if ( add( aNode, getSubmesh(S) ))
|
|
|
|
const_cast<SMDS_Position*>( aNode->GetPosition().get() )->SetShapeId( myCurSubID );
|
2005-09-07 10:50:08 +06:00
|
|
|
}
|
|
|
|
//=======================================================================
|
|
|
|
//function : SetNodeOnVolume
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
|
|
|
void SMESHDS_Mesh::SetNodeInVolume(SMDS_MeshNode * aNode,
|
|
|
|
const TopoDS_Solid & S)
|
|
|
|
{
|
2006-05-06 14:51:48 +06:00
|
|
|
if ( add( aNode, getSubmesh(S) ))
|
|
|
|
const_cast<SMDS_Position*>( aNode->GetPosition().get() )->SetShapeId( myCurSubID );
|
2003-05-19 19:25:06 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : SetNodeOnFace
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
2005-09-07 10:50:08 +06:00
|
|
|
void SMESHDS_Mesh::SetNodeOnFace(SMDS_MeshNode * aNode,
|
|
|
|
const TopoDS_Face & S,
|
|
|
|
double u,
|
|
|
|
double v)
|
2003-05-19 19:25:06 +06:00
|
|
|
{
|
2006-03-13 20:29:49 +05:00
|
|
|
if ( add( aNode, getSubmesh(S) ))
|
|
|
|
aNode->SetPosition(SMDS_PositionPtr(new SMDS_FacePosition(myCurSubID, u, v)));
|
2003-05-19 19:25:06 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : SetNodeOnEdge
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
2005-09-07 10:50:08 +06:00
|
|
|
void SMESHDS_Mesh::SetNodeOnEdge(SMDS_MeshNode * aNode,
|
|
|
|
const TopoDS_Edge & S,
|
|
|
|
double u)
|
2003-05-19 19:25:06 +06:00
|
|
|
{
|
2006-03-13 20:29:49 +05:00
|
|
|
if ( add( aNode, getSubmesh(S) ))
|
|
|
|
aNode->SetPosition(SMDS_PositionPtr(new SMDS_EdgePosition(myCurSubID, u)));
|
2003-05-19 19:25:06 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : SetNodeOnVertex
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
2005-09-07 10:50:08 +06:00
|
|
|
void SMESHDS_Mesh::SetNodeOnVertex(SMDS_MeshNode * aNode,
|
|
|
|
const TopoDS_Vertex & S)
|
2003-09-04 13:14:51 +06:00
|
|
|
{
|
2006-03-13 20:29:49 +05:00
|
|
|
if ( add( aNode, getSubmesh(S) ))
|
|
|
|
aNode->SetPosition(SMDS_PositionPtr(new SMDS_VertexPosition(myCurSubID)));
|
2003-09-04 13:14:51 +06:00
|
|
|
}
|
2003-05-19 19:25:06 +06:00
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : UnSetNodeOnShape
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
2003-09-04 13:14:51 +06:00
|
|
|
void SMESHDS_Mesh::UnSetNodeOnShape(const SMDS_MeshNode* aNode)
|
|
|
|
{
|
2006-03-13 20:29:49 +05:00
|
|
|
if ( aNode && aNode->GetPosition() ) {
|
|
|
|
map<int,SMESHDS_SubMesh*>::iterator it =
|
|
|
|
myShapeIndexToSubMesh.find( aNode->GetPosition()->GetShapeId() );
|
|
|
|
if ( it != myShapeIndexToSubMesh.end() )
|
|
|
|
it->second->RemoveNode( aNode );
|
|
|
|
}
|
2003-05-19 19:25:06 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : SetMeshElementOnShape
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
2003-09-04 13:14:51 +06:00
|
|
|
void SMESHDS_Mesh::SetMeshElementOnShape(const SMDS_MeshElement * anElement,
|
2006-03-13 20:29:49 +05:00
|
|
|
const TopoDS_Shape & S)
|
2003-05-19 19:25:06 +06:00
|
|
|
{
|
2006-03-13 20:29:49 +05:00
|
|
|
add( anElement, getSubmesh(S) );
|
2003-05-19 19:25:06 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : UnSetMeshElementOnShape
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
2006-03-13 20:29:49 +05:00
|
|
|
void SMESHDS_Mesh::UnSetMeshElementOnShape(const SMDS_MeshElement * elem,
|
|
|
|
const TopoDS_Shape & S)
|
2003-05-19 19:25:06 +06:00
|
|
|
{
|
2006-03-13 20:29:49 +05:00
|
|
|
int Index = myIndexToShape.FindIndex(S);
|
2003-05-19 19:25:06 +06:00
|
|
|
|
2006-03-13 20:29:49 +05:00
|
|
|
map<int,SMESHDS_SubMesh*>::iterator it = myShapeIndexToSubMesh.find( Index );
|
|
|
|
if ( it != myShapeIndexToSubMesh.end() )
|
|
|
|
if ( elem->GetType() == SMDSAbs_Node )
|
|
|
|
it->second->RemoveNode( static_cast<const SMDS_MeshNode* >( elem ));
|
|
|
|
else
|
|
|
|
it->second->RemoveElement( elem );
|
2003-05-19 19:25:06 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : ShapeToMesh
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
2003-09-04 13:14:51 +06:00
|
|
|
TopoDS_Shape SMESHDS_Mesh::ShapeToMesh() const
|
2003-05-19 19:25:06 +06:00
|
|
|
{
|
2003-09-04 13:14:51 +06:00
|
|
|
return myShape;
|
2003-05-19 19:25:06 +06:00
|
|
|
}
|
|
|
|
|
2004-12-01 15:48:31 +05:00
|
|
|
//=======================================================================
|
|
|
|
//function : IsGroupOfSubShapes
|
|
|
|
//purpose : return true if at least one subshape of theShape is a subshape
|
|
|
|
// of myShape or theShape == myShape
|
|
|
|
//=======================================================================
|
|
|
|
|
|
|
|
bool SMESHDS_Mesh::IsGroupOfSubShapes (const TopoDS_Shape& theShape) const
|
|
|
|
{
|
|
|
|
if ( myShape.IsSame( theShape ))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
for ( TopoDS_Iterator it( theShape ); it.More(); it.Next() ) {
|
|
|
|
if (myIndexToShape.Contains( it.Value() ) ||
|
|
|
|
IsGroupOfSubShapes( it.Value() ))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2003-09-04 13:14:51 +06:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
/// Return the sub mesh linked to the a given TopoDS_Shape or NULL if the given
|
|
|
|
/// TopoDS_Shape is unknown
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2005-06-07 19:22:20 +06:00
|
|
|
SMESHDS_SubMesh * SMESHDS_Mesh::MeshElements(const TopoDS_Shape & S) const
|
2003-05-19 19:25:06 +06:00
|
|
|
{
|
2004-12-01 15:48:31 +05:00
|
|
|
int Index = ShapeToIndex(S);
|
2005-06-07 19:22:20 +06:00
|
|
|
TShapeIndexToSubMesh::const_iterator anIter = myShapeIndexToSubMesh.find(Index);
|
|
|
|
if (anIter != myShapeIndexToSubMesh.end())
|
|
|
|
return anIter->second;
|
2004-06-18 14:34:31 +06:00
|
|
|
else
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
/// Return the sub mesh by Id of shape it is linked to
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
SMESHDS_SubMesh * SMESHDS_Mesh::MeshElements(const int Index)
|
|
|
|
{
|
2006-03-13 20:29:49 +05:00
|
|
|
TShapeIndexToSubMesh::const_iterator anIter = myShapeIndexToSubMesh.find(Index);
|
|
|
|
if (anIter != myShapeIndexToSubMesh.end())
|
|
|
|
return anIter->second;
|
2004-06-18 14:34:31 +06:00
|
|
|
else
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : SubMeshIndices
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
|
|
|
list<int> SMESHDS_Mesh::SubMeshIndices()
|
|
|
|
{
|
|
|
|
list<int> anIndices;
|
|
|
|
std::map<int,SMESHDS_SubMesh*>::iterator anIter = myShapeIndexToSubMesh.begin();
|
|
|
|
for (; anIter != myShapeIndexToSubMesh.end(); anIter++) {
|
|
|
|
anIndices.push_back((*anIter).first);
|
|
|
|
}
|
|
|
|
return anIndices;
|
2003-05-19 19:25:06 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : GetHypothesis
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
2003-09-04 13:14:51 +06:00
|
|
|
|
|
|
|
const list<const SMESHDS_Hypothesis*>& SMESHDS_Mesh::GetHypothesis(
|
|
|
|
const TopoDS_Shape & S) const
|
2003-05-19 19:25:06 +06:00
|
|
|
{
|
2003-09-04 13:14:51 +06:00
|
|
|
if (myShapeToHypothesis.find(S)!=myShapeToHypothesis.end())
|
|
|
|
return myShapeToHypothesis.find(S)->second;
|
|
|
|
|
|
|
|
static list<const SMESHDS_Hypothesis*> empty;
|
|
|
|
return empty;
|
2003-05-19 19:25:06 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : GetScript
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
2003-09-04 13:14:51 +06:00
|
|
|
SMESHDS_Script* SMESHDS_Mesh::GetScript()
|
2003-05-19 19:25:06 +06:00
|
|
|
{
|
2003-09-04 13:14:51 +06:00
|
|
|
return myScript;
|
2003-05-19 19:25:06 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : ClearScript
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
2003-09-04 13:14:51 +06:00
|
|
|
void SMESHDS_Mesh::ClearScript()
|
2003-05-19 19:25:06 +06:00
|
|
|
{
|
2003-09-04 13:14:51 +06:00
|
|
|
myScript->Clear();
|
2003-05-19 19:25:06 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : HasMeshElements
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
2003-09-04 13:14:51 +06:00
|
|
|
bool SMESHDS_Mesh::HasMeshElements(const TopoDS_Shape & S)
|
2003-05-19 19:25:06 +06:00
|
|
|
{
|
2003-09-04 13:14:51 +06:00
|
|
|
if (myShape.IsNull()) MESSAGE("myShape is NULL");
|
|
|
|
int Index = myIndexToShape.FindIndex(S);
|
|
|
|
return myShapeIndexToSubMesh.find(Index)!=myShapeIndexToSubMesh.end();
|
2003-05-19 19:25:06 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : HasHypothesis
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
2003-09-04 13:14:51 +06:00
|
|
|
bool SMESHDS_Mesh::HasHypothesis(const TopoDS_Shape & S)
|
2003-05-19 19:25:06 +06:00
|
|
|
{
|
2003-09-04 13:14:51 +06:00
|
|
|
return myShapeToHypothesis.find(S)!=myShapeToHypothesis.end();
|
2003-05-19 19:25:06 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : NewSubMesh
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
2004-12-01 15:48:31 +05:00
|
|
|
SMESHDS_SubMesh * SMESHDS_Mesh::NewSubMesh(int Index)
|
2003-05-19 19:25:06 +06:00
|
|
|
{
|
2004-12-01 15:48:31 +05:00
|
|
|
SMESHDS_SubMesh* SM = 0;
|
2005-09-07 10:50:08 +06:00
|
|
|
TShapeIndexToSubMesh::iterator anIter = myShapeIndexToSubMesh.find(Index);
|
|
|
|
if (anIter == myShapeIndexToSubMesh.end())
|
2004-12-01 15:48:31 +05:00
|
|
|
{
|
|
|
|
SM = new SMESHDS_SubMesh();
|
|
|
|
myShapeIndexToSubMesh[Index]=SM;
|
|
|
|
}
|
|
|
|
else
|
2005-09-07 10:50:08 +06:00
|
|
|
SM = anIter->second;
|
2004-12-01 15:48:31 +05:00
|
|
|
return SM;
|
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : AddCompoundSubmesh
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
|
|
|
|
|
|
|
int SMESHDS_Mesh::AddCompoundSubmesh(const TopoDS_Shape& S,
|
|
|
|
TopAbs_ShapeEnum type)
|
|
|
|
{
|
|
|
|
int aMainIndex = 0;
|
2005-03-15 17:32:15 +05:00
|
|
|
if ( IsGroupOfSubShapes( S ) || (S.ShapeType() == TopAbs_VERTEX && myIndexToShape.Contains(S)) )
|
2004-12-01 15:48:31 +05:00
|
|
|
{
|
|
|
|
aMainIndex = myIndexToShape.Add( S );
|
|
|
|
bool all = ( type == TopAbs_SHAPE );
|
|
|
|
if ( all ) // corresponding simple submesh may exist
|
|
|
|
aMainIndex = -aMainIndex;
|
|
|
|
//MESSAGE("AddCompoundSubmesh index = " << aMainIndex );
|
|
|
|
SMESHDS_SubMesh * aNewSub = NewSubMesh( aMainIndex );
|
|
|
|
if ( !aNewSub->IsComplexSubmesh() ) // is empty
|
|
|
|
{
|
|
|
|
int shapeType = all ? myShape.ShapeType() : type;
|
|
|
|
int typeLimit = all ? TopAbs_VERTEX : type;
|
|
|
|
for ( ; shapeType <= typeLimit; shapeType++ )
|
|
|
|
{
|
|
|
|
TopExp_Explorer exp( S, TopAbs_ShapeEnum( shapeType ));
|
|
|
|
for ( ; exp.More(); exp.Next() )
|
|
|
|
{
|
|
|
|
int index = myIndexToShape.FindIndex( exp.Current() );
|
|
|
|
if ( index )
|
|
|
|
aNewSub->AddSubMesh( NewSubMesh( index ));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return aMainIndex;
|
2003-05-19 19:25:06 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : IndexToShape
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
2006-03-13 20:29:49 +05:00
|
|
|
const TopoDS_Shape& SMESHDS_Mesh::IndexToShape(int ShapeIndex) const
|
2003-05-19 19:25:06 +06:00
|
|
|
{
|
2003-09-04 13:14:51 +06:00
|
|
|
return myIndexToShape.FindKey(ShapeIndex);
|
|
|
|
}
|
2003-05-19 19:25:06 +06:00
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : ShapeToIndex
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
2005-06-07 19:22:20 +06:00
|
|
|
int SMESHDS_Mesh::ShapeToIndex(const TopoDS_Shape & S) const
|
2003-05-19 19:25:06 +06:00
|
|
|
{
|
2004-12-01 15:48:31 +05:00
|
|
|
if (myShape.IsNull())
|
|
|
|
MESSAGE("myShape is NULL");
|
|
|
|
|
|
|
|
int index = myIndexToShape.FindIndex(S);
|
|
|
|
|
|
|
|
return index;
|
2003-05-19 19:25:06 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : SetNodeOnVolume
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
2003-09-04 13:14:51 +06:00
|
|
|
void SMESHDS_Mesh::SetNodeInVolume(const SMDS_MeshNode* aNode, int Index)
|
2003-05-19 19:25:06 +06:00
|
|
|
{
|
2006-05-06 14:51:48 +06:00
|
|
|
if ( add( aNode, getSubmesh( Index )))
|
|
|
|
const_cast<SMDS_Position*>( aNode->GetPosition().get() )->SetShapeId( Index );
|
2003-05-19 19:25:06 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : SetNodeOnFace
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
2005-09-07 10:50:08 +06:00
|
|
|
void SMESHDS_Mesh::SetNodeOnFace(SMDS_MeshNode* aNode, int Index, double u, double v)
|
2003-05-19 19:25:06 +06:00
|
|
|
{
|
2005-09-07 10:50:08 +06:00
|
|
|
//Set Position on Node
|
2006-03-13 20:29:49 +05:00
|
|
|
if ( add( aNode, getSubmesh( Index )))
|
|
|
|
aNode->SetPosition(SMDS_PositionPtr(new SMDS_FacePosition(Index, u, v)));
|
2003-05-19 19:25:06 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : SetNodeOnEdge
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
2005-09-07 10:50:08 +06:00
|
|
|
void SMESHDS_Mesh::SetNodeOnEdge(SMDS_MeshNode* aNode,
|
|
|
|
int Index,
|
|
|
|
double u)
|
2003-05-19 19:25:06 +06:00
|
|
|
{
|
2005-09-07 10:50:08 +06:00
|
|
|
//Set Position on Node
|
2006-03-13 20:29:49 +05:00
|
|
|
if ( add( aNode, getSubmesh( Index )))
|
|
|
|
aNode->SetPosition(SMDS_PositionPtr(new SMDS_EdgePosition(Index, u)));
|
2003-05-19 19:25:06 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : SetNodeOnVertex
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
2003-09-04 13:14:51 +06:00
|
|
|
void SMESHDS_Mesh::SetNodeOnVertex(SMDS_MeshNode* aNode, int Index)
|
|
|
|
{
|
2005-09-07 10:50:08 +06:00
|
|
|
//Set Position on Node
|
2006-03-13 20:29:49 +05:00
|
|
|
if ( add( aNode, getSubmesh( Index )))
|
|
|
|
aNode->SetPosition(SMDS_PositionPtr(new SMDS_VertexPosition(Index)));
|
2003-05-19 19:25:06 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : SetMeshElementOnShape
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
2003-09-04 13:14:51 +06:00
|
|
|
void SMESHDS_Mesh::SetMeshElementOnShape(const SMDS_MeshElement* anElement,
|
2006-03-13 20:29:49 +05:00
|
|
|
int Index)
|
2003-05-19 19:25:06 +06:00
|
|
|
{
|
2006-03-13 20:29:49 +05:00
|
|
|
add( anElement, getSubmesh( Index ));
|
2003-05-19 19:25:06 +06:00
|
|
|
}
|
2003-09-05 16:31:32 +06:00
|
|
|
|
|
|
|
SMESHDS_Mesh::~SMESHDS_Mesh()
|
|
|
|
{
|
2006-03-13 20:29:49 +05:00
|
|
|
delete myScript;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//********************************************************************
|
|
|
|
//********************************************************************
|
|
|
|
//******** *********
|
|
|
|
//***** Methods for addition of quadratic elements ******
|
|
|
|
//******** *********
|
|
|
|
//********************************************************************
|
|
|
|
//********************************************************************
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : AddEdgeWithID
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
|
|
|
SMDS_MeshEdge* SMESHDS_Mesh::AddEdgeWithID(int n1, int n2, int n12, int ID)
|
|
|
|
{
|
|
|
|
SMDS_MeshEdge* anElem = SMDS_Mesh::AddEdgeWithID(n1,n2,n12,ID);
|
|
|
|
if(anElem) myScript->AddEdge(ID,n1,n2,n12);
|
|
|
|
return anElem;
|
2003-09-05 16:31:32 +06:00
|
|
|
}
|
2006-03-13 20:29:49 +05:00
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : AddEdge
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
|
|
|
SMDS_MeshEdge* SMESHDS_Mesh::AddEdge(const SMDS_MeshNode* n1,
|
|
|
|
const SMDS_MeshNode* n2,
|
|
|
|
const SMDS_MeshNode* n12)
|
|
|
|
{
|
|
|
|
SMDS_MeshEdge* anElem = SMDS_Mesh::AddEdge(n1,n2,n12);
|
|
|
|
if(anElem) myScript->AddEdge(anElem->GetID(),
|
|
|
|
n1->GetID(),
|
|
|
|
n2->GetID(),
|
|
|
|
n12->GetID());
|
|
|
|
return anElem;
|
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : AddEdgeWithID
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
|
|
|
SMDS_MeshEdge* SMESHDS_Mesh::AddEdgeWithID(const SMDS_MeshNode * n1,
|
|
|
|
const SMDS_MeshNode * n2,
|
|
|
|
const SMDS_MeshNode * n12,
|
|
|
|
int ID)
|
|
|
|
{
|
|
|
|
return AddEdgeWithID(n1->GetID(),
|
|
|
|
n2->GetID(),
|
|
|
|
n12->GetID(),
|
|
|
|
ID);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : AddFace
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
|
|
|
SMDS_MeshFace* SMESHDS_Mesh::AddFace(const SMDS_MeshNode * n1,
|
|
|
|
const SMDS_MeshNode * n2,
|
|
|
|
const SMDS_MeshNode * n3,
|
|
|
|
const SMDS_MeshNode * n12,
|
|
|
|
const SMDS_MeshNode * n23,
|
|
|
|
const SMDS_MeshNode * n31)
|
|
|
|
{
|
|
|
|
SMDS_MeshFace *anElem = SMDS_Mesh::AddFace(n1,n2,n3,n12,n23,n31);
|
|
|
|
if(anElem) myScript->AddFace(anElem->GetID(),
|
|
|
|
n1->GetID(), n2->GetID(), n3->GetID(),
|
|
|
|
n12->GetID(), n23->GetID(), n31->GetID());
|
|
|
|
return anElem;
|
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : AddFaceWithID
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
|
|
|
SMDS_MeshFace* SMESHDS_Mesh::AddFaceWithID(int n1, int n2, int n3,
|
|
|
|
int n12,int n23,int n31, int ID)
|
|
|
|
{
|
|
|
|
SMDS_MeshFace *anElem = SMDS_Mesh::AddFaceWithID(n1,n2,n3,n12,n23,n31,ID);
|
|
|
|
if(anElem) myScript->AddFace(ID,n1,n2,n3,n12,n23,n31);
|
|
|
|
return anElem;
|
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : AddFaceWithID
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
|
|
|
SMDS_MeshFace* SMESHDS_Mesh::AddFaceWithID(const SMDS_MeshNode * n1,
|
|
|
|
const SMDS_MeshNode * n2,
|
|
|
|
const SMDS_MeshNode * n3,
|
|
|
|
const SMDS_MeshNode * n12,
|
|
|
|
const SMDS_MeshNode * n23,
|
|
|
|
const SMDS_MeshNode * n31,
|
|
|
|
int ID)
|
|
|
|
{
|
|
|
|
return AddFaceWithID(n1->GetID(), n2->GetID(), n3->GetID(),
|
|
|
|
n12->GetID(), n23->GetID(), n31->GetID(),
|
|
|
|
ID);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : AddFace
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
|
|
|
SMDS_MeshFace* SMESHDS_Mesh::AddFace(const SMDS_MeshNode * n1,
|
|
|
|
const SMDS_MeshNode * n2,
|
|
|
|
const SMDS_MeshNode * n3,
|
|
|
|
const SMDS_MeshNode * n4,
|
|
|
|
const SMDS_MeshNode * n12,
|
|
|
|
const SMDS_MeshNode * n23,
|
|
|
|
const SMDS_MeshNode * n34,
|
|
|
|
const SMDS_MeshNode * n41)
|
|
|
|
{
|
|
|
|
SMDS_MeshFace *anElem = SMDS_Mesh::AddFace(n1,n2,n3,n4,n12,n23,n34,n41);
|
|
|
|
if(anElem) myScript->AddFace(anElem->GetID(),
|
|
|
|
n1->GetID(), n2->GetID(), n3->GetID(), n4->GetID(),
|
|
|
|
n12->GetID(), n23->GetID(), n34->GetID(), n41->GetID());
|
|
|
|
return anElem;
|
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : AddFaceWithID
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
|
|
|
SMDS_MeshFace* SMESHDS_Mesh::AddFaceWithID(int n1, int n2, int n3, int n4,
|
|
|
|
int n12,int n23,int n34,int n41, int ID)
|
|
|
|
{
|
|
|
|
SMDS_MeshFace *anElem = SMDS_Mesh::AddFaceWithID(n1,n2,n3,n4,n12,n23,n34,n41,ID);
|
|
|
|
if(anElem) myScript->AddFace(ID,n1,n2,n3,n4,n12,n23,n34,n41);
|
|
|
|
return anElem;
|
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : AddFaceWithID
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
|
|
|
SMDS_MeshFace* SMESHDS_Mesh::AddFaceWithID(const SMDS_MeshNode * n1,
|
|
|
|
const SMDS_MeshNode * n2,
|
|
|
|
const SMDS_MeshNode * n3,
|
|
|
|
const SMDS_MeshNode * n4,
|
|
|
|
const SMDS_MeshNode * n12,
|
|
|
|
const SMDS_MeshNode * n23,
|
|
|
|
const SMDS_MeshNode * n34,
|
|
|
|
const SMDS_MeshNode * n41,
|
|
|
|
int ID)
|
|
|
|
{
|
|
|
|
return AddFaceWithID(n1->GetID(), n2->GetID(), n3->GetID(), n4->GetID(),
|
|
|
|
n12->GetID(), n23->GetID(), n34->GetID(), n41->GetID(),
|
|
|
|
ID);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : AddVolume
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
|
|
|
SMDS_MeshVolume* SMESHDS_Mesh::AddVolume(const SMDS_MeshNode * n1,
|
|
|
|
const SMDS_MeshNode * n2,
|
|
|
|
const SMDS_MeshNode * n3,
|
|
|
|
const SMDS_MeshNode * n4,
|
|
|
|
const SMDS_MeshNode * n12,
|
|
|
|
const SMDS_MeshNode * n23,
|
|
|
|
const SMDS_MeshNode * n31,
|
|
|
|
const SMDS_MeshNode * n14,
|
|
|
|
const SMDS_MeshNode * n24,
|
|
|
|
const SMDS_MeshNode * n34)
|
|
|
|
{
|
|
|
|
SMDS_MeshVolume *anElem = SMDS_Mesh::AddVolume(n1,n2,n3,n4,n12,n23,n31,n14,n24,n34);
|
|
|
|
if(anElem) myScript->AddVolume(anElem->GetID(),
|
|
|
|
n1->GetID(), n2->GetID(), n3->GetID(), n4->GetID(),
|
|
|
|
n12->GetID(), n23->GetID(), n31->GetID(),
|
|
|
|
n14->GetID(), n24->GetID(), n34->GetID());
|
|
|
|
return anElem;
|
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : AddVolumeWithID
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
|
|
|
SMDS_MeshVolume* SMESHDS_Mesh::AddVolumeWithID(int n1, int n2, int n3, int n4,
|
|
|
|
int n12,int n23,int n31,
|
|
|
|
int n14,int n24,int n34, int ID)
|
|
|
|
{
|
|
|
|
SMDS_MeshVolume *anElem = SMDS_Mesh::AddVolumeWithID(n1,n2,n3,n4,n12,n23,
|
|
|
|
n31,n14,n24,n34,ID);
|
|
|
|
if(anElem) myScript->AddVolume(ID,n1,n2,n3,n4,n12,n23,n31,n14,n24,n34);
|
|
|
|
return anElem;
|
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : AddVolumeWithID
|
|
|
|
//purpose : 2d order tetrahedron of 10 nodes
|
|
|
|
//=======================================================================
|
|
|
|
SMDS_MeshVolume* SMESHDS_Mesh::AddVolumeWithID(const SMDS_MeshNode * n1,
|
|
|
|
const SMDS_MeshNode * n2,
|
|
|
|
const SMDS_MeshNode * n3,
|
|
|
|
const SMDS_MeshNode * n4,
|
|
|
|
const SMDS_MeshNode * n12,
|
|
|
|
const SMDS_MeshNode * n23,
|
|
|
|
const SMDS_MeshNode * n31,
|
|
|
|
const SMDS_MeshNode * n14,
|
|
|
|
const SMDS_MeshNode * n24,
|
|
|
|
const SMDS_MeshNode * n34,
|
|
|
|
int ID)
|
|
|
|
{
|
|
|
|
return AddVolumeWithID(n1->GetID(), n2->GetID(), n3->GetID(), n4->GetID(),
|
|
|
|
n12->GetID(), n23->GetID(), n31->GetID(),
|
|
|
|
n14->GetID(), n24->GetID(), n34->GetID(), ID);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : AddVolume
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
|
|
|
SMDS_MeshVolume* SMESHDS_Mesh::AddVolume(const SMDS_MeshNode * n1,
|
|
|
|
const SMDS_MeshNode * n2,
|
|
|
|
const SMDS_MeshNode * n3,
|
|
|
|
const SMDS_MeshNode * n4,
|
|
|
|
const SMDS_MeshNode * n5,
|
|
|
|
const SMDS_MeshNode * n12,
|
|
|
|
const SMDS_MeshNode * n23,
|
|
|
|
const SMDS_MeshNode * n34,
|
|
|
|
const SMDS_MeshNode * n41,
|
|
|
|
const SMDS_MeshNode * n15,
|
|
|
|
const SMDS_MeshNode * n25,
|
|
|
|
const SMDS_MeshNode * n35,
|
|
|
|
const SMDS_MeshNode * n45)
|
|
|
|
{
|
|
|
|
SMDS_MeshVolume *anElem = SMDS_Mesh::AddVolume(n1,n2,n3,n4,n5,n12,n23,n34,n41,
|
|
|
|
n15,n25,n35,n45);
|
|
|
|
if(anElem)
|
|
|
|
myScript->AddVolume(anElem->GetID(), n1->GetID(), n2->GetID(),
|
|
|
|
n3->GetID(), n4->GetID(), n5->GetID(),
|
|
|
|
n12->GetID(), n23->GetID(), n34->GetID(), n41->GetID(),
|
|
|
|
n15->GetID(), n25->GetID(), n35->GetID(), n45->GetID());
|
|
|
|
return anElem;
|
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : AddVolumeWithID
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
|
|
|
SMDS_MeshVolume* SMESHDS_Mesh::AddVolumeWithID(int n1, int n2, int n3, int n4, int n5,
|
|
|
|
int n12,int n23,int n34,int n41,
|
|
|
|
int n15,int n25,int n35,int n45, int ID)
|
|
|
|
{
|
|
|
|
SMDS_MeshVolume *anElem = SMDS_Mesh::AddVolumeWithID(n1,n2,n3,n4,n5,
|
|
|
|
n12,n23,n34,n41,
|
|
|
|
n15,n25,n35,n45,ID);
|
|
|
|
if(anElem) myScript->AddVolume(ID,n1,n2,n3,n4,n5,n12,n23,n34,n41,
|
|
|
|
n15,n25,n35,n45);
|
|
|
|
return anElem;
|
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : AddVolumeWithID
|
|
|
|
//purpose : 2d order pyramid of 13 nodes
|
|
|
|
//=======================================================================
|
|
|
|
SMDS_MeshVolume* SMESHDS_Mesh::AddVolumeWithID(const SMDS_MeshNode * n1,
|
|
|
|
const SMDS_MeshNode * n2,
|
|
|
|
const SMDS_MeshNode * n3,
|
|
|
|
const SMDS_MeshNode * n4,
|
|
|
|
const SMDS_MeshNode * n5,
|
|
|
|
const SMDS_MeshNode * n12,
|
|
|
|
const SMDS_MeshNode * n23,
|
|
|
|
const SMDS_MeshNode * n34,
|
|
|
|
const SMDS_MeshNode * n41,
|
|
|
|
const SMDS_MeshNode * n15,
|
|
|
|
const SMDS_MeshNode * n25,
|
|
|
|
const SMDS_MeshNode * n35,
|
|
|
|
const SMDS_MeshNode * n45,
|
|
|
|
int ID)
|
|
|
|
{
|
|
|
|
return AddVolumeWithID(n1->GetID(), n2->GetID(), n3->GetID(),
|
|
|
|
n4->GetID(), n5->GetID(),
|
|
|
|
n12->GetID(), n23->GetID(), n34->GetID(), n41->GetID(),
|
|
|
|
n15->GetID(), n25->GetID(), n35->GetID(), n45->GetID(),
|
|
|
|
ID);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : AddVolume
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
|
|
|
SMDS_MeshVolume* SMESHDS_Mesh::AddVolume(const SMDS_MeshNode * n1,
|
|
|
|
const SMDS_MeshNode * n2,
|
|
|
|
const SMDS_MeshNode * n3,
|
|
|
|
const SMDS_MeshNode * n4,
|
|
|
|
const SMDS_MeshNode * n5,
|
|
|
|
const SMDS_MeshNode * n6,
|
|
|
|
const SMDS_MeshNode * n12,
|
|
|
|
const SMDS_MeshNode * n23,
|
|
|
|
const SMDS_MeshNode * n31,
|
|
|
|
const SMDS_MeshNode * n45,
|
|
|
|
const SMDS_MeshNode * n56,
|
|
|
|
const SMDS_MeshNode * n64,
|
|
|
|
const SMDS_MeshNode * n14,
|
|
|
|
const SMDS_MeshNode * n25,
|
|
|
|
const SMDS_MeshNode * n36)
|
|
|
|
{
|
|
|
|
SMDS_MeshVolume *anElem = SMDS_Mesh::AddVolume(n1,n2,n3,n4,n5,n6,n12,n23,n31,
|
|
|
|
n45,n56,n64,n14,n25,n36);
|
|
|
|
if(anElem)
|
|
|
|
myScript->AddVolume(anElem->GetID(), n1->GetID(), n2->GetID(),
|
|
|
|
n3->GetID(), n4->GetID(), n5->GetID(), n6->GetID(),
|
|
|
|
n12->GetID(), n23->GetID(), n31->GetID(),
|
|
|
|
n45->GetID(), n56->GetID(), n64->GetID(),
|
|
|
|
n14->GetID(), n25->GetID(), n36->GetID());
|
|
|
|
return anElem;
|
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : AddVolumeWithID
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
|
|
|
SMDS_MeshVolume* SMESHDS_Mesh::AddVolumeWithID(int n1, int n2, int n3,
|
|
|
|
int n4, int n5, int n6,
|
|
|
|
int n12,int n23,int n31,
|
|
|
|
int n45,int n56,int n64,
|
|
|
|
int n14,int n25,int n36, int ID)
|
|
|
|
{
|
|
|
|
SMDS_MeshVolume *anElem = SMDS_Mesh::AddVolumeWithID(n1,n2,n3,n4,n5,n6,
|
|
|
|
n12,n23,n31,
|
|
|
|
n45,n56,n64,
|
|
|
|
n14,n25,n36,ID);
|
|
|
|
if(anElem) myScript->AddVolume(ID,n1,n2,n3,n4,n5,n6,n12,n23,n31,
|
|
|
|
n45,n56,n64,n14,n25,n36);
|
|
|
|
return anElem;
|
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : AddVolumeWithID
|
|
|
|
//purpose : 2d order Pentahedron with 15 nodes
|
|
|
|
//=======================================================================
|
|
|
|
SMDS_MeshVolume* SMESHDS_Mesh::AddVolumeWithID(const SMDS_MeshNode * n1,
|
|
|
|
const SMDS_MeshNode * n2,
|
|
|
|
const SMDS_MeshNode * n3,
|
|
|
|
const SMDS_MeshNode * n4,
|
|
|
|
const SMDS_MeshNode * n5,
|
|
|
|
const SMDS_MeshNode * n6,
|
|
|
|
const SMDS_MeshNode * n12,
|
|
|
|
const SMDS_MeshNode * n23,
|
|
|
|
const SMDS_MeshNode * n31,
|
|
|
|
const SMDS_MeshNode * n45,
|
|
|
|
const SMDS_MeshNode * n56,
|
|
|
|
const SMDS_MeshNode * n64,
|
|
|
|
const SMDS_MeshNode * n14,
|
|
|
|
const SMDS_MeshNode * n25,
|
|
|
|
const SMDS_MeshNode * n36,
|
|
|
|
int ID)
|
|
|
|
{
|
|
|
|
return AddVolumeWithID(n1->GetID(), n2->GetID(), n3->GetID(),
|
|
|
|
n4->GetID(), n5->GetID(), n6->GetID(),
|
|
|
|
n12->GetID(), n23->GetID(), n31->GetID(),
|
|
|
|
n45->GetID(), n56->GetID(), n64->GetID(),
|
|
|
|
n14->GetID(), n25->GetID(), n36->GetID(),
|
|
|
|
ID);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : AddVolume
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
|
|
|
SMDS_MeshVolume* SMESHDS_Mesh::AddVolume(const SMDS_MeshNode * n1,
|
|
|
|
const SMDS_MeshNode * n2,
|
|
|
|
const SMDS_MeshNode * n3,
|
|
|
|
const SMDS_MeshNode * n4,
|
|
|
|
const SMDS_MeshNode * n5,
|
|
|
|
const SMDS_MeshNode * n6,
|
|
|
|
const SMDS_MeshNode * n7,
|
|
|
|
const SMDS_MeshNode * n8,
|
|
|
|
const SMDS_MeshNode * n12,
|
|
|
|
const SMDS_MeshNode * n23,
|
|
|
|
const SMDS_MeshNode * n34,
|
|
|
|
const SMDS_MeshNode * n41,
|
|
|
|
const SMDS_MeshNode * n56,
|
|
|
|
const SMDS_MeshNode * n67,
|
|
|
|
const SMDS_MeshNode * n78,
|
|
|
|
const SMDS_MeshNode * n85,
|
|
|
|
const SMDS_MeshNode * n15,
|
|
|
|
const SMDS_MeshNode * n26,
|
|
|
|
const SMDS_MeshNode * n37,
|
|
|
|
const SMDS_MeshNode * n48)
|
|
|
|
{
|
|
|
|
SMDS_MeshVolume *anElem = SMDS_Mesh::AddVolume(n1,n2,n3,n4,n5,n6,n7,n8,
|
|
|
|
n12,n23,n34,n41,
|
|
|
|
n56,n67,n78,n85,
|
|
|
|
n15,n26,n37,n48);
|
|
|
|
if(anElem)
|
|
|
|
myScript->AddVolume(anElem->GetID(), n1->GetID(), n2->GetID(),
|
|
|
|
n3->GetID(), n4->GetID(), n5->GetID(),
|
|
|
|
n6->GetID(), n7->GetID(), n8->GetID(),
|
|
|
|
n12->GetID(), n23->GetID(), n34->GetID(), n41->GetID(),
|
|
|
|
n56->GetID(), n67->GetID(), n78->GetID(), n85->GetID(),
|
|
|
|
n15->GetID(), n26->GetID(), n37->GetID(), n48->GetID());
|
|
|
|
return anElem;
|
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : AddVolumeWithID
|
|
|
|
//purpose :
|
|
|
|
//=======================================================================
|
|
|
|
SMDS_MeshVolume* SMESHDS_Mesh::AddVolumeWithID(int n1, int n2, int n3, int n4,
|
|
|
|
int n5, int n6, int n7, int n8,
|
|
|
|
int n12,int n23,int n34,int n41,
|
|
|
|
int n56,int n67,int n78,int n85,
|
|
|
|
int n15,int n26,int n37,int n48, int ID)
|
|
|
|
{
|
|
|
|
SMDS_MeshVolume *anElem = SMDS_Mesh::AddVolumeWithID(n1,n2,n3,n4,n5,n6,n7,n8,
|
|
|
|
n12,n23,n34,n41,
|
|
|
|
n56,n67,n78,n85,
|
|
|
|
n15,n26,n37,n48,ID);
|
|
|
|
if(anElem) myScript->AddVolume(ID,n1,n2,n3,n4,n5,n6,n7,n8,n12,n23,n34,n41,
|
|
|
|
n56,n67,n78,n85,n15,n26,n37,n48);
|
|
|
|
return anElem;
|
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
//function : AddVolumeWithID
|
|
|
|
//purpose : 2d order Hexahedrons with 20 nodes
|
|
|
|
//=======================================================================
|
|
|
|
SMDS_MeshVolume* SMESHDS_Mesh::AddVolumeWithID(const SMDS_MeshNode * n1,
|
|
|
|
const SMDS_MeshNode * n2,
|
|
|
|
const SMDS_MeshNode * n3,
|
|
|
|
const SMDS_MeshNode * n4,
|
|
|
|
const SMDS_MeshNode * n5,
|
|
|
|
const SMDS_MeshNode * n6,
|
|
|
|
const SMDS_MeshNode * n7,
|
|
|
|
const SMDS_MeshNode * n8,
|
|
|
|
const SMDS_MeshNode * n12,
|
|
|
|
const SMDS_MeshNode * n23,
|
|
|
|
const SMDS_MeshNode * n34,
|
|
|
|
const SMDS_MeshNode * n41,
|
|
|
|
const SMDS_MeshNode * n56,
|
|
|
|
const SMDS_MeshNode * n67,
|
|
|
|
const SMDS_MeshNode * n78,
|
|
|
|
const SMDS_MeshNode * n85,
|
|
|
|
const SMDS_MeshNode * n15,
|
|
|
|
const SMDS_MeshNode * n26,
|
|
|
|
const SMDS_MeshNode * n37,
|
|
|
|
const SMDS_MeshNode * n48,
|
|
|
|
int ID)
|
|
|
|
{
|
|
|
|
return AddVolumeWithID(n1->GetID(), n2->GetID(), n3->GetID(), n4->GetID(),
|
|
|
|
n5->GetID(), n6->GetID(), n7->GetID(), n8->GetID(),
|
|
|
|
n12->GetID(), n23->GetID(), n34->GetID(), n41->GetID(),
|
|
|
|
n56->GetID(), n67->GetID(), n78->GetID(), n85->GetID(),
|
|
|
|
n15->GetID(), n26->GetID(), n37->GetID(), n48->GetID(),
|
|
|
|
ID);
|
|
|
|
}
|
|
|
|
|
|
|
|
|