WallInteractionModel.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) 2011-2016 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::WallInteractionModel
26 
27 Description
28  Templated wall interaction model class
29 
30 SourceFiles
31  WallInteractionModel.C
32  WallInteractionModelNew.C
33 
34 \*---------------------------------------------------------------------------*/
35 
36 #ifndef WallInteractionModel_H
37 #define WallInteractionModel_H
38 
39 #include "IOdictionary.H"
40 #include "autoPtr.H"
41 #include "runTimeSelectionTables.H"
42 
43 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
44 
45 namespace Foam
46 {
47 
48 /*---------------------------------------------------------------------------*\
49  Class WallInteractionModel Declaration
50 \*---------------------------------------------------------------------------*/
51 
52 template<class CloudType>
53 class WallInteractionModel
54 {
55  // Private data
56 
57  //- The cloud dictionary
58  const dictionary& dict_;
59 
60  // reference to the owner cloud class
61  CloudType& owner_;
62 
63  //- The coefficients dictionary
64  const dictionary coeffDict_;
65 
66 
67 public:
68 
69  //- Runtime type information
70  TypeName("WallInteractionModel");
71 
72  //- Declare runtime constructor selection table
74  (
75  autoPtr,
77  dictionary,
78  (
79  const dictionary& dict,
81  ),
82  (dict, owner)
83  );
84 
85 
86  // Constructors
87 
88  //- Construct null from owner
90 
91  //- Construct from components
93  (
94  const dictionary& dict,
95  CloudType& owner,
96  const word& type
97  );
98 
99 
100  //- Destructor
101  virtual ~WallInteractionModel();
102 
103 
104  //- Selector
105  static autoPtr<WallInteractionModel<CloudType>> New
106  (
107  const dictionary& dict,
108  CloudType& owner
109  );
110 
111 
112  // Access
113 
114  //- Return the owner cloud object
115  const CloudType& owner() const;
116 
117  //- Return non-const access to the owner cloud object
118  CloudType& owner();
119 
120  //- Return the dictionary
121  const dictionary& dict() const;
122 
123  //- Return the coefficients dictionary
124  const dictionary& coeffDict() const;
125 
126 
127  // Member Functions
128 
129  //- Apply wall correction
130  virtual void correct
131  (
132  typename CloudType::parcelType& p,
133  const wallPolyPatch& wpp
134  ) = 0;
135 };
136 
137 
138 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
139 
140 } // End namespace Foam
141 
142 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
144 #define makeWallInteractionModel(CloudType) \
145  \
146  defineNamedTemplateTypeNameAndDebug(WallInteractionModel<CloudType>, 0); \
147  \
148  defineTemplateRunTimeSelectionTable \
149  ( \
150  WallInteractionModel<CloudType>, \
151  dictionary \
152  );
153 
155 #define makeWallInteractionModelType(SS, CloudType) \
156  \
157  defineNamedTemplateTypeNameAndDebug(SS<CloudType>, 0); \
158  \
159  WallInteractionModel<CloudType>:: \
160  adddictionaryConstructorToTable<SS<CloudType>> \
161  add##SS##CloudType##ConstructorToTable_;
162 
163 
164 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
165 
166 #ifdef NoRepository
167  #include "WallInteractionModel.C"
168 #endif
169 
170 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
171 
172 #endif
173 
174 // ************************************************************************* //
DSMCCloud< dsmcParcel > CloudType
const dictionary & coeffDict() const
Return the coefficients dictionary.
declareRunTimeSelectionTable(autoPtr, WallInteractionModel, dictionary,(const dictionary &dict, CloudType &owner),(dict, owner))
Declare runtime constructor selection table.
virtual void correct(typename CloudType::parcelType &p, const wallPolyPatch &wpp)=0
Apply wall correction.
WallInteractionModel(CloudType &owner)
Construct null from owner.
const dictionary & dict() const
Return the dictionary.
ParcelType parcelType
Type of parcel the cloud was instantiated for.
Definition: DSMCCloud.H:217
TypeName("WallInteractionModel")
Runtime type information.
fileName::Type type(const fileName &)
Return the file type: DIRECTORY or FILE.
Definition: POSIX.C:461
const CloudType & owner() const
Return the owner cloud object.
virtual ~WallInteractionModel()
Destructor.
Macros to ease declaration of run-time selection tables.
volScalarField & p
static autoPtr< WallInteractionModel< CloudType > > New(const dictionary &dict, CloudType &owner)
Selector.
Namespace for OpenFOAM.