98 lines
2.7 KiB
C
98 lines
2.7 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2011-2012 OpenFOAM Foundation
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
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 <http://www.gnu.org/licenses/>.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "SyamlalOBrien.H"
|
|
#include "addToRunTimeSelectionTable.H"
|
|
|
|
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
namespace dragModels
|
|
{
|
|
defineTypeNameAndDebug(SyamlalOBrien, 0);
|
|
|
|
addToRunTimeSelectionTable
|
|
(
|
|
dragModel,
|
|
SyamlalOBrien,
|
|
dictionary
|
|
);
|
|
}
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
Foam::dragModels::SyamlalOBrien::SyamlalOBrien
|
|
(
|
|
const dictionary& interfaceDict,
|
|
const phaseModel& phase1,
|
|
const phaseModel& phase2
|
|
)
|
|
:
|
|
dragModel(interfaceDict, phase1, phase2)
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
|
|
|
|
Foam::dragModels::SyamlalOBrien::~SyamlalOBrien()
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
Foam::tmp<Foam::volScalarField> Foam::dragModels::SyamlalOBrien::K
|
|
(
|
|
const volScalarField& Ur
|
|
) const
|
|
{
|
|
volScalarField alpha2(max(phase2_, scalar(1.0e-6)));
|
|
volScalarField A(pow(alpha2, 4.14));
|
|
volScalarField B
|
|
(
|
|
neg(alpha2 - 0.85)*(0.8*pow(alpha2, 1.28))
|
|
+ pos(alpha2 - 0.85)*(pow(alpha2, 2.65))
|
|
);
|
|
|
|
volScalarField Re(max(Ur*phase1_.d()/phase2_.nu(), scalar(1.0e-3)));
|
|
|
|
volScalarField Vr
|
|
(
|
|
0.5*
|
|
(
|
|
A - 0.06*Re + sqrt(sqr(0.06*Re) + 0.12*Re*(2.0*B - A) + sqr(A))
|
|
)
|
|
);
|
|
|
|
volScalarField Cds(sqr(0.63 + 4.8*sqrt(Vr/Re)));
|
|
|
|
return 0.75*Cds*phase2_.rho()*Ur/(phase1_.d()*sqr(Vr));
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|