radialActuationDiskSource.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::radialActuationDiskSource
26 
27 Description
28  Actuation disk source including radial thrust
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 
48  The thrust is distributed by a radial function:
49  \f[
50  thrust(r) = T (C_0 + C_1 r^2 + C_2 r^4)
51  \f]
52 
53 Usage
54  Example usage:
55  \verbatim
56  actuationDiskSourceCoeffs
57  {
58  fieldName U; // name of field to apply source
59  diskDir (-1 0 0); // disk direction
60  Cp 0.1; // power coefficient
61  Ct 0.5; // thrust coefficient
62  diskArea 5.0; // disk area
63  coeffs (0.1 0.5 0.01); // radial distribution coefficients
64  upstreamPoint (0 0 0); // upstream point
65  }
66  \endverbatim
67 
68 
69 SourceFiles
70  radialActuationDiskSource.C
71  radialActuationDiskSourceTemplates.C
72 
73 \*---------------------------------------------------------------------------*/
74 
75 #ifndef radialActuationDiskSource_H
76 #define radialActuationDiskSource_H
77 
78 #include "actuationDiskSource.H"
79 #include "FixedList.H"
80 
81 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
82 
83 namespace Foam
84 {
85 namespace fv
86 {
87 
88 /*---------------------------------------------------------------------------*\
89  Class radialActuationDiskSource Declaration
90 \*---------------------------------------------------------------------------*/
91 
92 class radialActuationDiskSource
93 :
94  public actuationDiskSource
95 {
96  // Private data
97 
98  //- Coeffcients for the radial distribution
99  FixedList<scalar, 3> radialCoeffs_;
100 
101 
102  // Private Member Functions
103 
104  //- Add resistance to the UEqn
105  template<class RhoFieldType>
106  void addRadialActuationDiskAxialInertialResistance
107  (
108  vectorField& Usource,
109  const labelList& cells,
110  const scalarField& V,
111  const RhoFieldType& rho,
112  const vectorField& U
113  ) const;
114 
115  //- Disallow default bitwise copy construct
117 
118  //- Disallow default bitwise assignment
119  void operator=(const radialActuationDiskSource&);
120 
121 
122 public:
123 
124  //- Runtime type information
125  TypeName("radialActuationDiskSource");
126 
127 
128  // Constructors
129 
130  //- Construct from components
132  (
133  const word& name,
134  const word& modelType,
135  const dictionary& dict,
136  const fvMesh& mesh
137  );
138 
139 
140  //- Destructor
142  {}
143 
144 
145  // Member Functions
146 
147  //- Source term to momentum equation
148  virtual void addSup
149  (
150  fvMatrix<vector>& eqn,
151  const label fieldi
152  );
153 
154  //- Source term to compressible momentum equation
155  virtual void addSup
156  (
157  const volScalarField& rho,
158  fvMatrix<vector>& eqn,
159  const label fieldi
160  );
161 
162 
163  // IO
164 
165  //- Read dictionary
166  virtual bool read(const dictionary& dict);
167 };
168 
169 
170 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
171 
172 } // End namespace fv
173 } // End namespace Foam
174 
175 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
176 
177 #ifdef NoRepository
179 #endif
180 
181 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
182 
183 #endif
184 
185 // ************************************************************************* //
const word & name() const
Return const access to the source name.
Definition: fvOptionI.H:28
dictionary dict
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.
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:137
virtual void addSup(fvMatrix< vector > &eqn, const label fieldi)
Source term to momentum equation.
Actuation disk source including radial thrust.
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.
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
const fvMesh & mesh() const
Return const access to the mesh database.
Definition: fvOptionI.H:34
virtual bool read(const dictionary &dict)
Read dictionary.
Mesh data needed to do the Finite Volume discretisation.
Definition: fvMesh.H:78
TypeName("radialActuationDiskSource")
Runtime type information.
Namespace for OpenFOAM.