blendingFactor.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-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::functionObjects::blendingFactor
26 
27 Group
28  grpFieldFunctionObjects
29 
30 Description
31  Calculates and outputs the blendingFactor as used by the bended convection
32  schemes. The output is a volume field (cells) whose value is calculated via
33  the maximum blending factor for any cell face.
34 
35 See also
36  Foam::functionObjects::fieldExpression
37  Foam::functionObjects::fvMeshFunctionObject
38 
39 SourceFiles
40  blendingFactor.C
41 
42 \*---------------------------------------------------------------------------*/
43 
44 #ifndef functionObjects_blendingFactor_H
45 #define functionObjects_blendingFactor_H
46 
47 #include "fieldExpression.H"
48 
49 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
50 
51 namespace Foam
52 {
53 namespace functionObjects
54 {
55 
56 /*---------------------------------------------------------------------------*\
57  Class blendingFactor Declaration
58 \*---------------------------------------------------------------------------*/
59 
60 class blendingFactor
61 :
62  public fieldExpression
63 {
64  // Private member data
65 
66  //- Name of flux field, default is "phi"
67  word phiName_;
68 
69 
70  // Private Member Functions
71 
72  //- Calculate the blending factor field
73  template<class Type>
74  bool calcBF();
75 
76  //- Calculate the blending factor field and return true if successful
77  virtual bool calc();
78 
79 
80 public:
81 
82  //- Runtime type information
83  TypeName("blendingFactor");
84 
85 
86  // Constructors
87 
88  //- Construct from Time and dictionary
90  (
91  const word& name,
92  const Time& runTime,
93  const dictionary& dict
94  );
95 
96 
97  //- Destructor
98  virtual ~blendingFactor();
99 
100 
101  // Member Functions
102 
103  //- Read the blendingFactor data
104  virtual bool read(const dictionary&);
105 };
106 
107 
108 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
109 
110 } // End namespace functionObjects
111 } // End namespace Foam
112 
113 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
114 
115 #ifdef NoRepository
116  #include "blendingFactorTemplates.C"
117 #endif
118 
119 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
120 
121 #endif
122 
123 // ************************************************************************* //
dictionary dict
Calculates and outputs the blendingFactor as used by the bended convection schemes. The output is a volume field (cells) whose value is calculated via the maximum blending factor for any cell face.
const word & name() const
Return the name of this functionObject.
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:137
Class to control time during OpenFOAM simulations that is also the top-level objectRegistry.
Definition: Time.H:68
virtual bool read(const dictionary &)
Read the blendingFactor data.
A class for handling words, derived from string.
Definition: word.H:59
virtual ~blendingFactor()
Destructor.
TypeName("blendingFactor")
Runtime type information.
Namespace for OpenFOAM.
blendingFactor(const word &name, const Time &runTime, const dictionary &dict)
Construct from Time and dictionary.