/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Copyright (C) 2015-2023 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License This file is part of OpenFOAM. OpenFOAM is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. OpenFOAM 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 General Public License for more details. You should have received a copy of the GNU General Public License along with OpenFOAM. If not, see . Description Tools for checking the mesh SourceFiles checkTools.C \*---------------------------------------------------------------------------*/ #ifndef checkTools_H #define checkTools_H #include "scalar.H" #include "indirectPrimitivePatch.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { class polyMesh; class surfaceWriter; class setWriter; class pointSet; class faceSet; class cellSet; class fileName; class polyMesh; //- Output directory for sets and surfaces fileName checkMeshOutputDir(const polyMesh& mesh); //- Print mesh statistics void printMeshStats(const polyMesh& mesh, const bool allTopology); //- Generate merged surface on master and write. Needs input patch // to be of mesh faces. void mergeAndWrite ( const polyMesh& mesh, const surfaceWriter& setWriter, const word& name, const indirectPrimitivePatch setPatch, const fileName& outputDir ); //- Write representation of (assembled) faceSet to surface file in // postProcessing/ directory void mergeAndWrite(const surfaceWriter&, const faceSet&); //- Write representation of (assembled) cellSet to surface file in // postProcessing/ directory void mergeAndWrite(const surfaceWriter&, const cellSet&); //- Write representation of (assembled) pointSet to 'set' file in // postProcessing/ directory void mergeAndWrite(const setWriter&, const pointSet&); } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #endif // ************************************************************************* //