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-------------------------------------------------------------------------------
10License
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
26Class
27 Foam::regionFaModels::kinematicThinFilm
28
29Description
30 Thin film model.
31
32SourceFiles
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
48namespace Foam
49{
50namespace regionModels
51{
52namespace areaSurfaceFilmModels
53{
54
55/*---------------------------------------------------------------------------*\
56 Class kinematicThinFilm Declaration
57\*---------------------------------------------------------------------------*/
60:
61 public liquidFilmModel
62{
63public:
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// ************************************************************************* //
A list of keyword definitions, which are a keyword followed by a number of values (eg,...
Definition: dictionary.H:126
A finiteVolume patch using a polyPatch and a fvBoundaryMesh.
Definition: fvPatch.H:71
void operator=(const kinematicThinFilm &)=delete
No copy assignment.
kinematicThinFilm(const kinematicThinFilm &)=delete
No copy construct.
TypeName("kinematicThinFilm")
Runtime type information.
A class for handling words, derived from Foam::string.
Definition: word.H:68
Namespace for OpenFOAM.
dictionary dict
#define TypeName(TypeNameString)
Declare a ClassName() with extra virtual type info.
Definition: typeInfo.H:73