From: gdd Date: Tue, 6 Sep 2011 14:40:22 +0000 (+0000) Subject: Update Hexotic doc and remove some MESSAGE X-Git-Tag: V6_4_0a1~78 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=9116958a2ba3432398fbd93f9ec0acb97c43bc17;p=modules%2Fsmesh.git Update Hexotic doc and remove some MESSAGE --- diff --git a/doc/salome/gui/SMESH/images/hexotic_parameters.png b/doc/salome/gui/SMESH/images/hexotic_parameters.png index 0cb527b93..40abfedd3 100644 Binary files a/doc/salome/gui/SMESH/images/hexotic_parameters.png and b/doc/salome/gui/SMESH/images/hexotic_parameters.png differ diff --git a/doc/salome/gui/SMESH/input/hexotic_hypo.doc b/doc/salome/gui/SMESH/input/hexotic_hypo.doc index 15bc862a6..d42d1f827 100644 --- a/doc/salome/gui/SMESH/input/hexotic_hypo.doc +++ b/doc/salome/gui/SMESH/input/hexotic_hypo.doc @@ -26,6 +26,14 @@ Parameters by default).
  • Sharp angle threshold in degrees - specifies the angle between two triangles above which the hex mesher will consider the edge common to these two triangles as being a "ridge". A ridge is a geometrical entity (a sharp edge) which has to be kept as it is in the final hex mesh.The default value is 60 (degrees).
    If you raise this value, the hex mesher will detect less ridges, and the final solid mesh will therefore be smoother. On the other hand, if you reduce this value, more ridges will be detected and the algorithm will face harder situations to conform to.
  • + +
  • Number of threads - specifies the number of threads to be used (this should be the number of cores or processors of a shared memory parallel architecture). +
  • + +
  • Working directory - specifies the directory where the input/output files will be created. +
  • +\note If BLSURF is used as 2D algo, and if a GMF file is defined as output file (using SetGMFFile(my2Dmesh.mesh)), then Hexotic will use this file as input. +This allows to avoid the reconstruction of the GMF file from the SMESH structure and can improve the global computation time. */ diff --git a/src/SMDS/SMDS_Mesh.cxx b/src/SMDS/SMDS_Mesh.cxx index 909bae2ab..453cb5b36 100644 --- a/src/SMDS/SMDS_Mesh.cxx +++ b/src/SMDS/SMDS_Mesh.cxx @@ -228,7 +228,7 @@ SMDS_MeshNode * SMDS_Mesh::AddNodeWithID(double x, double y, double z, int ID) if (ID >= myNodes.size()) { myNodes.resize(ID+SMDS_Mesh::chunkSize, 0); - MESSAGE(" ------------------ myNodes resize " << ID << " --> " << ID+SMDS_Mesh::chunkSize); +// MESSAGE(" ------------------ myNodes resize " << ID << " --> " << ID+SMDS_Mesh::chunkSize); } myNodes[ID] = node; myNodeIDFactory->BindID(ID,node); @@ -1414,9 +1414,9 @@ const SMDS_MeshNode * SMDS_Mesh::FindNode(int ID) const { if (ID < 1 || ID >= myNodes.size()) { - MESSAGE("------------------------------------------------------------------------- "); - MESSAGE("----------------------------------- bad ID " << ID << " " << myNodes.size()); - MESSAGE("------------------------------------------------------------------------- "); +// MESSAGE("------------------------------------------------------------------------- "); +// MESSAGE("----------------------------------- bad ID " << ID << " " << myNodes.size()); +// MESSAGE("------------------------------------------------------------------------- "); return 0; } return (const SMDS_MeshNode *)myNodes[ID]; @@ -2872,7 +2872,7 @@ static set * getFinitElements(const SMDS_MeshElement * i++; } set *retSet=intersectionOfSets(initSet, numberOfSets); - MESSAGE("nb elems " << i << " intersection " << retSet->size()); +// MESSAGE("nb elems " << i << " intersection " << retSet->size()); delete [] initSet; return retSet; }