Removed unnecessary return statement
[foam-extend-3.2.git] / applications / solvers / multiphase / multiphaseInterFoam / multiphaseMixture / phase / phase.H
blob70a12bb51eb910563ce2837a7113ebfe43880c2a
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | foam-extend: Open Source CFD
4    \\    /   O peration     | Version:     3.2
5     \\  /    A nd           | Web:         http://www.foam-extend.org
6      \\/     M anipulation  | For copyright notice see file Copyright
7 -------------------------------------------------------------------------------
8 License
9     This file is part of foam-extend.
11     foam-extend is free software: you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by the
13     Free Software Foundation, either version 3 of the License, or (at your
14     option) any later version.
16     foam-extend is distributed in the hope that it will be useful, but
17     WITHOUT ANY WARRANTY; without even the implied warranty of
18     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19     General Public License for more details.
21     You should have received a copy of the GNU General Public License
22     along with foam-extend.  If not, see <http://www.gnu.org/licenses/>.
24 Class
25     Foam::phase
27 Description
28     Single incompressible phase derived from the phase-fraction.
29     Used as part of the multiPhaseMixture for interface-capturing multi-phase
30     simulations.
32 SourceFiles
33     phase.C
35 \*---------------------------------------------------------------------------*/
37 #ifndef phase_H
38 #define phase_H
40 #include "volFields.H"
41 #include "dictionaryEntry.H"
42 #include "incompressible/viscosityModels/viscosityModel/viscosityModel.H"
44 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
46 namespace Foam
49 /*---------------------------------------------------------------------------*\
50                            Class phase Declaration
51 \*---------------------------------------------------------------------------*/
53 class phase
55     public volScalarField
57     // Private data
59         word name_;
60         dictionary phaseDict_;
61         autoPtr<viscosityModel> nuModel_;
62         dimensionedScalar rho_;
65 public:
67     // Constructors
69         //- Construct from components
70         phase
71         (
72             const word& name,
73             const dictionary& phaseDict,
74             const volVectorField& U,
75             const surfaceScalarField& phi
76         );
78         //- Return clone
79         autoPtr<phase> clone() const;
81         //- Return a pointer to a new phase created on freestore
82         //  from Istream
83         class iNew
84         {
85             const volVectorField& U_;
86             const surfaceScalarField& phi_;
88         public:
90             iNew
91             (
92                 const volVectorField& U,
93                 const surfaceScalarField& phi
94             )
95             :
96                 U_(U),
97                 phi_(phi)
98             {}
100             autoPtr<phase> operator()(Istream& is) const
101             {
102                 dictionaryEntry ent(dictionary::null, is);
103                 return autoPtr<phase>(new phase(ent.keyword(), ent, U_, phi_));
104             }
105         };
108     // Member Functions
110         const word& name() const
111         {
112             return name_;
113         }
115         const word& keyword() const
116         {
117             return name();
118         }
120         //- Return const-access to phase1 viscosityModel
121         const viscosityModel& nuModel() const
122         {
123             return nuModel_();
124         }
126         //- Return limited phase indicator
127         tmp<volScalarField> limitedAlpha() const
128         {
129             const volScalarField& alpha = *this;
131             return Foam::min(Foam::max(alpha, scalar(0)), scalar(1));
132         }
134         //- Return the kinematic laminar viscosity
135         tmp<volScalarField> nu() const
136         {
137             return nuModel_->nu();
138         }
140         //- Return const-access to phase density
141         const dimensionedScalar& rho() const
142         {
143             return rho_;
144         }
146         //- Correct the phase properties
147         void correct();
149         //- Read base transportProperties dictionary
150         bool read(const dictionary& phaseDict);
154 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
156 } // End namespace Foam
158 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
160 #endif
162 // ************************************************************************* //