Merge /u/wyldckat/foam-extend32/ branch master into master
[foam-extend-3.2.git] / src / lagrangian / dieselSpray / spraySubModels / dragModel / standardDragModel / standardDragModel.H
blob694a53c6b47b21959024791f6892c43202f2a11e
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | foam-extend: Open Source CFD
4    \\    /   O peration     | Version:     3.2
5     \\  /    A nd           | Web:         http://www.foam-extend.org
6      \\/     M anipulation  | For copyright notice see file Copyright
7 -------------------------------------------------------------------------------
8 License
9     This file is part of foam-extend.
11     foam-extend is free software: you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by the
13     Free Software Foundation, either version 3 of the License, or (at your
14     option) any later version.
16     foam-extend is distributed in the hope that it will be useful, but
17     WITHOUT ANY WARRANTY; without even the implied warranty of
18     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19     General Public License for more details.
21     You should have received a copy of the GNU General Public License
22     along with foam-extend.  If not, see <http://www.gnu.org/licenses/>.
24 Class
25     Foam::standardDragModel
27 Description
28     standard drag law model with a lower limit on the Cd-value
30 \*---------------------------------------------------------------------------*/
32 #ifndef standardDragModel_H
33 #define standardDragModel_H
35 #include "dragModel.H"
37 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
39 namespace Foam
42 /*---------------------------------------------------------------------------*\
43                            Class standardDragModel Declaration
44 \*---------------------------------------------------------------------------*/
46 class standardDragModel
48     public dragModel
51 private:
53     // Private data
55         dictionary dragDict_;
56         scalar preReFactor_;
57         scalar ReExponent_;
58         scalar ReLimiter_;
59         scalar CdLimiter_;
60         scalar Cdistort_;
62 public:
64     //- Runtime type information
65         TypeName("standardDragModel");
68     // Constructors
70         //- Construct from components
71         standardDragModel
72         (
73             const dictionary& dict
74         );
77     // Destructor
79         ~standardDragModel();
82     // Member Functions
84         scalar Cd
85         (
86             const scalar ReynoldsNumber,
87             const scalar deviation
88         ) const;
90         scalar relaxationTime
91         (
92             const vector& URel,
93             const scalar diameter,
94             const scalar rho,
95             const scalar liquidDensity,
96             const scalar nu,
97             const scalar deviation
98         ) const;
102 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
104 } // End namespace Foam
106 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
108 #endif
110 // ************************************************************************* //