actuationDiskSource.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::fv::actuationDiskSource
26 
27 Description
28  Actuation disk source
29 
30  Constant values for momentum source for actuation disk
31  \f[
32  T = 2 \rho A U_{o}^2 a (1-a)
33  \f]
34  and
35  \f[
36  U_1 = (1 - a)U_{o}
37  \f]
38 
39  where:
40  \vartable
41  A | disk area
42  U_o | upstream velocity
43  a | 1 - Cp/Ct
44  U_1 | velocity at the disk
45  \endvartable
46 
47 Usage
48  Example usage:
49  \verbatim
50  actuationDiskSourceCoeffs
51  {
52  fields (U); // names of fields to apply source
53  diskDir (-1 0 0); // disk direction
54  Cp 0.1; // power coefficient
55  Ct 0.5; // thrust coefficient
56  diskArea 5.0; // disk area
57  upstreamPoint (0 0 0); // upstream point
58  }
59  \endverbatim
60 
61 
62 SourceFiles
63  actuationDiskSource.C
64  actuationDiskSourceTemplates.C
65 
66 \*---------------------------------------------------------------------------*/
67 
68 #ifndef actuationDiskSource_H
69 #define actuationDiskSource_H
70 
71 #include "cellSetOption.H"
72 
73 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
74 
75 namespace Foam
76 {
77 namespace fv
78 {
79 
80 /*---------------------------------------------------------------------------*\
81  Class actuationDiskSource Declaration
82 \*---------------------------------------------------------------------------*/
83 
84 class actuationDiskSource
85 :
86  public cellSetOption
87 {
88 
89 protected:
90 
91  // Protected data
92 
93  //- Disk area normal
95 
96  //- Power coefficient
97  scalar Cp_;
98 
99  //- Thrust coefficient
100  scalar Ct_;
101 
102  //- Disk area
103  scalar diskArea_;
104 
105  //- Upstream point sample
107 
108  //- Upstream cell ID
110 
111 
112 private:
113 
114  // Private Member Functions
116  //- Check data
117  void checkData() const;
119  //- Add resistance to the UEqn
120  template<class RhoFieldType>
121  void addActuationDiskAxialInertialResistance
122  (
123  vectorField& Usource,
124  const labelList& cells,
125  const scalarField& V,
126  const RhoFieldType& rho,
127  const vectorField& U
128  ) const;
129 
130  //- Disallow default bitwise copy construct
132 
133  //- Disallow default bitwise assignment
134  void operator=(const actuationDiskSource&);
135 
136 
137 public:
138 
139  //- Runtime type information
140  TypeName("actuationDiskSource");
141 
142 
143  // Constructors
144 
145  //- Construct from components
147  (
148  const word& name,
149  const word& modelType,
150  const dictionary& dict,
151  const fvMesh& mesh
152  );
153 
154 
155  //- Destructor
156  virtual ~actuationDiskSource()
157  {}
158 
159 
160  // Member Functions
161 
162  // Access
163 
164  //- Return Cp
165  scalar Cp() const
166  {
167  return Cp_;
168  }
169 
170  //- Return Ct
171  scalar Ct() const
172  {
173  return Ct_;
174  }
175 
176  //- Normal disk direction
177  const vector& diskDir() const
178  {
179  return diskDir_;
180  }
181 
182  //- Disk area
183  scalar diskArea() const
184  {
185  return diskArea_;
186  }
187 
188 
189  // Add explicit and implicit contributions
190 
191  //- Source term to momentum equation
192  virtual void addSup
193  (
194  fvMatrix<vector>& eqn,
195  const label fieldi
196  );
197 
198  //- Source term to compressible momentum equation
199  virtual void addSup
200  (
201  const volScalarField& rho,
202  fvMatrix<vector>& eqn,
203  const label fieldi
204  );
205 
206 
207  // IO
208 
209  //- Read dictionary
210  virtual bool read(const dictionary& dict);
211 };
212 
213 
214 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
215 
216 } // End namespace fv
217 } // End namespace Foam
218 
219 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
220 
221 #ifdef NoRepository
223 #endif
224 
225 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
226 
227 #endif
228 
229 // ************************************************************************* //
vector diskDir_
Disk area normal.
TypeName("actuationDiskSource")
Runtime type information.
const word & name() const
Return const access to the source name.
Definition: fvOptionI.H:28
label upstreamCellId_
Upstream cell ID.
dictionary dict
virtual ~actuationDiskSource()
Destructor.
U
Definition: pEqn.H:83
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
scalar V() const
Return const access to the total cell volume.
scalar Cp() const
Return Cp.
const vector & diskDir() const
Normal disk direction.
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:137
point upstreamPoint_
Upstream point sample.
Vector< scalar > vector
A scalar version of the templated Vector.
Definition: vector.H:49
A class for handling words, derived from string.
Definition: word.H:59
labelList fv(nPoints)
const labelList & cells() const
Return const access to the cell set.
virtual void addSup(fvMatrix< vector > &eqn, const label fieldi)
Source term to momentum equation.
scalar Ct() const
Return Ct.
A special matrix type and solver, designed for finite volume solutions of scalar equations. Face addressing is used to make all matrix assembly and solution loops vectorise.
Definition: fvPatchField.H:71
scalar Cp_
Power coefficient.
const fvMesh & mesh() const
Return const access to the mesh database.
Definition: fvOptionI.H:34
scalar diskArea() const
Disk area.
virtual bool read(const dictionary &dict)
Read dictionary.
scalar Ct_
Thrust coefficient.
Mesh data needed to do the Finite Volume discretisation.
Definition: fvMesh.H:78
Namespace for OpenFOAM.