/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2014-2018 OpenFOAM Foundation ------------------------------------------------------------------------------- License This file is part of OpenFOAM. OpenFOAM is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. OpenFOAM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenFOAM. If not, see . Class Foam::dragModels::segregated Description Segregated drag model for use in regions with no obvious dispersed phase. Reference: \verbatim Marschall, H. (2011). Towards the numerical simulation of multi-scale two-phase flows. PhD Thesis, TU München. \endverbatim SourceFiles segregated.C \*---------------------------------------------------------------------------*/ #ifndef segregated_H #define segregated_H #include "dragModel.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { class phasePair; namespace dragModels { /*---------------------------------------------------------------------------*\ Class segregated Declaration \*---------------------------------------------------------------------------*/ class segregated : public dragModel { // Private data //- M coefficient const dimensionedScalar m_; //- N coefficient const dimensionedScalar n_; public: //- Runtime type information TypeName("segregated"); // Constructors //- Construct from components segregated ( const dictionary& dict, const phasePair& pair, const bool registerObject ); //- Destructor virtual ~segregated(); // Member Functions //- Drag coefficient virtual tmp CdRe() const; //- The drag function used in the momentum equation virtual tmp K() const; //- The drag function Kf used in the face-momentum equations virtual tmp Kf() const; }; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace dragModels } // End namespace Foam // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #endif // ************************************************************************* //