/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | www.openfoam.com
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2013-2016 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::TimeScaleModels::isotropic
Group
grpLagrangianIntermediateMPPICTimeScaleSubModels
Description
Model for the time scale over which the velocity field of a dispersed phase
tends towards an isotropic distribution.
Reference:
\verbatim
"Inclusion of collisional return-to-isotropy in the MP-PIC method"
P O'Rourke and D Snider
Chemical Engineering Science
Volume 80, Issue 0, Pages 39-54, December 2012
\endverbatim
SourceFiles
isotropic.C
\*---------------------------------------------------------------------------*/
#ifndef isotropic_H
#define isotropic_H
#include "TimeScaleModel.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
namespace TimeScaleModels
{
/*---------------------------------------------------------------------------*\
Class isotropic Declaration
\*---------------------------------------------------------------------------*/
class isotropic
:
public TimeScaleModel
{
public:
//- Runtime type information
TypeName("isotropic");
//- Constructors
//- Construct from components
isotropic(const dictionary& dict);
//- Construct a copy
isotropic(const isotropic& hc);
//- Construct and return a clone
virtual autoPtr clone() const
{
return autoPtr
(
new isotropic(*this)
);
}
//- Destructor
virtual ~isotropic();
//- Member Functions
//- Time scale
tmp> oneByTau
(
const FieldField& alpha,
const FieldField& r32,
const FieldField& uSqr,
const FieldField& f
) const;
};
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace TimeScaleModels
} // End namespace Foam
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#endif
// ************************************************************************* //