Loading...
Searching...
No Matches
wakeEntrainmentCoalescence.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) 2013-2018 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
29#include "fvmSup.H"
31
32// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
34namespace Foam
35{
36namespace diameterModels
37{
38namespace IATEsources
39{
42 (
46 );
48}
49}
50
51
52// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
53
56(
57 const IATE& iate,
58 const dictionary& dict
59)
60:
61 IATEsource(iate),
62 Cwe_("Cwe", dimless, dict)
63{}
64
65
66// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
67
70(
71 const volScalarField& alphai,
72 volScalarField& kappai
73) const
74{
75 return -fvm::SuSp(12*phi()*Cwe_*cbrt(CD())*iate_.a()*Ur(), kappai);
76}
77
78
79// ************************************************************************* //
Macros for easy insertion into run-time selection tables.
#define addToRunTimeSelectionTable(baseType, thisType, argNames)
Add to construction table with typeName as the key.
IATE (Interfacial Area Transport Equation) bubble diameter model.
Definition IATE.H:67
tmp< volScalarField > a() const
Return the interfacial area.
Definition IATE.H:147
IATE (Interfacial Area Transport Equation) bubble diameter model run-time selectable sources.
Definition IATEsource.H:53
tmp< volScalarField > CD() const
Return the bubble drag coefficient.
Definition IATEsource.C:94
const IATE & iate_
Reference to the IATE this source applies to.
Definition IATEsource.H:62
tmp< volScalarField > Ur() const
Return the bubble relative velocity.
Definition IATEsource.C:68
Bubble coalescence due to wake entrainment IATE source as defined in paper:
A list of keyword definitions, which are a keyword followed by a number of values (eg,...
Definition dictionary.H:133
A class for managing temporary objects.
Definition tmp.H:75
#define defineTypeNameAndDebug(Type, DebugSwitch)
Define the typeName and debug information.
Definition className.H:142
Calculate the finiteVolume matrix for implicit and explicit sources.
zeroField SuSp(const Foam::zero, const GeometricField< Type, fvPatchField, volMesh > &)
A no-op source.
Namespace for OpenFOAM.
const dimensionSet dimless
Dimensionless.
GeometricField< scalar, fvPatchField, volMesh > volScalarField
dimensionedScalar cbrt(const dimensionedScalar &ds)
dictionary dict