constantViscosity.H
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration | Website: https://openfoam.org
5  \\ / A nd | Copyright (C) 2013-2019 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::regionModels::surfaceFilmModels::constantViscosity
26 
27 Description
28  Constant viscosity model
29 
30 SourceFiles
31  constantViscosity.C
32 
33 \*---------------------------------------------------------------------------*/
34 
35 #ifndef constantViscosity_H
36 #define constantViscosity_H
37 
38 #include "filmViscosityModel.H"
39 
40 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
41 
42 namespace Foam
43 {
44 namespace regionModels
45 {
46 namespace surfaceFilmModels
47 {
48 
49 /*---------------------------------------------------------------------------*\
50  Class constantViscosity Declaration
51 \*---------------------------------------------------------------------------*/
52 
54 :
55  public filmViscosityModel
56 {
57 protected:
58 
59  // Protected data
60 
61  //- Constant viscosity [Pa.s]
63 
64 
65 
66 public:
67 
68  //- Runtime type information
69  TypeName("constant");
70 
71 
72  // Constructors
73 
74  //- Construct from surface film model
76  (
78  const dictionary& dict,
80  );
81 
82  //- Disallow default bitwise copy construction
83  constantViscosity(const constantViscosity&) = delete;
84 
85 
86  //- Destructor
87  virtual ~constantViscosity();
88 
89 
90  // Member Functions
91 
92  // Evolution
93 
94  //- Correct
95  virtual void correct
96  (
97  const volScalarField& p,
98  const volScalarField& T
99  );
100 
101 
102  // Member Operators
103 
104  //- Disallow default bitwise assignment
105  void operator=(const constantViscosity&) = delete;
106 };
107 
108 
109 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
110 
111 } // End namespace surfaceFilmModels
112 } // End namespace regionModels
113 } // End namespace Foam
114 
115 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
116 
117 #endif
118 
119 // ************************************************************************* //
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:158
constantViscosity(surfaceFilmRegionModel &film, const dictionary &dict, volScalarField &mu)
Construct from surface film model.
dimensionedScalar mu0_
Constant viscosity [Pa.s].
const dictionary & dict() const
Return const access to the cloud dictionary.
Definition: subModelBase.C:110
const surfaceFilmRegionModel & film() const
Return const access to the film surface film model.
Base class for surface film viscosity models.
TypeName("constant")
Runtime type information.
virtual void correct(const volScalarField &p, const volScalarField &T)
Correct.
void T(FieldField< Field, Type > &f1, const FieldField< Field, Type > &f2)
const dimensionedScalar & mu
Atomic mass unit.
volScalarField & p
void operator=(const constantViscosity &)=delete
Disallow default bitwise assignment.
Namespace for OpenFOAM.