Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / applications / solvers / multiphase / multiphaseInterFoam / multiphaseMixture / multiphaseAlphaContactAngle / multiphaseAlphaContactAngleFvPatchScalarField.C
blob95a5f4b72059408ceaacf145da1d48154cd28ffb
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 \*---------------------------------------------------------------------------*/
26 #include "multiphaseAlphaContactAngleFvPatchScalarField.H"
27 #include "addToRunTimeSelectionTable.H"
28 #include "fvPatchFieldMapper.H"
30 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
32 Foam::multiphaseAlphaContactAngleFvPatchScalarField::
33 interfaceThetaProps::interfaceThetaProps
35     Istream& is
38     theta0_(readScalar(is)),
39     uTheta_(readScalar(is)),
40     thetaA_(readScalar(is)),
41     thetaR_(readScalar(is))
45 Foam::Istream& Foam::operator>>
47     Istream& is,
48     multiphaseAlphaContactAngleFvPatchScalarField::interfaceThetaProps& tp
51     is >> tp.theta0_ >> tp.uTheta_ >> tp.thetaA_ >> tp.thetaR_;
52     return is;
56 Foam::Ostream& Foam::operator<<
58     Ostream& os,
59     const
60     multiphaseAlphaContactAngleFvPatchScalarField::interfaceThetaProps& tp
63     os  << tp.theta0_ << token::SPACE
64         << tp.uTheta_ << token::SPACE
65         << tp.thetaA_ << token::SPACE
66         << tp.thetaR_;
68     return os;
72 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
74 Foam::multiphaseAlphaContactAngleFvPatchScalarField::
75 multiphaseAlphaContactAngleFvPatchScalarField
77     const fvPatch& p,
78     const DimensionedField<scalar, volMesh>& iF
81     zeroGradientFvPatchScalarField(p, iF)
85 Foam::multiphaseAlphaContactAngleFvPatchScalarField::
86 multiphaseAlphaContactAngleFvPatchScalarField
88     const multiphaseAlphaContactAngleFvPatchScalarField& gcpsf,
89     const fvPatch& p,
90     const DimensionedField<scalar, volMesh>& iF,
91     const fvPatchFieldMapper& mapper
94     zeroGradientFvPatchScalarField(gcpsf, p, iF, mapper),
95     thetaProps_(gcpsf.thetaProps_)
99 Foam::multiphaseAlphaContactAngleFvPatchScalarField::
100 multiphaseAlphaContactAngleFvPatchScalarField
102     const fvPatch& p,
103     const DimensionedField<scalar, volMesh>& iF,
104     const dictionary& dict
107     zeroGradientFvPatchScalarField(p, iF),
108     thetaProps_(dict.lookup("thetaProperties"))
110     evaluate();
114 Foam::multiphaseAlphaContactAngleFvPatchScalarField::
115 multiphaseAlphaContactAngleFvPatchScalarField
117     const multiphaseAlphaContactAngleFvPatchScalarField& gcpsf,
118     const DimensionedField<scalar, volMesh>& iF
121     zeroGradientFvPatchScalarField(gcpsf, iF),
122     thetaProps_(gcpsf.thetaProps_)
126 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
128 void
129 Foam::multiphaseAlphaContactAngleFvPatchScalarField::write
131     Ostream& os
132 ) const
134     fvPatchScalarField::write(os);
135     os.writeKeyword("thetaProperties")
136         << thetaProps_ << token::END_STATEMENT << nl;
137     writeEntry("value", os);
141 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
143 namespace Foam
146 makePatchTypeField
148     fvPatchScalarField,
149     multiphaseAlphaContactAngleFvPatchScalarField
152 } // End namespace Foam
154 // ************************************************************************* //