Removed unnecessary return statement
[foam-extend-3.2.git] / applications / solvers / multiphase / multiphaseInterFoam / multiphaseMixture / multiphaseAlphaContactAngle / multiphaseAlphaContactAngleFvPatchScalarField.H
blob7fc3197924a9dd54187cde7a92ff455febeb9932
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::multiphaseAlphaContactAngleFvPatchScalarField
27 Description
28     Contact-angle boundary condition for multi-phase interface-capturing
29     simulations.  Used in conjuction with multiphaseMixture.
31 SourceFiles
32     multiphaseAlphaContactAngleFvPatchScalarField.C
34 \*---------------------------------------------------------------------------*/
36 #ifndef multiphaseAlphaContactAngleFvPatchScalarField_H
37 #define multiphaseAlphaContactAngleFvPatchScalarField_H
39 #include "zeroGradientFvPatchFields.H"
40 #include "multiphaseMixture.H"
42 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
44 namespace Foam
47 /*---------------------------------------------------------------------------*\
48             Class multiphaseAlphaContactAngleFvPatch Declaration
49 \*---------------------------------------------------------------------------*/
51 class multiphaseAlphaContactAngleFvPatchScalarField
53     public zeroGradientFvPatchScalarField
55 public:
57     class interfaceThetaProps
58     {
59         //- Equilibrium contact angle
60         scalar theta0_;
62         //- Dynamic contact angle velocity scale
63         scalar uTheta_;
65         //- Limiting advancing contact angle
66         scalar thetaA_;
68         //- Limiting receeding contact angle
69         scalar thetaR_;
72     public:
74         // Constructors
75             interfaceThetaProps()
76             {}
78             interfaceThetaProps(Istream&);
81         // Member functions
83             //- Return the equilibrium contact angle theta0
84             scalar theta0(bool matched=true) const
85             {
86                 if (matched) return theta0_;
87                 else return 180.0 - theta0_;
88             }
90             //- Return the dynamic contact angle velocity scale
91             scalar uTheta() const
92             {
93                 return uTheta_;
94             }
96             //- Return the limiting advancing contact angle
97             scalar thetaA(bool matched=true) const
98             {
99                 if (matched) return thetaA_;
100                 else return 180.0 - thetaA_;
101             }
103             //- Return the limiting receeding contact angle
104             scalar thetaR(bool matched=true) const
105             {
106                 if (matched) return thetaR_;
107                 else return 180.0 - thetaR_;
108             }
111         // IO functions
113             friend Istream& operator>>(Istream&, interfaceThetaProps&);
114             friend Ostream& operator<<(Ostream&, const interfaceThetaProps&);
115     };
117     typedef HashTable
118     <
119         interfaceThetaProps,
120         multiphaseMixture::interfacePair,
121         multiphaseMixture::interfacePair::hash
122     > thetaPropsTable;
125 private:
127     // Private data
129         thetaPropsTable thetaProps_;
132 public:
134     //- Runtime type information
135     TypeName("multiphaseAlphaContactAngle");
138     // Constructors
140         //- Construct from patch and internal field
141         multiphaseAlphaContactAngleFvPatchScalarField
142         (
143             const fvPatch&,
144             const DimensionedField<scalar, volMesh>&
145         );
147         //- Construct from patch, internal field and dictionary
148         multiphaseAlphaContactAngleFvPatchScalarField
149         (
150             const fvPatch&,
151             const DimensionedField<scalar, volMesh>&,
152             const dictionary&
153         );
155         //- Construct by mapping given
156         //  multiphaseAlphaContactAngleFvPatchScalarField
157         //  onto a new patch
158         multiphaseAlphaContactAngleFvPatchScalarField
159         (
160             const multiphaseAlphaContactAngleFvPatchScalarField&,
161             const fvPatch&,
162             const DimensionedField<scalar, volMesh>&,
163             const fvPatchFieldMapper&
164         );
166         //- Construct and return a clone
167         virtual tmp<fvPatchScalarField> clone() const
168         {
169             return tmp<fvPatchScalarField>
170             (
171                 new multiphaseAlphaContactAngleFvPatchScalarField(*this)
172             );
173         }
175         //- Construct as copy setting internal field reference
176         multiphaseAlphaContactAngleFvPatchScalarField
177         (
178             const multiphaseAlphaContactAngleFvPatchScalarField&,
179             const DimensionedField<scalar, volMesh>&
180         );
182         //- Construct and return a clone setting internal field reference
183         virtual tmp<fvPatchScalarField> clone
184         (
185             const DimensionedField<scalar, volMesh>& iF
186         ) const
187         {
188             return tmp<fvPatchScalarField>
189             (
190                 new multiphaseAlphaContactAngleFvPatchScalarField(*this, iF)
191             );
192         }
195     // Member functions
197         //- Return the contact angle properties
198         const thetaPropsTable& thetaProps() const
199         {
200             return thetaProps_;
201         }
203         //- Write
204         virtual void write(Ostream&) const;
208 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
210 } // End namespace Foam
212 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
214 #endif
216 // ************************************************************************* //