triSurfaceMeshFeatures.H
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration | Website: https://openfoam.org
5  \\ / A nd | Copyright (C) 2013-2019 OpenFOAM Foundation
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8 License
9  This file is part of OpenFOAM.
10 
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
13  the Free Software Foundation, either version 3 of the License, or
14  (at your option) any later version.
15 
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.
20 
21  You should have received a copy of the GNU General Public License
22  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
23 
24 Class
25  Foam::triSurfaceMeshFeatures
26 
27 Description
28 
29 SourceFiles
30  triSurfaceMeshFeatures.C
31 
32 \*---------------------------------------------------------------------------*/
33 
34 #ifndef triSurfaceMeshFeatures_H
35 #define triSurfaceMeshFeatures_H
36 
38 
39 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
40 
41 namespace Foam
42 {
43 
44 /*---------------------------------------------------------------------------*\
45  Class triSurfaceMeshFeatures Declaration
46 \*---------------------------------------------------------------------------*/
47 
49 :
51 {
52 private:
53 
54  // Private Member Data
55 
56  const scalar includedAngle_;
57 
58  //- Which side of the surface to mesh
60 
61 
62 public:
63 
64  //- Runtime type information
65  TypeName("triSurfaceMeshFeatures");
66 
67 
68  // Constructors
69 
70  //- Construct from dictionary (used by searchableSurface)
72  (
74  const dictionary& dict
75  );
76 
77  //- Disallow default bitwise copy construction
79 
80 
81  //- Destructor
82  virtual ~triSurfaceMeshFeatures();
83 
84 
85  // Member Functions
86 
87  //- Return true for a triSurfaceMesh having features
88  virtual bool hasFeatures() const
89  {
90  return true;
91  }
92 
93  //- Return an extendedFeatureEdgeMesh containing the features
95 
96 
97  // Member Operators
98 
99  //- Disallow default bitwise assignment
100  void operator=(const triSurfaceMeshFeatures&) = delete;
101 };
102 
103 
104 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
105 
106 } // End namespace Foam
107 
108 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
109 
110 #endif
111 
112 // ************************************************************************* //
const searchableSurface & surface() const
Return a reference to the searchable surface.
triSurfaceMeshFeatures(const searchableSurface &surface, const dictionary &dict)
Construct from dictionary (used by searchableSurface)
virtual ~triSurfaceMeshFeatures()
Destructor.
Decorator that returns the features of a searchable surface.
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:158
void operator=(const triSurfaceMeshFeatures &)=delete
Disallow default bitwise assignment.
Base class of (analytical or triangulated) surface. Encapsulates all the search routines. WIP.
const dictionary & dict() const
Return a reference to the dictionary.
virtual autoPtr< extendedFeatureEdgeMesh > features() const
Return an extendedFeatureEdgeMesh containing the features.
sideVolumeType
Normals point to the outside.
virtual bool hasFeatures() const
Return true for a triSurfaceMesh having features.
TypeName("triSurfaceMeshFeatures")
Runtime type information.
An auto-pointer similar to the STL auto_ptr but with automatic casting to a reference to the type and...
Definition: PtrList.H:52
Namespace for OpenFOAM.