Avoids the clutter and maintenance effort associated with providing the function signature string.
139 lines
3.9 KiB
C
139 lines
3.9 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2014-2015 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 "relativeVelocityModel.H"
|
|
|
|
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
defineTypeNameAndDebug(relativeVelocityModel, 0);
|
|
defineRunTimeSelectionTable(relativeVelocityModel, dictionary);
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
Foam::relativeVelocityModel::relativeVelocityModel
|
|
(
|
|
const dictionary& dict,
|
|
const incompressibleTwoPhaseInteractingMixture& mixture
|
|
)
|
|
:
|
|
mixture_(mixture),
|
|
alphac_(mixture.alpha2()),
|
|
alphad_(mixture.alpha1()),
|
|
rhoc_(mixture.rhoc()),
|
|
rhod_(mixture.rhod()),
|
|
|
|
Udm_
|
|
(
|
|
IOobject
|
|
(
|
|
"Udm",
|
|
alphac_.time().timeName(),
|
|
alphac_.mesh(),
|
|
IOobject::NO_READ,
|
|
IOobject::AUTO_WRITE
|
|
),
|
|
alphac_.mesh(),
|
|
dimensionedVector("Udm", dimVelocity, vector::zero),
|
|
mixture.U().boundaryField().types()
|
|
)
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Selectors * * * * * * * * * * * * * * * * //
|
|
|
|
Foam::autoPtr<Foam::relativeVelocityModel> Foam::relativeVelocityModel::New
|
|
(
|
|
const dictionary& dict,
|
|
const incompressibleTwoPhaseInteractingMixture& mixture
|
|
)
|
|
{
|
|
word modelType(dict.lookup(typeName));
|
|
|
|
Info<< "Selecting relative velocity model " << modelType << endl;
|
|
|
|
dictionaryConstructorTable::iterator cstrIter =
|
|
dictionaryConstructorTablePtr_->find(modelType);
|
|
|
|
if (cstrIter == dictionaryConstructorTablePtr_->end())
|
|
{
|
|
FatalErrorInFunction
|
|
<< "Unknown time scale model type " << modelType
|
|
<< ", constructor not in hash table" << nl << nl
|
|
<< " Valid time scale model types are:" << nl
|
|
<< dictionaryConstructorTablePtr_->sortedToc()
|
|
<< abort(FatalError);
|
|
}
|
|
|
|
return
|
|
autoPtr<relativeVelocityModel>
|
|
(
|
|
cstrIter()
|
|
(
|
|
dict.subDict(modelType + "Coeffs"),
|
|
mixture
|
|
)
|
|
);
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
|
|
|
|
Foam::relativeVelocityModel::~relativeVelocityModel()
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * * //
|
|
|
|
tmp<volScalarField> Foam::relativeVelocityModel::rho() const
|
|
{
|
|
return alphac_*rhoc_ + alphad_*rhod_;
|
|
}
|
|
|
|
|
|
tmp<volSymmTensorField> Foam::relativeVelocityModel::tauDm() const
|
|
{
|
|
volScalarField betac(alphac_*rhoc_);
|
|
volScalarField betad(alphad_*rhod_);
|
|
|
|
// Calculate the relative velocity of the continuous phase w.r.t the mean
|
|
volVectorField Ucm(betad*Udm_/betac);
|
|
|
|
return tmp<volSymmTensorField>
|
|
(
|
|
new volSymmTensorField
|
|
(
|
|
"tauDm",
|
|
betad*sqr(Udm_) + betac*sqr(Ucm)
|
|
)
|
|
);
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|