gravitationalContactAngle.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) 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 
27 #include "unitConversion.H"
30 
31 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
32 
33 namespace Foam
34 {
35 namespace contactAngleModels
36 {
39 }
40 }
41 
42 
43 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
44 
46 :
47  theta0_(dict.lookup<scalar>("theta0")),
48  gTheta_(dict.lookup<scalar>("gTheta")),
49  thetaAdv_(dict.lookup<scalar>("thetaAdv")),
50  thetaRec_(dict.lookup<scalar>("thetaRec"))
51 {}
52 
53 
54 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
55 
57 {}
58 
59 
60 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
61 
64 (
65  const fvPatchVectorField& Up,
66  const vectorField& nHat
67 ) const
68 {
71 
72  const scalarField uCoeff(tanh((nHat & g.value())/gTheta_));
73 
74  return cos
75  (
76  degToRad(theta0_)
77  + degToRad(thetaRec_ - theta0_)*max(uCoeff, scalar(0))
78  - degToRad(thetaAdv_ - theta0_)*min(uCoeff, scalar(0))
79  );
80 }
81 
82 
84 {
85  writeEntry(os, "theta0", theta0_);
86  writeEntry(os, "gTheta", gTheta_);
87  writeEntry(os, "thetaAdv", thetaAdv_);
88  writeEntry(os, "thetaRec", thetaRec_);
89 }
90 
91 
92 // ************************************************************************* //
Macros for easy insertion into run-time selection tables.
An Ostream is an abstract base class for all output systems (streams, files, token lists,...
Definition: Ostream.H:57
Abstract base-class for contact-angle models which return the cosine contact angle field.
Gravitational acceleration based contact angle model.
virtual void write(Ostream &os) const
Write data in dictionary format.
virtual tmp< scalarField > cosTheta(const fvPatchVectorField &Up, const vectorField &nHat) const
Cosine of the contact angle.
gravitational(const dictionary &dict)
Construct from dictionary.
A list of keyword definitions, which are a keyword followed by any number of values (e....
Definition: dictionary.H:160
const Type & value() const
Return const reference to value.
Abstract base class with a fat-interface to all derived classes covering all possible ways in which t...
Definition: fvPatchField.H:87
const objectRegistry & db() const
Return local objectRegistry.
Definition: fvPatchField.C:145
const Type & lookupObject(const word &name) const
Lookup and return the object of the given Type and name.
A class for managing temporary objects.
Definition: tmp.H:55
addToRunTimeSelectionTable(contactAngleModel, constant, dictionary)
defineTypeNameAndDebug(constant, 0)
Namespace for OpenFOAM.
dimensionedScalar tanh(const dimensionedScalar &ds)
layerAndWeight min(const layerAndWeight &a, const layerAndWeight &b)
void writeEntry(Ostream &os, const HashTable< T, Key, Hash > &ht)
Definition: HashTableIO.C:96
layerAndWeight max(const layerAndWeight &a, const layerAndWeight &b)
dimensionedScalar cos(const dimensionedScalar &ds)
scalar degToRad(const scalar deg)
Conversion from degrees to radians.
dictionary dict
Unit conversion functions.