diff --git a/Mesh/meshGRegionBoundaryLayers.cpp b/Mesh/meshGRegionBoundaryLayers.cpp index 7640fbc25e883d5b36071aa8899a3d2109297a36..5625d67ce1e953f123b9c2cca28c9310d9a665ef 100644 --- a/Mesh/meshGRegionBoundaryLayers.cpp +++ b/Mesh/meshGRegionBoundaryLayers.cpp @@ -1,3 +1,8 @@ +// Gmsh - Copyright (C) 1997-2012 C. Geuzaine, J.-F. Remacle +// +// See the LICENSE.txt file for license information. Please report all +// bugs and problems to <gmsh@geuz.org>. + #include "meshGFaceBoundaryLayers.h" #include "GModel.h" #include "GRegion.h" @@ -9,7 +14,7 @@ // // ^ ni -// | +// | // | // +-----------------+ // bi / @@ -27,7 +32,7 @@ static double solidAngle (SVector3 &ni, SVector3 &nj, double a = atan2(sina.norm(),cosa); double sign = dot (nj, bibj); return sign > 0 ? fabs (a) : -fabs(a); -} +} BoundaryLayerColumns* buildAdditionalPoints3D_CAD_BASED (GRegion *gr) { } @@ -61,7 +66,7 @@ BoundaryLayerColumns* buildAdditionalPoints3D (GRegion *gr) while(itf != faces.end()){ if (blf->isFaceBL((*itf)->tag())){ printf("FACE %d is a boundary layer face %d triangles\n",(*itf)->tag(),(*itf)->triangles.size()); - for(unsigned int i = 0; i< (*itf)->triangles.size(); i++) + for(unsigned int i = 0; i< (*itf)->triangles.size(); i++) for(unsigned int j = 0; j< 3; j++){ if ((*itf)->triangles[i]->getVertex(j)->onWhat()->dim() != 3){ _columns->_non_manifold_faces.insert(std::make_pair((*itf)->triangles[i]->getVertex(j),(*itf)->triangles[i])); @@ -73,7 +78,7 @@ BoundaryLayerColumns* buildAdditionalPoints3D (GRegion *gr) ++itf; } printf("%d vertices \n",_vertices.size()); - + // assume that the initial mesh has been created i.e. that there exist // tetrahedra inside the domain. Tetrahedra are used to define // exterior normals @@ -87,8 +92,8 @@ BoundaryLayerColumns* buildAdditionalPoints3D (GRegion *gr) MVertex *v2 = f.getVertex(2); MVertex *v3 = 0; for (int k=0;k<4;k++){ - if (gr->tetrahedra[i]->getVertex(k) != v0 && - gr->tetrahedra[i]->getVertex(k) != v1 && + if (gr->tetrahedra[i]->getVertex(k) != v0 && + gr->tetrahedra[i]->getVertex(k) != v1 && gr->tetrahedra[i]->getVertex(k) != v2 ){ v3 = gr->tetrahedra[i]->getVertex(k); } @@ -102,9 +107,9 @@ BoundaryLayerColumns* buildAdditionalPoints3D (GRegion *gr) if (sign > 0)it->second = n; else it->second = n*(-1.0); } - } + } } - + // for all boundry points for (std::set<MVertex*>::iterator it = _vertices.begin(); it != _vertices.end() ; ++it){ std::vector<MTriangle*> _connections; @@ -115,7 +120,7 @@ BoundaryLayerColumns* buildAdditionalPoints3D (GRegion *gr) _connections.push_back (itm->second); _allDirs.push_back (_normals[itm->second->getFace(0)]); } - + // a list of normals is associated to a given vertex SPoint3 p ((*it)->x(),(*it)->y(),(*it)->z()); std::vector<std::vector<int> > groupsOfDirections; @@ -129,7 +134,7 @@ BoundaryLayerColumns* buildAdditionalPoints3D (GRegion *gr) SPoint3 bj = _connections[iDir]->barycenter(); SVector3 nj = _allDirs[iDir]; double angle = solidAngle (ni,nj,bi,bj); - // those two directions are + // those two directions are if (angle < _treshold){ found = true; groupsOfDirections[j].push_back(i); @@ -144,8 +149,8 @@ BoundaryLayerColumns* buildAdditionalPoints3D (GRegion *gr) groupsOfDirections.push_back(newDir); } } - - + + std::vector<SVector3> shoot; for (unsigned int j=0;j<groupsOfDirections.size();j++){ SVector3 n; @@ -156,7 +161,7 @@ BoundaryLayerColumns* buildAdditionalPoints3D (GRegion *gr) n.normalize(); shoot.push_back(n); } - + // now create the BL points for (unsigned int DIR=0;DIR<shoot.size();DIR++){ SVector3 n = shoot[DIR]; diff --git a/Post/PViewAsSimpleFunction.cpp b/Post/PViewAsSimpleFunction.cpp index 7a2f347dd3146db83bfebd7bc332c52c16f6dad1..c8102561a3e1b927ba6840c5b1f116e81d29346e 100644 --- a/Post/PViewAsSimpleFunction.cpp +++ b/Post/PViewAsSimpleFunction.cpp @@ -1,10 +1,17 @@ +// Gmsh - Copyright (C) 1997-2012 C. Geuzaine, J.-F. Remacle +// +// See the LICENSE.txt file for license information. Please report all +// bugs and problems to <gmsh@geuz.org>. + #include "PView.h" #include "PViewData.h" #include "PViewAsSimpleFunction.h" -double PViewEvaluator::operator() (const double x, const double y, const double z) const{ + +double PViewEvaluator::operator() (const double x, const double y, const double z) const +{ PViewData * pvd = _pv->getData(); double value; - bool found = pvd->searchScalar(x,y,z,&value,_step); + bool found = pvd->searchScalar(x, y, z, &value, _step); if (found) return value; return 1.e22; } diff --git a/Post/PViewAsSimpleFunction.h b/Post/PViewAsSimpleFunction.h index e02918fcc1f55542c75dcac181ccea9e446904e1..a5a0ca4385cea93e80ad8ddaa859769f09507861 100644 --- a/Post/PViewAsSimpleFunction.h +++ b/Post/PViewAsSimpleFunction.h @@ -1,14 +1,22 @@ +// Gmsh - Copyright (C) 1997-2012 C. Geuzaine, J.-F. Remacle +// +// See the LICENSE.txt file for license information. Please report all +// bugs and problems to <gmsh@geuz.org>. + #ifndef _PVIEW_AS_SIMPLEFUNCTION_H #define _PVIEW_AS_SIMPLEFUNCTION_H + #include "simpleFunction.h" + class PView; + class PViewEvaluator : public simpleFunction<double> { PView *_pv; int _step; -public: - PViewEvaluator (PView *pv) : _pv(pv),_step(0) {} + public: + PViewEvaluator (PView *pv) : _pv(pv), _step(0) {} double operator() (const double x, const double y, const double z) const; - void setStep (int s) {_step=s;} + void setStep (int s) { _step = s; } }; #endif