netgenplugin/src/NETGENPlugin/NETGENPlugin_SimpleHypothesis_2D.cxx

249 lines
7.6 KiB
C++
Raw Normal View History

2023-06-19 17:55:24 +01:00
// Copyright (C) 2007-2023 CEA, EDF, OPEN CASCADE
2009-02-17 07:15:34 +00:00
//
2012-08-09 11:45:31 +00:00
// 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
2014-02-19 16:50:20 +04:00
// version 2.1 of the License, or (at your option) any later version.
2009-02-17 07:15:34 +00:00
//
2012-08-09 11:45:31 +00:00
// 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.
2009-02-17 07:15:34 +00:00
//
2012-08-09 11:45:31 +00:00
// 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
2009-02-17 07:15:34 +00:00
//
2012-08-09 11:45:31 +00:00
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
2009-02-17 07:15:34 +00:00
//
2012-08-09 11:45:31 +00:00
2009-02-17 07:15:34 +00:00
// NETGENPlugin : C++ implementation
// File : NETGENPlugin_SimpleHypothesis_2D.cxx
// Author : Edward AGAPOV
// Project : SALOME
//=============================================================================
//
#include "NETGENPlugin_SimpleHypothesis_2D.hxx"
#include "NETGENPlugin_Hypothesis.hxx"
#include <SMESHDS_SubMesh.hxx>
#include <SMESH_ControlsDef.hxx>
2009-02-17 07:15:34 +00:00
#include <SMESH_Mesh.hxx>
#include <SMESH_subMesh.hxx>
#include <TopExp_Explorer.hxx>
#include <utilities.h>
using namespace std;
//=============================================================================
/*!
*
*/
//=============================================================================
NETGENPlugin_SimpleHypothesis_2D::NETGENPlugin_SimpleHypothesis_2D (int hypId,
SMESH_Gen * gen)
: SMESH_Hypothesis(hypId, gen),
2009-02-17 07:15:34 +00:00
_nbSegments ((int)NETGENPlugin_Hypothesis::GetDefaultNbSegPerEdge()),
_segmentLength(0),
2012-08-09 11:45:31 +00:00
_area (0.),
_allowQuad (false)
2009-02-17 07:15:34 +00:00
{
_name = "NETGEN_SimpleParameters_2D";
_param_algo_dim = 2;
}
//=============================================================================
/*!
*
*/
//=============================================================================
2020-08-21 13:42:17 +03:00
void NETGENPlugin_SimpleHypothesis_2D::SetNumberOfSegments(int nb)
2009-02-17 07:15:34 +00:00
{
if ( nb < 0 )
2009-02-17 07:15:34 +00:00
throw SALOME_Exception("Number of segments must be positive");
if (nb != _nbSegments)
{
_nbSegments = nb;
if ( _nbSegments ) _segmentLength = 0.;
NotifySubMeshesHypothesisModification();
}
}
//=============================================================================
/*!
*
*/
//=============================================================================
void NETGENPlugin_SimpleHypothesis_2D::SetLocalLength(double segmentLength)
{
if ( segmentLength < DBL_MIN )
throw SALOME_Exception("segment length must be more than zero");
if (segmentLength != _segmentLength)
{
_segmentLength = segmentLength;
if ( _segmentLength > DBL_MIN ) _nbSegments = 0;
NotifySubMeshesHypothesisModification();
}
}
//=============================================================================
/*!
*
*/
//=============================================================================
void NETGENPlugin_SimpleHypothesis_2D::LengthFromEdges()
{
if (_area > DBL_MIN )
{
_area = 0;
NotifySubMeshesHypothesisModification();
}
}
//=============================================================================
/*!
*
*/
//=============================================================================
void NETGENPlugin_SimpleHypothesis_2D::SetMaxElementArea(double area)
{
if ( area < DBL_MIN )
area = 0.;
if (_area != area)
{
_area = area;
NotifySubMeshesHypothesisModification();
}
}
2012-08-09 11:45:31 +00:00
//=======================================================================
//function : SetAllowQuadrangles
//purpose : Enables/disables generation of quadrangular faces
//=======================================================================
void NETGENPlugin_SimpleHypothesis_2D::SetAllowQuadrangles(bool toAllow)
{
if ( _allowQuad != toAllow )
{
_allowQuad = toAllow;
NotifySubMeshesHypothesisModification();
}
}
//=======================================================================
//function : GetAllowQuadrangles
//purpose : Returns true if generation of quadrangular faces is enabled
//=======================================================================
bool NETGENPlugin_SimpleHypothesis_2D::GetAllowQuadrangles() const
{
return _allowQuad;
}
2009-02-17 07:15:34 +00:00
//=============================================================================
/*!
*
*/
//=============================================================================
ostream & NETGENPlugin_SimpleHypothesis_2D::SaveTo(ostream & save)
{
2012-08-09 11:45:31 +00:00
save << _nbSegments << " " << _segmentLength << " " << _area << " " << _allowQuad;
2009-02-17 07:15:34 +00:00
return save;
}
//=============================================================================
/*!
*
*/
//=============================================================================
istream & NETGENPlugin_SimpleHypothesis_2D::LoadFrom(istream & load)
{
bool isOK = true;
double val;
isOK = static_cast<bool>(load >> val);
2009-02-17 07:15:34 +00:00
if (isOK)
_nbSegments = (int) val;
else
load.clear(ios::badbit | load.rdstate());
isOK = static_cast<bool>(load >> val);
2009-02-17 07:15:34 +00:00
if (isOK)
_segmentLength = val;
else
load.clear(ios::badbit | load.rdstate());
isOK = static_cast<bool>(load >> val);
2009-02-17 07:15:34 +00:00
if (isOK)
_area = val;
else
load.clear(ios::badbit | load.rdstate());
2012-08-09 11:45:31 +00:00
load >> _allowQuad;
2009-02-17 07:15:34 +00:00
return load;
}
//================================================================================
/*!
* \brief Does nothing
* \param theMesh - the built mesh
* \param theShape - the geometry of interest
* \retval bool - always false
*/
//================================================================================
bool NETGENPlugin_SimpleHypothesis_2D::SetParametersByMesh(const SMESH_Mesh* theMesh,
const TopoDS_Shape& theShape)
{
// Find out nb of segments.
smIdType nbSeg = 0, nbEdges = 0;
2009-02-17 07:15:34 +00:00
TopExp_Explorer exp( theShape, TopAbs_EDGE );
for ( ; exp.More(); exp.Next() ) {
SMESH_subMesh* sm = theMesh->GetSubMeshContaining( exp.Current() );
if ( sm && !sm->IsEmpty() ) {
nbSeg += sm->GetSubMeshDS()->NbElements();
nbEdges++;
}
}
if ( nbEdges )
_nbSegments = nbSeg / nbEdges;
// Find out max face area
_area = 0;
SMESH::Controls::Area areaControl;
SMESH::Controls::TSequenceOfXYZ nodesCoords;
const int nbFacesToCheck = 100;
for ( exp.Init( theShape, TopAbs_FACE ); exp.More(); exp.Next() ) {
SMESH_subMesh* sm = theMesh->GetSubMeshContaining( exp.Current() );
if ( sm && !sm->IsEmpty() ) {
SMDS_ElemIteratorPtr fIt = sm->GetSubMeshDS()->GetElements();
int nbCheckedFaces = 0;
while ( fIt->more() && nbCheckedFaces++ < nbFacesToCheck ) {
const SMDS_MeshElement* elem = fIt->next();
areaControl.GetPoints( elem, nodesCoords );
_area = max( _area, areaControl.GetValue( nodesCoords ));
}
}
}
return nbEdges;
}
//================================================================================
/*!
* \brief Initialize my parameter values by default parameters.
* \retval bool - true if parameter values have been successfully defined
*/
//================================================================================
bool NETGENPlugin_SimpleHypothesis_2D::SetParametersByDefaults(const TDefaults& dflts,
const SMESH_Mesh* /*theMesh*/)
{
_nbSegments = dflts._nbSegments;
_segmentLength = dflts._elemLength;
return _nbSegments && _segmentLength > 0;
}