kinematicThinFilm.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 | www.openfoam.com
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8  Copyright (C) 2020 OpenCFD Ltd.
9 -------------------------------------------------------------------------------
10 License
11  This file is part of OpenFOAM.
12 
13  OpenFOAM is free software: you can redistribute it and/or modify it
14  under the terms of the GNU General Public License as published by
15  the Free Software Foundation, either version 3 of the License, or
16  (at your option) any later version.
17 
18  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
19  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
20  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21  for more details.
22 
23  You should have received a copy of the GNU General Public License
24  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
25 
26 Class
27  Foam::regionFaModels::kinematicThinFilm
28 
29 Description
30  Thin film model.
31 
32 SourceFiles
33  kinematicThinFilm.C
34  kinematicThinFilmI.H
35 
36 \*---------------------------------------------------------------------------*/
37 
38 #ifndef kinematicThinFilm_H
39 #define kinematicThinFilm_H
40 
41 #include "volFieldsFwd.H"
42 #include "liquidFilmModel.H"
43 #include "faMesh.H"
44 #include "filmTurbulenceModel.H"
45 
46 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
47 
48 namespace Foam
49 {
50 namespace regionModels
51 {
52 namespace areaSurfaceFilmModels
53 {
54 
55 /*---------------------------------------------------------------------------*\
56  Class kinematicThinFilm Declaration
57 \*---------------------------------------------------------------------------*/
58 
60 :
61  public liquidFilmModel
62 {
63 public:
64 
65  //- Runtime type information
66  TypeName("kinematicThinFilm");
67 
68 
69  // Constructors
70 
71  //- Construct from components and dict
73  (
74  const word& modelType,
75  const fvPatch& patch,
76  const dictionary& dict
77  );
78 
79  //- No copy construct
80  kinematicThinFilm(const kinematicThinFilm&) = delete;
81 
82  //- No copy assignment
83  void operator=(const kinematicThinFilm&) = delete;
84 
85 
86  //- Destructor
87  virtual ~kinematicThinFilm() = default;
88 
89 
90  // Member Functions
91 
92  // Evolution
93 
94  //- Pre-evolve film
95  virtual void preEvolveRegion();
96 
97  //- Evolve the film
98  virtual void evolveRegion();
99 
100  //- Post-evolve film
101  virtual void postEvolveRegion();
102 };
103 
104 
105 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
106 
107 } // End namespace areaSurfaceFilmModels
108 } // End namespace regionModels
109 } // End namespace Foam
110 
111 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
112 
113 
114 #endif
115 
116 // ************************************************************************* //
volFieldsFwd.H
Foam::word
A class for handling words, derived from Foam::string.
Definition: word.H:65
liquidFilmModel.H
Foam::regionModels::areaSurfaceFilmModels::kinematicThinFilm::TypeName
TypeName("kinematicThinFilm")
Runtime type information.
faMesh.H
Foam::regionModels::areaSurfaceFilmModels::kinematicThinFilm::evolveRegion
virtual void evolveRegion()
Evolve the film.
Definition: kinematicThinFilm.C:76
Foam::regionModels::areaSurfaceFilmModels::kinematicThinFilm
Definition: kinematicThinFilm.H:58
Foam::regionModels::areaSurfaceFilmModels::kinematicThinFilm::postEvolveRegion
virtual void postEvolveRegion()
Post-evolve film.
Definition: kinematicThinFilm.C:172
Foam::fvPatch
A finiteVolume patch using a polyPatch and a fvBoundaryMesh.
Definition: fvPatch.H:65
Foam::regionModels::areaSurfaceFilmModels::liquidFilmModel
Definition: liquidFilmModel.H:63
Foam::regionModels::areaSurfaceFilmModels::kinematicThinFilm::operator=
void operator=(const kinematicThinFilm &)=delete
No copy assignment.
dict
dictionary dict
Definition: searchingEngine.H:14
Foam::dictionary
A list of keyword definitions, which are a keyword followed by a number of values (eg,...
Definition: dictionary.H:123
Foam::regionModels::areaSurfaceFilmModels::kinematicThinFilm::preEvolveRegion
virtual void preEvolveRegion()
Pre-evolve film.
Definition: kinematicThinFilm.C:62
Foam::regionModels::areaSurfaceFilmModels::kinematicThinFilm::kinematicThinFilm
kinematicThinFilm(const word &modelType, const fvPatch &patch, const dictionary &dict)
Construct from components and dict.
Definition: kinematicThinFilm.C:50
Foam::regionModels::areaSurfaceFilmModels::kinematicThinFilm::~kinematicThinFilm
virtual ~kinematicThinFilm()=default
Destructor.
Foam
Namespace for OpenFOAM.
Definition: atmBoundaryLayer.C:33
Foam::foamVersion::patch
const std::string patch
OpenFOAM patch number as a std::string.