SchillerNaumannDrag.H
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) 2025-2026 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 Class
25  Foam::Lagrangian::SchillerNaumannDrag
26 
27 Description
28  Drag model of Schiller and Naumann for spherical particles in a turbulent
29  carrier flow
30 
31  References:
32  \verbatim
33  Schiller, L. & Naumann, A. (1933).
34  A drag coefficient correlation.
35  Zeit. Ver. Deutsch. Ing., 77, 318-320.
36  \endverbatim
37 
38 Usage
39  Example specification:
40  \verbatim
41  <LagrangianModelName>
42  {
43  type SchillerNaumannDrag;
44  }
45  \endverbatim
46 
47 SourceFiles
48  SchillerNaumannDrag.C
49 
50 \*---------------------------------------------------------------------------*/
51 
52 #ifndef SchillerNaumannDrag_H
53 #define SchillerNaumannDrag_H
54 
55 #include "drag.H"
56 
57 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
58 
59 namespace Foam
60 {
61 namespace Lagrangian
62 {
63 
64 /*---------------------------------------------------------------------------*\
65  Class SchillerNaumannDrag Declaration
66 \*---------------------------------------------------------------------------*/
67 
69 :
70  public drag
71 {
72 private:
73 
74  // Private Member Functions
75 
76  //- Calculate the drag coefficient
77  virtual tmp<LagrangianSubScalarField> calcD
78  (
79  const LagrangianModelRef& model,
80  const LagrangianSubMesh& subMesh
81  ) const;
82 
83 
84 public:
85 
86  //- Runtime type information
87  TypeName("SchillerNaumannDrag");
88 
89 
90  // Constructors
91 
92  //- Inherit constructors
93  using drag::drag;
94 
95 
96  // Member Functions
97 
98  //- Return the drag coefficient times Reynold's number, as a function
99  // of the Reynolds number. Used by other models.
101  (
103  );
104 };
105 
106 
107 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
108 
109 } // End namespace Lagrangian
110 } // End namespace Foam
111 
112 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
113 
114 #endif
115 
116 // ************************************************************************* //
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
Simple wrapper to provide an optional reference to a Lagrangian model.
Mesh that relates to a sub-section of a Lagrangian mesh. This is used to construct fields that relate...
Drag model of Schiller and Naumann for spherical particles in a turbulent carrier flow.
static tmp< LagrangianSubScalarField > CdRe(const LagrangianSubScalarField &Re)
Return the drag coefficient times Reynold's number, as a function.
TypeName("SchillerNaumannDrag")
Runtime type information.
Base class for Lagrangian drag models.
Definition: drag.H:55
drag(const word &name, const LagrangianMesh &mesh, const dictionary &modelDict, const dictionary &stateDict)
Construct from components.
Definition: drag.C:72
A class for managing temporary objects.
Definition: tmp.H:55
Namespace for OpenFOAM.
scalarField Re(const UList< complex > &cf)
Definition: complexFields.C:97