initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / applications / utilities / mesh / advanced / selectCells / edgeStats.H
blob6cba727557c24d4d88c54515157bc56441346703
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2009 OpenCFD Ltd.
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
11     OpenFOAM 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 2 of the License, or (at your
14     option) any later version.
16     OpenFOAM 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 OpenFOAM; if not, write to the Free Software Foundation,
23     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 Class
26     Foam::edgeStats
28 Description
29     Helper class to calculate minimum edge length on mesh.
31 SourceFiles
32     edgeStats.C
34 \*---------------------------------------------------------------------------*/
36 #ifndef edgeStats_H
37 #define edgeStats_H
39 #include "direction.H"
40 #include "scalar.H"
42 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
44 namespace Foam
47 // Forward declaration of classes
48 class polyMesh;
49 class Ostream;
50 class twoDPointCorrector;
52 /*---------------------------------------------------------------------------*\
53                            Class edgeStats Declaration
54 \*---------------------------------------------------------------------------*/
56 class edgeStats
58     // Private data
60         //- Reference to mesh.
61         const polyMesh& mesh_;
63         //- Component (0,1,2) of normal direction or 3 if 3D case.
64         direction normalDir_;
66     // Private Member Functions
68         //- If 2d get component of normal dir.
69         direction getNormalDir(const twoDPointCorrector*) const;
70         
72         //- Disallow default bitwise copy construct
73         edgeStats(const edgeStats&);
75         //- Disallow default bitwise assignment
76         void operator=(const edgeStats&);
79 public:
81     // Static data members
83         // Max (cos of) angle for edges to be considered aligned with axis.
84         static const scalar edgeTol_;
87     // Constructors
89         //- Construct from mesh
90         edgeStats(const polyMesh& mesh);
92         //- Construct from mesh and corrector
93         edgeStats(const polyMesh& mesh, const twoDPointCorrector* );
96     // Member Functions
98         //- Calculate minimum edge length and print
99         scalar minLen(Ostream& os) const;
103 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
105 } // End namespace Foam
107 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
109 #endif
111 // ************************************************************************* //