-
1) rPolynomial Eq of State 2) externalForce and softWall in rigidBodyDynamics INT: Several minor bug fixes plus
1) rPolynomial Eq of State 2) externalForce and softWall in rigidBodyDynamics INT: Several minor bug fixes plus
Wallis.C 3.14 KiB
/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | www.openfoam.com
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2011-2015 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 <http://www.gnu.org/licenses/>.
\*---------------------------------------------------------------------------*/
#include "Wallis.H"
#include "addToRunTimeSelectionTable.H"
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
namespace Foam
{
namespace compressibilityModels
{
defineTypeNameAndDebug(Wallis, 0);
addToRunTimeSelectionTable
(
barotropicCompressibilityModel,
Wallis,
dictionary
);
}
}
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
Foam::compressibilityModels::Wallis::Wallis
(
const dictionary& compressibilityProperties,
const volScalarField& gamma,
const word& psiName
)
:
barotropicCompressibilityModel(compressibilityProperties, gamma, psiName),
pSat_
(
"pSat",
dimPressure,
compressibilityProperties_
),
psiv_
(
"psiv",
dimCompressibility,
compressibilityProperties_
),
psil_
(
"psil",
dimCompressibility,
compressibilityProperties_
),
rhovSat_(psiv_*pSat_),
rholSat_
(
"rholSat",
dimDensity,
compressibilityProperties_
)
{
correct();
}
// * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * * //
void Foam::compressibilityModels::Wallis::correct()
{
psi_ =
(gamma_*rhovSat_ + (scalar(1) - gamma_)*rholSat_)
*(gamma_/pSat_ + (scalar(1) - gamma_)*psil_/rholSat_);
}
bool Foam::compressibilityModels::Wallis::read
(
const dictionary& compressibilityProperties
)
{
barotropicCompressibilityModel::read(compressibilityProperties);
compressibilityProperties_.readEntry("pSat", pSat_);
compressibilityProperties_.readEntry("psiv", psiv_);
compressibilityProperties_.readEntry("psil", psil_);
rhovSat_ = psiv_*pSat_;
compressibilityProperties_.readEntry("rholSat", rholSat_);
return true;
}
// ************************************************************************* //