searchablePlateFeatures.H
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration |
5  \\ / A nd | Copyright (C) 2013-2015 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  // Private Member Functions
65 
66  //- Disallow default bitwise copy construct
68 
69  //- Disallow default bitwise assignment
70  void operator=(const searchablePlateFeatures&);
71 
72 
73 public:
74 
75  //- Runtime type information
76  TypeName("searchablePlateFeatures");
77 
78 
79  // Static data members
80 
81  //- Edge to point addressing
82  static const edgeList edges;
83 
84 
85  // Constructors
86 
87  //- Construct from searchable surface and dictionary
89  (
91  const dictionary& dict
92  );
93 
94 
95  //- Destructor
96  virtual ~searchablePlateFeatures();
97 
98 
99  // Member Functions
100 
101  //- Return true for a searchable plate having features
102  virtual bool hasFeatures() const
103  {
104  return true;
105  }
106 
107  //- Return an extendedFeatureEdgeMesh containing the features
109 };
110 
111 
112 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
113 
114 } // End namespace Foam
115 
116 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
117 
118 #endif
119 
120 // ************************************************************************* //
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:137
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.
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.