VolumeFraction.C
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) 2011-2023 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 \*---------------------------------------------------------------------------*/
25 
26 #include "VolumeFraction.H"
27 
28 // * * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * //
29 
30 template<class CloudType>
32 {
33  alpha_.write();
34 }
35 
36 
37 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
38 
39 template<class CloudType>
41 (
42  const dictionary& dict,
43  CloudType& owner,
44  const word& modelName
45 )
46 :
47  CloudFunctionObject<CloudType>(dict, owner, modelName, typeName),
48  alpha_
49  (
50  IOobject
51  (
52  this->owner().name() + ":alpha",
53  this->owner().mesh().time().name(),
54  this->owner().mesh(),
55  IOobject::NO_READ,
56  IOobject::NO_WRITE
57  ),
58  this->owner().mesh(),
60  )
61 {}
62 
63 
64 template<class CloudType>
66 (
68 )
69 :
71  alpha_(this->owner().name() + ":alpha", vf.alpha_)
72 {}
73 
74 
75 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
76 
77 template<class CloudType>
79 {}
80 
81 
82 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
83 
84 template<class CloudType>
86 {
87  alpha_ = this->owner().alpha();
88 
90 }
91 
92 
93 // ************************************************************************* //
Templated cloud function object base class.
virtual void postEvolve()
Post-evolve hook.
Templated base class for dsmc cloud.
Definition: DSMCCloud.H:80
IOobject defines the attributes of an object for which implicit objectRegistry management is supporte...
Definition: IOobject.H:99
Creates particle volume fraction field on carrier phase.
virtual void postEvolve()
Post-evolve hook.
VolumeFraction(const dictionary &dict, CloudType &owner, const word &modelName)
Construct from dictionary.
virtual void write()
Write post-processing info.
virtual ~VolumeFraction()
Destructor.
A list of keyword definitions, which are a keyword followed by any number of values (e....
Definition: dictionary.H:162
A class for handling words, derived from string.
Definition: word.H:62
word name(const bool)
Return a word representation of a bool.
Definition: boolIO.C:39
const dimensionSet dimless
dictionary dict