Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / src / mesh / cfMesh / utilities / meshes / polyMeshGenChecks / polyMeshGenChecks.C
blob3cf3b5ba6358a11e4b23c610a30b087cf8afd8ac
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | cfMesh: A library for mesh generation
4    \\    /   O peration     |
5     \\  /    A nd           | Author: Franjo Juretic (franjo.juretic@c-fields.com)
6      \\/     M anipulation  | Copyright (C) Creative Fields, Ltd.
7 -------------------------------------------------------------------------------
8 License
9     This file is part of cfMesh.
11     cfMesh is free software; you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by the
13     Free Software Foundation; either version 3 of the License, or (at your
14     option) any later version.
16     cfMesh is distributed in the hope that it will be useful, but WITHOUT
17     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
19     for more details.
21     You should have received a copy of the GNU General Public License
22     along with cfMesh.  If not, see <http://www.gnu.org/licenses/>.
24 \*---------------------------------------------------------------------------*/
26 #include "polyMeshGenChecks.H"
27 #include "polyMeshGenAddressing.H"
28 #include "pyramidPointFaceRef.H"
29 #include "tetrahedron.H"
30 #include "cell.H"
31 #include "mathematicalConstants.H"
32 #include "ListOps.H"
33 #include "Map.H"
35 # ifdef USE_OMP
36 #include <omp.h>
37 # endif
39 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
41 namespace Foam
44 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
46 namespace polyMeshGenChecks
49 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
51 bool checkGeometry(const polyMeshGen& mesh, const bool report)
53     label noFailedChecks(0);
55     if( checkClosedBoundary(mesh, report) ) ++noFailedChecks;
56     if( checkClosedCells(mesh, report) ) ++noFailedChecks;
57     if( checkFaceAreas(mesh, report) ) ++noFailedChecks;
58     if( checkCellVolumes(mesh, report) ) ++noFailedChecks;
59     if( checkFaceDotProduct(mesh, report) ) ++noFailedChecks;
60     if( checkFaceUniformity(mesh, report) ) ++noFailedChecks;
61     if( checkFacePyramids(mesh, report) ) ++noFailedChecks;
62     if( checkFaceSkewness(mesh, report) ) ++noFailedChecks;
63     if( checkCellPartTetrahedra(mesh, report) ) ++noFailedChecks;
65     if( noFailedChecks == 0 )
66     {
67         if( report )
68             Info << "Mesh geometry OK." << endl;
70         return false;
71     }
72     else
73     {
74         Info<< "Failed " << noFailedChecks << " mesh geometry checks." << endl;
76         return true;
77     }
80 bool checkTopology(const polyMeshGen& mesh, const bool report)
82     label noFailedChecks(0);
84     if( checkPoints(mesh, report) ) ++noFailedChecks;
85     if( checkUpperTriangular(mesh, report) ) ++noFailedChecks;
86     if( checkCellsZipUp(mesh, report) ) ++noFailedChecks;
87     if( checkFaceVertices(mesh, report) ) ++noFailedChecks;
89     if( noFailedChecks == 0 )
90     {
91         if( report )
92             Info << "Mesh topology OK." << endl;
94         return false;
95     }
96     else
97     {
98         Info<< "Failed " << noFailedChecks << " mesh topology checks." << endl;
100         return true;
101     }
104 bool checkMesh(const polyMeshGen& mesh, const bool report)
106     bool failedChecks = checkTopology(mesh, report);
107     failedChecks |= checkGeometry(mesh, report);
109     if( !failedChecks )
110     {
111         if( report )
112             Info << "Mesh OK." << endl;
114         return false;
115     }
116     else
117     {
118         Info << "Failed some mesh checks." << endl;
120         return true;
121     }
124 } // End namespace polyMeshGenChecks
126 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
128 } // End namespace Foam
130 // ************************************************************************* //