From: eap Date: Thu, 17 Sep 2009 12:48:47 +0000 (+0000) Subject: 0020461: EDF 1102 GHS3DPLUGIN: Bad detection of volumes with Ghs3d mesh X-Git-Tag: V5_1_3rc1~8 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=58426b71c4932382a364360752b6875e258bbfce;p=plugins%2Fhybridplugin.git 0020461: EDF 1102 GHS3DPLUGIN: Bad detection of volumes with Ghs3d mesh use improved helper.GetNodeUV() instead of projecting a node to a surface --- diff --git a/src/GHS3DPlugin_GHS3D.cxx b/src/GHS3DPlugin_GHS3D.cxx index c0befee..23ef2c5 100644 --- a/src/GHS3DPlugin_GHS3D.cxx +++ b/src/GHS3DPlugin_GHS3D.cxx @@ -597,19 +597,20 @@ static int findShapeID(SMESH_Mesh& mesh, nNotOnSeamEdge = node3; else nNotOnSeamEdge = node2; - gp_XY uv = helper.GetNodeUV( geomFace, node1, nNotOnSeamEdge ); + bool checkUV = true; + gp_XY uv = helper.GetNodeUV( geomFace, node1, nNotOnSeamEdge, &checkUV ); // check that uv is correct BRepAdaptor_Surface surface( geomFace ); double tol = BRep_Tool::Tolerance( geomFace ); - if ( node1Pnt.Distance( surface.Value( uv.X(), uv.Y() )) > 2 * tol ) { - GeomAPI_ProjectPointOnSurf projector( node1Pnt, surface.Surface().Surface(), 2 * tol ); - if ( !projector.IsDone() || projector.NbPoints() < 1 || projector.LowerDistance() > 2 * tol) + if ( checkUV && node1Pnt.Distance( surface.Value( uv.X(), uv.Y() )) > 2 * tol ) { +// GeomAPI_ProjectPointOnSurf projector( node1Pnt, surface.Surface().Surface(), 2 * tol ); +// if ( !projector.IsDone() || projector.NbPoints() < 1 || projector.LowerDistance() > 2 * tol) return invalidID; - Quantity_Parameter U,V; - projector.LowerDistanceParameters(U,V); - if ( node1Pnt.Distance( surface.Value( U, V )) > 2 * tol ) - return invalidID; - uv.SetCoord( U,V ); +// Quantity_Parameter U,V; +// projector.LowerDistanceParameters(U,V); +// if ( node1Pnt.Distance( surface.Value( U, V )) > 2 * tol ) +// return invalidID; +// uv.SetCoord( U,V ); } // normale to geomFace at UV gp_Vec du, dv; @@ -1743,8 +1744,8 @@ const SMDS_MeshElement* _Ghs2smdsConvertor::getElement(const vector& ghsNod */ //============================================================================= bool GHS3DPlugin_GHS3D::Evaluate(SMESH_Mesh& aMesh, - const TopoDS_Shape& aShape, - MapShapeNbElems& aResMap) + const TopoDS_Shape& aShape, + MapShapeNbElems& aResMap) { int nbtri = 0, nbqua = 0; double fullArea = 0.0; @@ -1755,7 +1756,7 @@ bool GHS3DPlugin_GHS3D::Evaluate(SMESH_Mesh& aMesh, if( anIt==aResMap.end() ) { SMESH_ComputeErrorPtr& smError = sm->GetComputeError(); smError.reset( new SMESH_ComputeError(COMPERR_ALGO_FAILED, - "Submesh can not be evaluated",this)); + "Submesh can not be evaluated",this)); return false; } std::vector aVec = (*anIt).second; @@ -1796,7 +1797,7 @@ bool GHS3DPlugin_GHS3D::Evaluate(SMESH_Mesh& aMesh, double aVolume = G.Mass(); double tetrVol = 0.1179*ELen*ELen*ELen; double CoeffQuality = 0.9; - int nbVols = (int)aVolume/tetrVol/CoeffQuality; + int nbVols = int(aVolume/tetrVol/CoeffQuality); int nb1d_f = (nbtri*3 + nbqua*4 - nb1d_e) / 2; int nb1d_in = (int) ( nbVols*6 - nb1d_e - nb1d_f ) / 5; std::vector aVec(SMDSEntity_Last);