2009-02-17 10:27:49 +05:00
|
|
|
// Copyright (C) 2007-2008 CEA/DEN, EDF R&D, OPEN CASCADE
|
|
|
|
//
|
|
|
|
// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
|
|
|
|
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
|
2003-07-10 16:13:42 +06:00
|
|
|
//
|
2009-02-17 10:27:49 +05: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
|
|
|
|
// version 2.1 of the License.
|
2003-07-10 16:13:42 +06:00
|
|
|
//
|
2009-02-17 10:27:49 +05: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.
|
2003-07-10 16:13:42 +06:00
|
|
|
//
|
2009-02-17 10:27:49 +05: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
|
2003-07-10 16:13:42 +06:00
|
|
|
//
|
2009-02-17 10:27:49 +05:00
|
|
|
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
|
|
|
//
|
|
|
|
// SMESH SMESH : implementaion of SMESH idl descriptions
|
2003-07-10 16:13:42 +06:00
|
|
|
// File : SMESH_Gen.hxx
|
|
|
|
// Author : Paul RASCLE, EDF
|
|
|
|
// Module : SMESH
|
2009-02-17 10:27:49 +05:00
|
|
|
//
|
2003-05-19 19:18:36 +06:00
|
|
|
|
|
|
|
#ifndef _SMESH_GEN_HXX_
|
|
|
|
#define _SMESH_GEN_HXX_
|
|
|
|
|
2008-03-07 12:47:05 +05:00
|
|
|
#include "SMESH_SMESH.hxx"
|
|
|
|
|
2003-05-19 19:18:36 +06:00
|
|
|
#include "Utils_SALOME_Exception.hxx"
|
|
|
|
|
|
|
|
#include "SMESH_Hypothesis.hxx"
|
2008-03-07 12:47:05 +05:00
|
|
|
#include "SMESH_ComputeError.hxx"
|
2003-05-19 19:18:36 +06:00
|
|
|
#include "SMESH_Algo.hxx"
|
2008-03-07 12:47:05 +05:00
|
|
|
#include "SMESH_0D_Algo.hxx"
|
2003-05-19 19:18:36 +06:00
|
|
|
#include "SMESH_1D_Algo.hxx"
|
|
|
|
#include "SMESH_2D_Algo.hxx"
|
|
|
|
#include "SMESH_3D_Algo.hxx"
|
|
|
|
#include "SMESH_Mesh.hxx"
|
|
|
|
|
|
|
|
#include <TopoDS_Shape.hxx>
|
|
|
|
|
|
|
|
#include <map>
|
2009-02-17 10:27:49 +05:00
|
|
|
#include <list>
|
2004-12-01 15:48:31 +05:00
|
|
|
|
2008-03-07 12:47:05 +05:00
|
|
|
class SMESHDS_Document;
|
|
|
|
|
|
|
|
typedef SMESH_Hypothesis::Hypothesis_Status TAlgoStateErrorName;
|
2003-05-19 19:18:36 +06:00
|
|
|
|
|
|
|
typedef struct studyContextStruct
|
|
|
|
{
|
2008-03-07 12:47:05 +05:00
|
|
|
std::map < int, SMESH_Hypothesis * >mapHypothesis;
|
|
|
|
std::map < int, SMESH_Mesh * >mapMesh;
|
|
|
|
SMESHDS_Document * myDocument;
|
2003-09-04 15:21:41 +06:00
|
|
|
} StudyContextStruct;
|
2003-05-19 19:18:36 +06:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
typedef std::set<int> TSetOfInt;
|
|
|
|
|
2008-03-07 12:47:05 +05:00
|
|
|
class SMESH_EXPORT SMESH_Gen
|
2003-05-19 19:18:36 +06:00
|
|
|
{
|
2004-06-18 14:55:35 +06:00
|
|
|
public:
|
|
|
|
SMESH_Gen();
|
|
|
|
~SMESH_Gen();
|
|
|
|
|
2006-03-13 20:29:49 +05:00
|
|
|
SMESH_Mesh* CreateMesh(int theStudyId, bool theIsEmbeddedMode)
|
2004-06-18 14:55:35 +06:00
|
|
|
throw(SALOME_Exception);
|
2008-03-07 12:47:05 +05:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
/*!
|
|
|
|
* \brief Computes aMesh on aShape
|
|
|
|
* \param anUpward - compute from vertices up to more complex shape (internal usage)
|
|
|
|
* \param aDim - upper level dimension of the mesh computation
|
|
|
|
* \param aShapesId - list of shapes with computed mesh entities (elements or nodes)
|
|
|
|
* \retval bool - true if none submesh failed to compute
|
|
|
|
*/
|
|
|
|
bool Compute(::SMESH_Mesh & aMesh,
|
|
|
|
const TopoDS_Shape & aShape,
|
|
|
|
const bool anUpward=false,
|
|
|
|
const ::MeshDimension aDim=::MeshDim_3D,
|
|
|
|
TSetOfInt* aShapesId=0);
|
2004-06-18 14:55:35 +06:00
|
|
|
|
|
|
|
bool CheckAlgoState(SMESH_Mesh& aMesh, const TopoDS_Shape& aShape);
|
|
|
|
// notify on bad state of attached algos, return false
|
|
|
|
// if Compute() would fail because of some algo bad state
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
/*!
|
|
|
|
* \brief Sets number of segments per diagonal of boundary box of geometry by which
|
|
|
|
* default segment length of appropriate 1D hypotheses is defined
|
|
|
|
*/
|
|
|
|
void SetBoundaryBoxSegmentation( int theNbSegments ) { _segmentation = theNbSegments; }
|
|
|
|
int GetBoundaryBoxSegmentation() const { return _segmentation; }
|
|
|
|
/*!
|
|
|
|
* \brief Sets default number of segments per edge
|
|
|
|
*/
|
|
|
|
void SetDefaultNbSegments(int nb) { _nbSegments = nb; }
|
|
|
|
int GetDefaultNbSegments() const { return _nbSegments; }
|
2005-11-14 14:11:54 +05:00
|
|
|
|
|
|
|
struct TAlgoStateError
|
|
|
|
{
|
|
|
|
TAlgoStateErrorName _name;
|
|
|
|
const SMESH_Algo* _algo;
|
|
|
|
int _algoDim;
|
|
|
|
bool _isGlobalAlgo;
|
|
|
|
|
2008-03-07 12:47:05 +05:00
|
|
|
TAlgoStateError(): _algoDim(0),_algo(0),_name(SMESH_Hypothesis::HYP_OK) {}
|
2005-11-14 14:11:54 +05:00
|
|
|
void Set(TAlgoStateErrorName name, const SMESH_Algo* algo, bool isGlobal)
|
|
|
|
{ _name = name; _algo = algo; _algoDim = algo->GetDim(); _isGlobalAlgo = isGlobal; }
|
|
|
|
void Set(TAlgoStateErrorName name, const int algoDim, bool isGlobal)
|
|
|
|
{ _name = name; _algo = 0; _algoDim = algoDim; _isGlobalAlgo = isGlobal; }
|
|
|
|
};
|
|
|
|
|
|
|
|
bool GetAlgoState(SMESH_Mesh& aMesh, const TopoDS_Shape& aShape,
|
|
|
|
std::list< SMESH_Gen::TAlgoStateError > & theErrors);
|
|
|
|
// notify on bad state of attached algos, return false
|
|
|
|
// if Compute() would fail because of some algo bad state
|
|
|
|
// theErrors list contains problems description
|
|
|
|
|
2004-06-18 14:55:35 +06:00
|
|
|
StudyContextStruct *GetStudyContext(int studyId);
|
|
|
|
|
|
|
|
static int GetShapeDim(const TopAbs_ShapeEnum & aShapeType);
|
|
|
|
static int GetShapeDim(const TopoDS_Shape & aShape)
|
|
|
|
{ return GetShapeDim( aShape.ShapeType() ); }
|
2009-02-17 10:27:49 +05:00
|
|
|
SMESH_Algo* GetAlgo(SMESH_Mesh & aMesh, const TopoDS_Shape & aShape, TopoDS_Shape* assignedTo=0);
|
2005-02-04 15:58:21 +05:00
|
|
|
static bool IsGlobalHypothesis(const SMESH_Hypothesis* theHyp, SMESH_Mesh& aMesh);
|
2004-06-18 14:55:35 +06:00
|
|
|
|
|
|
|
// inherited methods from SALOMEDS::Driver
|
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
// void Save(int studyId, const char *aUrlOfFile);
|
|
|
|
// void Load(int studyId, const char *aUrlOfFile);
|
|
|
|
// void Close(int studyId);
|
|
|
|
// const char *ComponentDataType();
|
2004-06-18 14:55:35 +06:00
|
|
|
|
2009-02-17 10:27:49 +05:00
|
|
|
// const char *IORToLocalPersistentID(const char *IORString, bool & IsAFile);
|
|
|
|
// const char *LocalPersistentIDToIOR(const char *aLocalPersistentID);
|
2004-06-18 14:55:35 +06:00
|
|
|
|
|
|
|
int GetANewId();
|
|
|
|
|
2004-12-01 15:48:31 +05:00
|
|
|
std::map < int, SMESH_Algo * >_mapAlgo;
|
2008-03-07 12:47:05 +05:00
|
|
|
std::map < int, SMESH_0D_Algo * >_map0D_Algo;
|
2004-12-01 15:48:31 +05:00
|
|
|
std::map < int, SMESH_1D_Algo * >_map1D_Algo;
|
|
|
|
std::map < int, SMESH_2D_Algo * >_map2D_Algo;
|
|
|
|
std::map < int, SMESH_3D_Algo * >_map3D_Algo;
|
2004-06-18 14:55:35 +06:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
int _localId; // unique Id of created objects, within SMESH_Gen entity
|
2004-12-01 15:48:31 +05:00
|
|
|
std::map < int, StudyContextStruct * >_mapStudyContext;
|
2004-06-18 14:55:35 +06:00
|
|
|
|
|
|
|
// hypotheses managing
|
|
|
|
int _hypId;
|
2009-02-17 10:27:49 +05:00
|
|
|
|
|
|
|
// number of segments per diagonal of boundary box of geometry by which
|
|
|
|
// default segment length of appropriate 1D hypotheses is defined
|
|
|
|
int _segmentation;
|
|
|
|
// default of segments
|
|
|
|
int _nbSegments;
|
2003-05-19 19:18:36 +06:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|