mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-01-30 05:10:32 +05:00
PAL13615 (EDF PAL 315/31 GEOM SMESH : meshing of a "5 edges quadrangle")
add GetLength(const SMESH_Mesh* aMesh, const double edgeLength)
This commit is contained in:
parent
a7051ca684
commit
1863381f98
@ -97,6 +97,8 @@ void StdMeshers_AutomaticLength::SetFineness(double theFineness)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
namespace {
|
||||||
|
|
||||||
//================================================================================
|
//================================================================================
|
||||||
/*!
|
/*!
|
||||||
* \brief Return pointer to TopoDS_TShape
|
* \brief Return pointer to TopoDS_TShape
|
||||||
@ -109,6 +111,24 @@ inline const TopoDS_TShape* getTShape(const TopoDS_Shape& theShape)
|
|||||||
{
|
{
|
||||||
return theShape.TShape().operator->();
|
return theShape.TShape().operator->();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//================================================================================
|
||||||
|
/*!
|
||||||
|
* \brief computes segment length by S0 and edge length
|
||||||
|
*/
|
||||||
|
//================================================================================
|
||||||
|
|
||||||
|
const double a14divPI = 14. / PI;
|
||||||
|
|
||||||
|
inline double segLength(double S0, double edgeLen, double minLen )
|
||||||
|
{
|
||||||
|
// PAL10237
|
||||||
|
// S = S0 * f(L/Lmin) where f(x) = 1 + (2/Pi * 7 * atan(x/5) )
|
||||||
|
// =>
|
||||||
|
// S = S0 * ( 1 + 14/PI * atan( L / ( 5 * Lmin )))
|
||||||
|
return S0 * ( 1. + a14divPI * atan( edgeLen / ( 5 * minLen )));
|
||||||
|
}
|
||||||
|
|
||||||
//================================================================================
|
//================================================================================
|
||||||
/*!
|
/*!
|
||||||
* \brief Compute segment length for all edges
|
* \brief Compute segment length for all edges
|
||||||
@ -117,8 +137,10 @@ inline const TopoDS_TShape* getTShape(const TopoDS_Shape& theShape)
|
|||||||
*/
|
*/
|
||||||
//================================================================================
|
//================================================================================
|
||||||
|
|
||||||
static void computeLengths( SMESHDS_Mesh* aMesh,
|
void computeLengths( SMESHDS_Mesh* aMesh,
|
||||||
map<const TopoDS_TShape*, double> & theTShapeToLengthMap)
|
map<const TopoDS_TShape*, double> & theTShapeToLengthMap,
|
||||||
|
double & theS0,
|
||||||
|
double & theMinLen)
|
||||||
{
|
{
|
||||||
theTShapeToLengthMap.clear();
|
theTShapeToLengthMap.clear();
|
||||||
|
|
||||||
@ -171,18 +193,37 @@ static void computeLengths( SMESHDS_Mesh* aMesh,
|
|||||||
MESSAGE( "S0 = " << S0 << ", Lmin = " << Lmin << ", Nbseg = " << (int) NbSeg);
|
MESSAGE( "S0 = " << S0 << ", Lmin = " << Lmin << ", Nbseg = " << (int) NbSeg);
|
||||||
|
|
||||||
// Compute segments length for all edges
|
// Compute segments length for all edges
|
||||||
|
|
||||||
// S = S0 * f(L/Lmin) where f(x) = 1 + (2/Pi * 7 * atan(x/5) )
|
|
||||||
// =>
|
|
||||||
// S = S0 * ( 1 + 14/PI * atan( L / ( 5 * Lmin )))
|
|
||||||
|
|
||||||
const double a14divPI = 14. / PI, a5xLmin = 5 * Lmin;
|
|
||||||
map<const TopoDS_TShape*, double>::iterator tshape_length = theTShapeToLengthMap.begin();
|
map<const TopoDS_TShape*, double>::iterator tshape_length = theTShapeToLengthMap.begin();
|
||||||
for ( ; tshape_length != theTShapeToLengthMap.end(); ++tshape_length )
|
for ( ; tshape_length != theTShapeToLengthMap.end(); ++tshape_length )
|
||||||
{
|
{
|
||||||
double & L = tshape_length->second;
|
double & L = tshape_length->second;
|
||||||
L = S0 * ( 1. + a14divPI * atan( L / a5xLmin ));
|
L = segLength( S0, L, Lmin );
|
||||||
}
|
}
|
||||||
|
theS0 = S0;
|
||||||
|
theMinLen = Lmin;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//=============================================================================
|
||||||
|
/*!
|
||||||
|
* \brief Computes segment length for an edge of given length
|
||||||
|
*/
|
||||||
|
//=============================================================================
|
||||||
|
|
||||||
|
double StdMeshers_AutomaticLength::GetLength(const SMESH_Mesh* theMesh,
|
||||||
|
const double theEdgeLength)
|
||||||
|
throw(SALOME_Exception)
|
||||||
|
{
|
||||||
|
if ( !theMesh ) throw SALOME_Exception(LOCALIZED("NULL Mesh"));
|
||||||
|
|
||||||
|
SMESHDS_Mesh* aMeshDS = const_cast< SMESH_Mesh* > ( theMesh )->GetMeshDS();
|
||||||
|
if ( theMesh != _mesh )
|
||||||
|
{
|
||||||
|
computeLengths( aMeshDS, _TShapeToLength, _S0, _minLen );
|
||||||
|
_mesh = theMesh;
|
||||||
|
}
|
||||||
|
double L = segLength( _S0, theEdgeLength, _minLen );
|
||||||
|
return L / (theCoarseConst + theFineConst * _fineness);
|
||||||
}
|
}
|
||||||
|
|
||||||
//=============================================================================
|
//=============================================================================
|
||||||
@ -203,7 +244,7 @@ double StdMeshers_AutomaticLength::GetLength(const SMESH_Mesh* theMesh,
|
|||||||
if ( theMesh != _mesh )
|
if ( theMesh != _mesh )
|
||||||
{
|
{
|
||||||
SMESHDS_Mesh* aMeshDS = const_cast< SMESH_Mesh* > ( theMesh )->GetMeshDS();
|
SMESHDS_Mesh* aMeshDS = const_cast< SMESH_Mesh* > ( theMesh )->GetMeshDS();
|
||||||
computeLengths( aMeshDS, _TShapeToLength );
|
computeLengths( aMeshDS, _TShapeToLength, _S0, _minLen );
|
||||||
_mesh = theMesh;
|
_mesh = theMesh;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -51,9 +51,18 @@ public:
|
|||||||
StdMeshers_AutomaticLength(int hypId, int studyId, SMESH_Gen * gen);
|
StdMeshers_AutomaticLength(int hypId, int studyId, SMESH_Gen * gen);
|
||||||
virtual ~ StdMeshers_AutomaticLength();
|
virtual ~ StdMeshers_AutomaticLength();
|
||||||
|
|
||||||
|
/*!
|
||||||
|
* \brief Computes segment for a given edge
|
||||||
|
*/
|
||||||
double GetLength(const SMESH_Mesh* aMesh, const TopoDS_Shape& anEdge)
|
double GetLength(const SMESH_Mesh* aMesh, const TopoDS_Shape& anEdge)
|
||||||
throw(SALOME_Exception);
|
throw(SALOME_Exception);
|
||||||
|
|
||||||
|
/*!
|
||||||
|
* \brief Computes segment length for an edge of given length
|
||||||
|
*/
|
||||||
|
double GetLength(const SMESH_Mesh* aMesh, const double edgeLength)
|
||||||
|
throw(SALOME_Exception);
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* \brief Set Fineness
|
* \brief Set Fineness
|
||||||
* \param theFineness - The Fineness value [0.0-1.0],
|
* \param theFineness - The Fineness value [0.0-1.0],
|
||||||
@ -89,7 +98,7 @@ public:
|
|||||||
protected:
|
protected:
|
||||||
std::map<const TopoDS_TShape*, double> _TShapeToLength;
|
std::map<const TopoDS_TShape*, double> _TShapeToLength;
|
||||||
const SMESH_Mesh* _mesh;
|
const SMESH_Mesh* _mesh;
|
||||||
double _fineness;
|
double _fineness, _S0, _minLen;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user