none_packingDispersionModel.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) 2024 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 
29 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
30 
31 namespace Foam
32 {
33 namespace packingDispersionModels
34 {
37  (
39  none,
41  );
42 }
43 }
44 
45 
46 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
47 
49 (
50  const relativeVelocityModel& relativeVelocity
51 )
52 :
53  packingDispersionModel(relativeVelocity)
54 {}
55 
56 
58 (
59  const dictionary& dict,
60  const relativeVelocityModel& relativeVelocity
61 )
62 :
63  none(relativeVelocity)
64 {}
65 
66 
67 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
68 
70 {}
71 
72 
73 // * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * * //
74 
77 {
79  return tmp<volScalarField>(nullptr);
80 }
81 
82 
85 {
86  return volScalarField::New
87  (
88  typedName("Dd"),
89  relativeVelocity_.mixture().mesh(),
91  );
92 }
93 
94 
95 // ************************************************************************* //
Macros for easy insertion into run-time selection tables.
static tmp< GeometricField< Type, GeoMesh, PrimitiveField > > New(const word &name, const Internal &, const PtrList< Patch > &, const HashPtrTable< Source > &=HashPtrTable< Source >())
Return a temporary field constructed from name,.
A list of keywords followed by any number of values (e.g. words and numbers) or sub-dictionaries.
Definition: dictionary.H:162
Packing dispersion model.
virtual tmp< volScalarField > Dd() const
Return the diffusion coefficient of the dispersed phase.
virtual tmp< volScalarField > sigmaPrime() const
Return the derivative of the packing stress w.r.t. phase-fraction.
none(const relativeVelocityModel &relativeVelocity)
Construct from relativeVelocity.
A class for managing temporary objects.
Definition: tmp.H:55
#define NotImplemented
Issue a FatalErrorIn for a function not currently implemented.
Definition: error.H:381
addToRunTimeSelectionTable(packingDispersionModel, DeClercq, dictionary)
Namespace for OpenFOAM.
const dimensionSet dimKinematicViscosity
word typedName(Name name)
Return the name of the object within the given type.
Definition: typeInfo.H:181
dictionary dict