Fixed URL for libccmio-2.6.1 (bug report #5 by Thomas Oliveira)
[foam-extend-3.2.git] / src / mesh / cfMesh / utilities / surfaceTools / createFundamentalSheets / createFundamentalSheetsJFS / createFundamentalSheetsJFS.H
blob0814fe6a6d62543e6cf5884fe02ac640548b9937
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 Class
25     createFundamentalSheetsJFS
27 Description
28     Inserts sheets at the boundary of the mesh to capture all feature edges
30 SourceFiles
31     createFundamentalSheetsJFS.C
33 \*---------------------------------------------------------------------------*/
35 #ifndef createFundamentalSheetsJFS_H
36 #define createFundamentalSheetsJFS_H
38 #include "polyMeshGenModifier.H"
39 #include "createFundamentalSheets.H"
40 #include "labelLongList.H"
41 #include "boolList.H"
43 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
45 namespace Foam
48 // Forward declarations
49 class meshSurfaceEngine;
51 /*---------------------------------------------------------------------------*\
52                 Class createFundamentalSheetsJFS Declaration
53 \*---------------------------------------------------------------------------*/
55 class createFundamentalSheetsJFS
57     public createFundamentalSheets
59     // Private member functions
60         //- check if all cells have only one face at the boundary
61         bool isTopologyOk() const;
63         //- create inital sheet from all boundary faces of the surface mesh
64         void createInitialSheet();
66         //- create fundamental sheets for all feature edges
67         void createSheetsAtFeatureEdges();
69         //- Disallow default construct
70         createFundamentalSheetsJFS();
72         //- Disallow default bitwise copy construct
73         createFundamentalSheetsJFS(const createFundamentalSheetsJFS&);
75         //- Disallow default bitwise assignment
76         void operator=(const createFundamentalSheetsJFS&);
78 public:
80     // Runtime type information
81         TypeName("Shepherd");
83     // Constructors
85         //- Construct from mesh data
86         createFundamentalSheetsJFS
87         (
88             polyMeshGen& mesh,
89             const bool createWrapperSheet = true
90         );
92     // Destructor
94         ~createFundamentalSheetsJFS();
96     // Member Functions
100 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
102 } // End namespace Foam
104 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
106 #endif
108 // ************************************************************************* //