searchablePlateFeatures.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::searchablePlateFeatures
26 
27 Description
28 
29 SourceFiles
30  searchablePlateFeatures.C
31 
32 \*---------------------------------------------------------------------------*/
33 
34 #ifndef searchablePlateFeatures_H
35 #define searchablePlateFeatures_H
36 
38 
39 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
40 
41 namespace Foam
42 {
43 
44 /*---------------------------------------------------------------------------*\
45  Class searchablePlateFeatures Declaration
46 \*---------------------------------------------------------------------------*/
47 
49 :
51 {
52 private:
53 
54  //- To initialise edges.
55  static edgeList calcEdges(const label[4][2]);
56 
57 
58  // Private Member Data
59 
60  //- Which side of the plate to mesh
62 
63 
64 public:
65 
66  //- Runtime type information
67  TypeName("searchablePlateFeatures");
68 
69 
70  // Static Data Members
71 
72  //- Edge to point addressing
73  static const edgeList edges;
74 
75 
76  // Constructors
77 
78  //- Construct from searchable surface and dictionary
80  (
82  const dictionary& dict
83  );
84 
85  //- Disallow default bitwise copy construction
87 
88 
89  //- Destructor
90  virtual ~searchablePlateFeatures();
91 
92 
93  // Member Functions
94 
95  //- Return true for a searchable plate having features
96  virtual bool hasFeatures() const
97  {
98  return true;
99  }
100 
101  //- Return an extendedFeatureEdgeMesh containing the features
103 
104 
105  // Member Operators
106 
107  //- Disallow default bitwise assignment
108  void operator=(const searchablePlateFeatures&) = delete;
109 };
110 
111 
112 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
113 
114 } // End namespace Foam
115 
116 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
117 
118 #endif
119 
120 // ************************************************************************* //
void operator=(const searchablePlateFeatures &)=delete
Disallow default bitwise assignment.
TypeName("searchablePlateFeatures")
Runtime type information.
intWM_LABEL_SIZE_t label
A label is an int32_t or int64_t as specified by the pre-processor macro WM_LABEL_SIZE.
Definition: label.H:59
const searchableSurface & surface() const
Return a reference to the searchable surface.
virtual bool hasFeatures() const
Return true for a searchable plate having features.
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
Base class of (analytical or triangulated) surface. Encapsulates all the search routines. WIP.
virtual ~searchablePlateFeatures()
Destructor.
const dictionary & dict() const
Return a reference to the dictionary.
searchablePlateFeatures(const searchableSurface &surface, const dictionary &dict)
Construct from searchable surface and dictionary.
static const edgeList edges
Edge to point addressing.
sideVolumeType
Normals point to the outside.
virtual autoPtr< extendedFeatureEdgeMesh > features() const
Return an extendedFeatureEdgeMesh containing the features.
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.