mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-12-26 17:30:35 +05:00
Fix regression SALOME_TESTS/Grids/smesh/viscous_layers_00/A6
This commit is contained in:
parent
0a3339671c
commit
560d5a794f
@ -95,7 +95,7 @@
|
||||
#include <string>
|
||||
|
||||
#ifdef _DEBUG_
|
||||
#define __myDEBUG
|
||||
//#define __myDEBUG
|
||||
//#define __NOT_INVALIDATE_BAD_SMOOTH
|
||||
//#define __NODES_AT_POS
|
||||
#endif
|
||||
@ -3395,11 +3395,16 @@ bool _ViscousBuilder::setEdgeData(_LayerEdge& edge,
|
||||
if ( nbOkNorms == 0 )
|
||||
return error(SMESH_Comment("Can't get normal to node ") << node->GetID(), data._index);
|
||||
|
||||
if ( totalNbFaces >= 3 )
|
||||
{
|
||||
edge._normal = getNormalByOffset( &edge, face2Norm, totalNbFaces, fromVonF );
|
||||
}
|
||||
|
||||
if ( edge._normal.Modulus() < 1e-3 && nbOkNorms > 1 )
|
||||
{
|
||||
// opposite normals, re-get normals at shifted positions (IPAL 52426)
|
||||
edge._normal.SetCoord( 0,0,0 );
|
||||
for ( int iF = 0; iF < totalNbFaces; ++iF )
|
||||
for ( int iF = 0; iF < totalNbFaces - fromVonF; ++iF )
|
||||
{
|
||||
const TopoDS_Face& F = face2Norm[iF].first;
|
||||
geomNorm = getFaceNormal( node, F, helper, normOK, /*shiftInside=*/true );
|
||||
@ -3410,11 +3415,6 @@ bool _ViscousBuilder::setEdgeData(_LayerEdge& edge,
|
||||
edge._normal += face2Norm[ iF ].second;
|
||||
}
|
||||
}
|
||||
|
||||
if ( totalNbFaces >= 3 )
|
||||
{
|
||||
edge._normal = getNormalByOffset( &edge, face2Norm, totalNbFaces, fromVonF );
|
||||
}
|
||||
}
|
||||
}
|
||||
else // !useGeometry - get _normal using surrounding mesh faces
|
||||
|
Loading…
Reference in New Issue
Block a user