Merge from V4_1_0_maintainance branch (from tag mergeto_BR_QT4_Dev_08Jul08)
This commit is contained in:
parent
23f07d64cc
commit
1bf863ac26
@ -32,10 +32,10 @@ fi
|
|||||||
for option
|
for option
|
||||||
do
|
do
|
||||||
case $option in
|
case $option in
|
||||||
-with-ihm | --with-ihm)
|
-with-gui | --with-gui)
|
||||||
NETGENPLUGIN_WITH_GUI="yes"
|
NETGENPLUGIN_WITH_GUI="yes"
|
||||||
break;;
|
break;;
|
||||||
-without-ihm | --without-ihm | -with-ihm=no | --with-ihm=no)
|
-without-gui | --without-gui | -with-gui=no | --with-gui=no)
|
||||||
NETGENPLUGIN_WITH_GUI="no"
|
NETGENPLUGIN_WITH_GUI="no"
|
||||||
break;;
|
break;;
|
||||||
esac
|
esac
|
||||||
|
10
configure.ac
10
configure.ac
@ -223,19 +223,11 @@ AC_SUBST_FILE(CORBA)
|
|||||||
corba=make_$ORB
|
corba=make_$ORB
|
||||||
CORBA=adm_local/unix/$corba
|
CORBA=adm_local/unix/$corba
|
||||||
|
|
||||||
NETGENPLUGIN_WITH_GUI=no
|
NETGENPLUGIN_WITH_GUI=yes
|
||||||
|
|
||||||
AM_CONDITIONAL(NETGENPLUGIN_ENABLE_GUI, [test "${NETGENPLUGIN_WITH_GUI}" = "yes"])
|
AM_CONDITIONAL(NETGENPLUGIN_ENABLE_GUI, [test "${NETGENPLUGIN_WITH_GUI}" = "yes"])
|
||||||
|
|
||||||
if test "${NETGENPLUGIN_WITH_GUI}" = "yes"; then
|
if test "${NETGENPLUGIN_WITH_GUI}" = "yes"; then
|
||||||
echo
|
|
||||||
echo ---------------------------------------------
|
|
||||||
echo testing MSG2QM
|
|
||||||
echo ---------------------------------------------
|
|
||||||
echo
|
|
||||||
|
|
||||||
CHECK_MSG2QM
|
|
||||||
|
|
||||||
echo
|
echo
|
||||||
echo ---------------------------------------------
|
echo ---------------------------------------------
|
||||||
echo testing openGL
|
echo testing openGL
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
icon-id="mesh_algo_tetra.png"
|
icon-id="mesh_algo_tetra.png"
|
||||||
hypos="MaxElementVolume"
|
hypos="MaxElementVolume"
|
||||||
need-geom="false"
|
need-geom="false"
|
||||||
input="TRIA"
|
input="TRIA,QUAD"
|
||||||
dim="3"/>
|
dim="3"/>
|
||||||
<algorithm type="NETGEN_2D"
|
<algorithm type="NETGEN_2D"
|
||||||
label-id="Netgen 1D-2D"
|
label-id="Netgen 1D-2D"
|
||||||
|
BIN
resources/mesh_tree_algo_netgen.png
Normal file
BIN
resources/mesh_tree_algo_netgen.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 148 B |
@ -114,11 +114,15 @@ bool NETGENPlugin_NETGEN_2D_ONLY::CheckHypothesis (SMESH_Mesh& aMesh,
|
|||||||
_hypLengthFromEdges = 0;
|
_hypLengthFromEdges = 0;
|
||||||
_hypQuadranglePreference = 0;
|
_hypQuadranglePreference = 0;
|
||||||
|
|
||||||
aStatus = HYP_MISSING;
|
|
||||||
|
|
||||||
const list<const SMESHDS_Hypothesis*>& hyps = GetUsedHypothesis(aMesh, aShape, false);
|
const list<const SMESHDS_Hypothesis*>& hyps = GetUsedHypothesis(aMesh, aShape, false);
|
||||||
|
|
||||||
if (hyps.empty()) return false; // can't work with no hypothesis
|
if (hyps.empty())
|
||||||
|
{
|
||||||
|
aStatus = HYP_OK; //SMESH_Hypothesis::HYP_MISSING;
|
||||||
|
return true; // (PAL13464) can work with no hypothesis, LengthFromEdges is default one
|
||||||
|
}
|
||||||
|
|
||||||
|
aStatus = HYP_MISSING;
|
||||||
|
|
||||||
list<const SMESHDS_Hypothesis*>::const_iterator ith;
|
list<const SMESHDS_Hypothesis*>::const_iterator ith;
|
||||||
for (ith = hyps.begin(); ith != hyps.end(); ++ith )
|
for (ith = hyps.begin(); ith != hyps.end(); ++ith )
|
||||||
@ -328,7 +332,7 @@ bool NETGENPlugin_NETGEN_2D_ONLY::Compute(SMESH_Mesh& aMesh,
|
|||||||
// --------------------
|
// --------------------
|
||||||
|
|
||||||
double edgeLength = 0;
|
double edgeLength = 0;
|
||||||
if (_hypLengthFromEdges)
|
if (_hypLengthFromEdges || !_hypLengthFromEdges && !_hypMaxElementArea)
|
||||||
{
|
{
|
||||||
int nbSegments = 0;
|
int nbSegments = 0;
|
||||||
for ( int iW = 0; iW < nbWires; ++iW )
|
for ( int iW = 0; iW < nbWires; ++iW )
|
||||||
|
@ -38,6 +38,7 @@
|
|||||||
#include "SMESH_Gen.hxx"
|
#include "SMESH_Gen.hxx"
|
||||||
#include "SMESH_Mesh.hxx"
|
#include "SMESH_Mesh.hxx"
|
||||||
#include "SMESH_MesherHelper.hxx"
|
#include "SMESH_MesherHelper.hxx"
|
||||||
|
#include "StdMeshers_QuadToTriaAdaptor.hxx"
|
||||||
|
|
||||||
#include <BRep_Tool.hxx>
|
#include <BRep_Tool.hxx>
|
||||||
#include <TopExp.hxx>
|
#include <TopExp.hxx>
|
||||||
@ -80,6 +81,8 @@ NETGENPlugin_NETGEN_3D::NETGENPlugin_NETGEN_3D(int hypId, int studyId,
|
|||||||
_maxElementVolume = 0.;
|
_maxElementVolume = 0.;
|
||||||
|
|
||||||
_hypMaxElementVolume = NULL;
|
_hypMaxElementVolume = NULL;
|
||||||
|
|
||||||
|
_requireShape = false; // can work without shape
|
||||||
}
|
}
|
||||||
|
|
||||||
//=============================================================================
|
//=============================================================================
|
||||||
@ -179,6 +182,9 @@ bool NETGENPlugin_NETGEN_3D::Compute(SMESH_Mesh& aMesh,
|
|||||||
map< int, int* >::iterator shId_ngId;
|
map< int, int* >::iterator shId_ngId;
|
||||||
list< int > degenNgIds;
|
list< int > degenNgIds;
|
||||||
|
|
||||||
|
StdMeshers_QuadToTriaAdaptor Adaptor;
|
||||||
|
Adaptor.Compute(aMesh,aShape);
|
||||||
|
|
||||||
for (TopExp_Explorer exp(aShape,TopAbs_FACE);exp.More();exp.Next())
|
for (TopExp_Explorer exp(aShape,TopAbs_FACE);exp.More();exp.Next())
|
||||||
{
|
{
|
||||||
const TopoDS_Shape& aShapeFace = exp.Current();
|
const TopoDS_Shape& aShapeFace = exp.Current();
|
||||||
@ -195,9 +201,31 @@ bool NETGENPlugin_NETGEN_3D::Compute(SMESH_Mesh& aMesh,
|
|||||||
if ( !elem )
|
if ( !elem )
|
||||||
return error( COMPERR_BAD_INPUT_MESH, "Null element encounters");
|
return error( COMPERR_BAD_INPUT_MESH, "Null element encounters");
|
||||||
bool isTraingle = ( elem->NbNodes()==3 || (_quadraticMesh && elem->NbNodes()==6 ));
|
bool isTraingle = ( elem->NbNodes()==3 || (_quadraticMesh && elem->NbNodes()==6 ));
|
||||||
if ( !isTraingle )
|
if ( !isTraingle ) {
|
||||||
|
//return error( COMPERR_BAD_INPUT_MESH,
|
||||||
|
// SMESH_Comment("Not triangle element ")<<elem->GetID());
|
||||||
|
// using adaptor
|
||||||
|
std::list<const SMDS_FaceOfNodes*> faces = Adaptor.GetTriangles(elem);
|
||||||
|
if(faces.size()==0) {
|
||||||
return error( COMPERR_BAD_INPUT_MESH,
|
return error( COMPERR_BAD_INPUT_MESH,
|
||||||
SMESH_Comment("Not triangle element ")<<elem->GetID());
|
SMESH_Comment("Not triangles in adaptor for element ")<<elem->GetID());
|
||||||
|
}
|
||||||
|
std::list<const SMDS_FaceOfNodes*>::iterator itf = faces.begin();
|
||||||
|
for(; itf!=faces.end(); itf++ ) {
|
||||||
|
triangles.push_back( (*itf) );
|
||||||
|
isReversed.push_back( isRev );
|
||||||
|
// put triange's nodes to nodeToNetgenID map
|
||||||
|
SMDS_ElemIteratorPtr triangleNodesIt = (*itf)->nodesIterator();
|
||||||
|
while ( triangleNodesIt->more() ) {
|
||||||
|
const SMDS_MeshNode * node =
|
||||||
|
static_cast<const SMDS_MeshNode *>(triangleNodesIt->next());
|
||||||
|
if(myTool->IsMedium(node))
|
||||||
|
continue;
|
||||||
|
nodeToNetgenID.insert( make_pair( node, invalid_ID ));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
// keep a triangle
|
// keep a triangle
|
||||||
triangles.push_back( elem );
|
triangles.push_back( elem );
|
||||||
isReversed.push_back( isRev );
|
isReversed.push_back( isRev );
|
||||||
@ -210,6 +238,7 @@ bool NETGENPlugin_NETGEN_3D::Compute(SMESH_Mesh& aMesh,
|
|||||||
continue;
|
continue;
|
||||||
nodeToNetgenID.insert( make_pair( node, invalid_ID ));
|
nodeToNetgenID.insert( make_pair( node, invalid_ID ));
|
||||||
}
|
}
|
||||||
|
}
|
||||||
#ifdef _DEBUG_
|
#ifdef _DEBUG_
|
||||||
// check if a trainge is degenerated
|
// check if a trainge is degenerated
|
||||||
areaControl.GetPoints( elem, nodesCoords );
|
areaControl.GetPoints( elem, nodesCoords );
|
||||||
@ -413,19 +442,40 @@ bool NETGENPlugin_NETGEN_3D::Compute(SMESH_Mesh& aMesh,
|
|||||||
else if (MeshType == SMESH_MesherHelper::QUADRATIC)
|
else if (MeshType == SMESH_MesherHelper::QUADRATIC)
|
||||||
_quadraticMesh = true;
|
_quadraticMesh = true;
|
||||||
|
|
||||||
SMDS_FaceIteratorPtr iteratorFace = MeshDS->facesIterator();
|
StdMeshers_QuadToTriaAdaptor Adaptor;
|
||||||
|
Adaptor.Compute(aMesh);
|
||||||
|
|
||||||
while(iteratorFace->more())
|
SMDS_FaceIteratorPtr iteratorFace = MeshDS->facesIterator();
|
||||||
{
|
while(iteratorFace->more()) {
|
||||||
// check element
|
// check element
|
||||||
const SMDS_MeshElement* elem = iteratorFace->next();
|
const SMDS_MeshElement* elem = iteratorFace->next();
|
||||||
if ( !elem )
|
if ( !elem )
|
||||||
return error( COMPERR_BAD_INPUT_MESH, "Null element encounters");
|
return error( COMPERR_BAD_INPUT_MESH, "Null element encounters");
|
||||||
bool isTraingle = ( elem->NbNodes()==3 || (_quadraticMesh && elem->NbNodes()==6 ));
|
bool isTraingle = ( elem->NbNodes()==3 || (_quadraticMesh && elem->NbNodes()==6 ));
|
||||||
if ( !isTraingle )
|
if ( !isTraingle ) {
|
||||||
|
//return error( COMPERR_BAD_INPUT_MESH,
|
||||||
|
// SMESH_Comment("Not triangle element ")<<elem->GetID());
|
||||||
|
// using adaptor
|
||||||
|
std::list<const SMDS_FaceOfNodes*> faces = Adaptor.GetTriangles(elem);
|
||||||
|
if(faces.size()==0) {
|
||||||
return error( COMPERR_BAD_INPUT_MESH,
|
return error( COMPERR_BAD_INPUT_MESH,
|
||||||
SMESH_Comment("Not triangle element ")<<elem->GetID());
|
SMESH_Comment("Not triangles in adaptor for element ")<<elem->GetID());
|
||||||
|
}
|
||||||
|
std::list<const SMDS_FaceOfNodes*>::iterator itf = faces.begin();
|
||||||
|
for(; itf!=faces.end(); itf++ ) {
|
||||||
|
triangles.push_back( (*itf) );
|
||||||
|
// put triange's nodes to nodeToNetgenID map
|
||||||
|
SMDS_ElemIteratorPtr triangleNodesIt = (*itf)->nodesIterator();
|
||||||
|
while ( triangleNodesIt->more() ) {
|
||||||
|
const SMDS_MeshNode * node =
|
||||||
|
static_cast<const SMDS_MeshNode *>(triangleNodesIt->next());
|
||||||
|
if(aHelper->IsMedium(node))
|
||||||
|
continue;
|
||||||
|
nodeToNetgenID.insert( make_pair( node, invalid_ID ));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
// keep a triangle
|
// keep a triangle
|
||||||
triangles.push_back( elem );
|
triangles.push_back( elem );
|
||||||
// put elem nodes to nodeToNetgenID map
|
// put elem nodes to nodeToNetgenID map
|
||||||
@ -435,10 +485,10 @@ bool NETGENPlugin_NETGEN_3D::Compute(SMESH_Mesh& aMesh,
|
|||||||
static_cast<const SMDS_MeshNode *>(triangleNodesIt->next());
|
static_cast<const SMDS_MeshNode *>(triangleNodesIt->next());
|
||||||
if(aHelper->IsMedium(node))
|
if(aHelper->IsMedium(node))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
nodeToNetgenID.insert( make_pair( node, invalid_ID ));
|
nodeToNetgenID.insert( make_pair( node, invalid_ID ));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// ---------------------------------
|
// ---------------------------------
|
||||||
// Feed the Netgen with surface mesh
|
// Feed the Netgen with surface mesh
|
||||||
|
@ -1,20 +0,0 @@
|
|||||||
# This is a Qt message file in .po format. Each msgid starts with
|
|
||||||
# a scope. This scope should *NOT* be translated - eg. "Foo::Bar"
|
|
||||||
# would be translated to "Pub", not "Foo::Pub".
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
|
||||||
"POT-Creation-Date: 2002-05-28 10:57:43 AM CEST\n"
|
|
||||||
"PO-Revision-Date: YYYY-MM-DD\n"
|
|
||||||
"Last-Translator: FULLNAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Content-Type: text/plain; charset=iso-8859-1\n"
|
|
||||||
|
|
||||||
|
|
||||||
#-----------------------------------------------------------
|
|
||||||
# ObjectBrowser
|
|
||||||
#-----------------------------------------------------------
|
|
||||||
|
|
||||||
#mesh_tree_algo_netgen
|
|
||||||
msgid "ICON_SMESH_TREE_ALGO_NETGEN_3D"
|
|
||||||
msgstr "mesh_tree_algo_tetra.png"
|
|
||||||
#msgstr "mesh_tree_algo_netgen.png"
|
|
Loading…
Reference in New Issue
Block a user