timeVaryingAlphaContactAngleFvPatchScalarField.C
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration |
5  \\ / A nd | Copyright (C) 2011-2013 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 
28 #include "fvPatchFieldMapper.H"
29 #include "volMesh.H"
30 #include "Time.H"
31 
32 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
33 
36 (
37  const fvPatch& p,
39 )
40 :
42  t0_(0.0),
43  thetaT0_(0.0),
44  te_(0.0),
45  thetaTe_(0.0)
46 {}
47 
48 
51 (
53  const fvPatch& p,
55  const fvPatchFieldMapper& mapper
56 )
57 :
58  alphaContactAngleFvPatchScalarField(gcpsf, p, iF, mapper),
59  t0_(gcpsf.t0_),
60  thetaT0_(gcpsf.thetaT0_),
61  te_(gcpsf.te_),
62  thetaTe_(gcpsf.te_)
63 {}
64 
65 
68 (
69  const fvPatch& p,
71  const dictionary& dict
72 )
73 :
75  t0_(readScalar(dict.lookup("t0"))),
76  thetaT0_(readScalar(dict.lookup("thetaT0"))),
77  te_(readScalar(dict.lookup("te"))),
78  thetaTe_(readScalar(dict.lookup("thetaTe")))
79 {
80  evaluate();
81 }
82 
83 
86 (
89 )
90 :
92  t0_(gcpsf.t0_),
93  thetaT0_(gcpsf.thetaT0_),
94  te_(gcpsf.te_),
95  thetaTe_(gcpsf.thetaTe_)
96 {}
97 
98 
99 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
100 
103 (
104  const fvPatchVectorField&,
105  const fvsPatchVectorField&
106 ) const
107 {
108  scalar t = patch().boundaryMesh().mesh().time().value();
109  scalar theta0 = thetaT0_;
110 
111  if (t < t0_)
112  {
113  theta0 = thetaT0_;
114  }
115  else if (t > te_)
116  {
117  theta0 = thetaTe_;
118  }
119  else
120  {
121  theta0 = thetaT0_ + (t - t0_)*(thetaTe_ - thetaT0_)/(te_ - t0_);
122  }
123 
124  return tmp<scalarField>(new scalarField(size(), theta0));
125 }
126 
127 
129 (
130  Ostream& os
131 ) const
132 {
134  os.writeKeyword("t0") << t0_ << token::END_STATEMENT << nl;
135  os.writeKeyword("thetaT0") << thetaT0_ << token::END_STATEMENT << nl;
136  os.writeKeyword("te") << te_ << token::END_STATEMENT << nl;
137  os.writeKeyword("thetaTe") << thetaTe_ << token::END_STATEMENT << nl;
138  writeEntry("value", os);
139 }
140 
141 
142 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
143 
144 namespace Foam
145 {
147  (
150  );
151 }
152 
153 // ************************************************************************* //
Foam::fvPatchField
Abstract base class with a fat-interface to all derived classes covering all possible ways in which t...
Definition: fvPatchField.H:65
p
p
Definition: pEqn.H:62
Foam::tmp
A class for managing temporary objects.
Definition: PtrList.H:118
Foam::timeVaryingAlphaContactAngleFvPatchScalarField::te_
scalar te_
Definition: timeVaryingAlphaContactAngleFvPatchScalarField.H:58
volMesh.H
Foam::fvsPatchField
An abstract base class with a fat-interface to all derived classes covering all possible ways in whic...
Definition: fvsPatchField.H:65
fvPatchFieldMapper.H
Foam::timeVaryingAlphaContactAngleFvPatchScalarField::timeVaryingAlphaContactAngleFvPatchScalarField
timeVaryingAlphaContactAngleFvPatchScalarField(const fvPatch &, const DimensionedField< scalar, volMesh > &)
Construct from patch and internal field.
Definition: timeVaryingAlphaContactAngleFvPatchScalarField.C:36
Foam::timeVaryingAlphaContactAngleFvPatchScalarField::thetaT0_
scalar thetaT0_
Definition: timeVaryingAlphaContactAngleFvPatchScalarField.H:57
Foam::nl
static const char nl
Definition: Ostream.H:260
Foam::fvPatch
A finiteVolume patch using a polyPatch and a fvBoundaryMesh.
Definition: fvPatch.H:61
dict
dictionary dict
Definition: searchingEngine.H:14
Foam::dictionary
A list of keyword definitions, which are a keyword followed by any number of values (e....
Definition: dictionary.H:137
addToRunTimeSelectionTable.H
Macros for easy insertion into run-time selection tables.
timeVaryingAlphaContactAngleFvPatchScalarField.H
Foam
Namespace for OpenFOAM.
Definition: combustionModel.C:30
Foam::makePatchTypeField
makePatchTypeField(fvPatchVectorField, SRFFreestreamVelocityFvPatchVectorField)
Foam::alphaContactAngleFvPatchScalarField
Abstract base class for alphaContactAngle boundary conditions.
Definition: alphaContactAngleFvPatchScalarField.H:81
Foam::timeVaryingAlphaContactAngleFvPatchScalarField::t0_
scalar t0_
Definition: timeVaryingAlphaContactAngleFvPatchScalarField.H:56
readScalar
#define readScalar
Definition: doubleScalar.C:38
Foam::timeVaryingAlphaContactAngleFvPatchScalarField::write
virtual void write(Ostream &) const
Write.
Definition: timeVaryingAlphaContactAngleFvPatchScalarField.C:129
Foam::timeVaryingAlphaContactAngleFvPatchScalarField::thetaTe_
scalar thetaTe_
Definition: timeVaryingAlphaContactAngleFvPatchScalarField.H:59
scalarField
volScalarField scalarField(fieldObject, mesh)
Foam::Ostream::writeKeyword
Ostream & writeKeyword(const keyType &)
Write the keyword followed by an appropriate indentation.
Definition: Ostream.C:59
Foam::fvPatchFieldMapper
Foam::fvPatchFieldMapper.
Definition: fvPatchFieldMapper.H:45
Foam::timeVaryingAlphaContactAngleFvPatchScalarField::theta
virtual tmp< scalarField > theta(const fvPatchVectorField &Up, const fvsPatchVectorField &nHat) const
Evaluate and return the time-varying equilibrium contact-angle.
Definition: timeVaryingAlphaContactAngleFvPatchScalarField.C:103
Foam::Ostream
An Ostream is an abstract base class for all output systems (streams, files, token lists,...
Definition: Ostream.H:53
Foam::timeVaryingAlphaContactAngleFvPatchScalarField
A time-varying alphaContactAngle scalar boundary condition (alphaContactAngleFvPatchScalarField)
Definition: timeVaryingAlphaContactAngleFvPatchScalarField.H:49
write
Tcoeff write()
Foam::DimensionedField
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
Definition: DimensionedField.H:51