Loading...
Searching...
No Matches
JohnsonJacksonParticleThetaFvPatchScalarField.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 | www.openfoam.com
6 \\/ M anipulation |
7-------------------------------------------------------------------------------
8 Copyright (C) 2014-2019 OpenFOAM Foundation
9-------------------------------------------------------------------------------
10License
11 This file is part of OpenFOAM.
12
13 OpenFOAM is free software: you can redistribute it and/or modify it
14 under the terms of the GNU General Public License as published by
15 the Free Software Foundation, either version 3 of the License, or
16 (at your option) any later version.
17
18 OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
19 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
20 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21 for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
25
26\*---------------------------------------------------------------------------*/
27
30#include "twoPhaseSystem.H"
31
32// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
33
34namespace Foam
35{
37 (
40 );
41}
42
43// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
44
47(
48 const fvPatch& p,
50)
52 mixedFvPatchScalarField(p, iF),
53 restitutionCoefficient_("restitutionCoefficient", dimless, Zero),
54 specularityCoefficient_("specularityCoefficient", dimless, Zero)
55{}
56
57
60(
62 const fvPatch& p,
64 const fvPatchFieldMapper& mapper
65)
66:
67 mixedFvPatchScalarField(ptf, p, iF, mapper),
68 restitutionCoefficient_(ptf.restitutionCoefficient_),
69 specularityCoefficient_(ptf.specularityCoefficient_)
70{
71}
72
73
76(
77 const fvPatch& p,
79 const dictionary& dict
80)
81:
82 mixedFvPatchScalarField(p, iF),
83 restitutionCoefficient_("restitutionCoefficient", dimless, dict),
84 specularityCoefficient_("specularityCoefficient", dimless, dict)
85{
86 if
87 (
88 (restitutionCoefficient_.value() < 0)
89 || (restitutionCoefficient_.value() > 1)
90 )
91 {
92 FatalErrorInFunction
93 << "The restitution coefficient has to be between 0 and 1"
94 << abort(FatalError);
95 }
96
97 if
98 (
99 (specularityCoefficient_.value() < 0)
100 || (specularityCoefficient_.value() > 1)
101 )
102 {
103 FatalErrorInFunction
104 << "The specularity coefficient has to be between 0 and 1"
105 << abort(FatalError);
106 }
107
108 this->readValueEntry(dict, IOobjectOption::MUST_READ);
109}
110
111
114(
116)
118 mixedFvPatchScalarField(ptf),
119 restitutionCoefficient_(ptf.restitutionCoefficient_),
120 specularityCoefficient_(ptf.specularityCoefficient_)
121{}
122
123
126(
129)
130:
131 mixedFvPatchScalarField(ptf, iF),
132 restitutionCoefficient_(ptf.restitutionCoefficient_),
133 specularityCoefficient_(ptf.specularityCoefficient_)
134{}
135
136
137// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
138
140(
142)
143{
144 mixedFvPatchScalarField::autoMap(m);
145}
146
147
149(
150 const fvPatchScalarField& ptf,
151 const labelList& addr
152)
153{
154 mixedFvPatchScalarField::rmap(ptf, addr);
155}
156
157
159{
160 if (updated())
161 {
162 return;
163 }
164
165 // lookup the fluid model and the phase
166 const twoPhaseSystem& fluid = db().lookupObject<twoPhaseSystem>
167 (
168 "phaseProperties"
169 );
170
171 const phaseModel& phased
172 (
173 fluid.phase1().name() == internalField().group()
174 ? fluid.phase1()
175 : fluid.phase2()
176 );
177
178 // lookup all the fields on this patch
180 (
181 patch().lookupPatchField<volScalarField>
182 (
183 phased.volScalarField::name()
184 )
185 );
186
187 const fvPatchVectorField& U
188 (
189 patch().lookupPatchField<volVectorField>
190 (
191 IOobject::groupName("U", phased.name())
192 )
193 );
194
195 const fvPatchScalarField& gs0
196 (
197 patch().lookupPatchField<volScalarField>
198 (
199 IOobject::groupName("gs0", phased.name())
200 )
201 );
202
203 const fvPatchScalarField& kappa
204 (
205 patch().lookupPatchField<volScalarField>
206 (
207 IOobject::groupName("kappa", phased.name())
208 )
209 );
210
211 const scalarField Theta(patchInternalField());
212
213 // lookup the packed volume fraction
215 (
216 "alphaMax",
217 dimless,
218 db()
219 .lookupObject<IOdictionary>
220 (
221 IOobject::groupName("turbulenceProperties", phased.name())
222 )
223 .subDict("RAS")
224 .subDict("kineticTheoryCoeffs")
225 );
226
227 // calculate the reference value and the value fraction
228 if (restitutionCoefficient_.value() != 1.0)
229 {
230 this->refValue() =
231 (2.0/3.0)
232 *specularityCoefficient_.value()
233 *magSqr(U)
234 /(scalar(1) - sqr(restitutionCoefficient_.value()));
235
236 this->refGrad() = 0.0;
237
239 (
241 *alpha
242 *gs0
243 *(scalar(1) - sqr(restitutionCoefficient_.value()))
244 *sqrt(3*Theta)
245 /max(4*kappa*alphaMax.value(), SMALL)
246 );
247
248 this->valueFraction() = c/(c + patch().deltaCoeffs());
249 }
250
251 // for a restitution coefficient of 1, the boundary degenerates to a fixed
252 // gradient condition
253 else
254 {
255 this->refValue() = 0.0;
256
257 this->refGrad() =
258 pos0(alpha - SMALL)
260 *specularityCoefficient_.value()
261 *alpha
262 *gs0
263 *sqrt(3*Theta)
264 *magSqr(U)
265 /max(6*kappa*alphaMax.value(), SMALL);
266
267 this->valueFraction() = 0;
268 }
269
270 mixedFvPatchScalarField::updateCoeffs();
271}
272
273
275(
276 Ostream& os
277) const
278{
280 os.writeEntry("restitutionCoefficient", restitutionCoefficient_);
281 os.writeEntry("specularityCoefficient", specularityCoefficient_);
283}
284
285
286// ************************************************************************* //
Macros for easy insertion into run-time selection tables.
if(patchID !=-1)
twoPhaseSystem & fluid
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
@ MUST_READ
Reading required.
static word groupName(StringType base, const word &group)
Create dot-delimited name.group string.
Robin condition for the particulate granular temperature.
virtual void autoMap(const fvPatchFieldMapper &)
Map (and resize as needed) from self given a mapping object.
virtual void rmap(const fvPatchScalarField &, const labelList &)
Reverse map the given fvPatchField onto this fvPatchField.
JohnsonJacksonParticleThetaFvPatchScalarField(const fvPatch &, const DimensionedField< scalar, volMesh > &)
Construct from patch and internal field.
An Ostream is an abstract base class for all output systems (streams, files, token lists,...
Definition Ostream.H:59
A list of keyword definitions, which are a keyword followed by a number of values (eg,...
Definition dictionary.H:133
const Type & value() const noexcept
Return const reference to value.
A FieldMapper for finite-volume patch fields.
virtual void write(Ostream &) const
Write.
void writeValueEntry(Ostream &os) const
Write *this field as a "value" entry.
A finiteVolume patch using a polyPatch and a fvBoundaryMesh.
Definition fvPatch.H:71
Single incompressible phase derived from the phase-fraction. Used as part of the multiPhaseMixture fo...
Definition phaseModel.H:56
Class which solves the volume fraction equations for two phases.
U
Definition pEqn.H:72
volScalarField & p
OBJstream os(runTime.globalPath()/outputName)
#define makePatchTypeField(PatchTypeField, typePatchTypeField)
Define a concrete fvPatchField type and add to run-time tables Example, (fvPatchScalarField,...
constexpr scalar pi(M_PI)
Namespace for OpenFOAM.
label max(const labelHashSet &set, label maxValue=labelMin)
Find the max value in labelHashSet, optionally limited by second argument.
Definition hashSets.C:40
const dimensionSet dimless
Dimensionless.
dimensionedScalar pos0(const dimensionedScalar &ds)
List< label > labelList
A List of labels.
Definition List.H:62
dimensionedSymmTensor sqr(const dimensionedVector &dv)
Field< scalar > scalarField
Specialisation of Field<T> for scalar.
dimensionedScalar sqrt(const dimensionedScalar &ds)
static constexpr const zero Zero
Global zero (0).
Definition zero.H:127
dimensioned< scalar > dimensionedScalar
Dimensioned scalar obtained from generic dimensioned type.
dimensioned< typename typeOfMag< Type >::type > magSqr(const dimensioned< Type > &dt)
fvPatchField< vector > fvPatchVectorField
fvPatchField< scalar > fvPatchScalarField
volScalarField & alpha
dictionary dict
dimensionedScalar alphaMax("alphaMax", dimless/dimTime, laminarTransport)