/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | www.openfoam.com
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2011-2016 OpenFOAM Foundation
Copyright (C) 2017-2020 OpenCFD Ltd.
-------------------------------------------------------------------------------
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 .
\*---------------------------------------------------------------------------*/
#include "phaseHydrostaticPressureFvPatchScalarField.H"
#include "addToRunTimeSelectionTable.H"
#include "fvPatchFieldMapper.H"
#include "volFields.H"
#include "surfaceFields.H"
#include "gravityMeshObject.H"
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
Foam::phaseHydrostaticPressureFvPatchScalarField::
phaseHydrostaticPressureFvPatchScalarField
(
const fvPatch& p,
const DimensionedField& iF
)
:
mixedFvPatchScalarField(p, iF),
phaseFraction_("alpha"),
rho_(0.0),
pRefValue_(0.0),
pRefPoint_(Zero)
{
this->refValue() = 0.0;
this->refGrad() = 0.0;
this->valueFraction() = 0.0;
}
Foam::phaseHydrostaticPressureFvPatchScalarField::
phaseHydrostaticPressureFvPatchScalarField
(
const fvPatch& p,
const DimensionedField& iF,
const dictionary& dict
)
:
mixedFvPatchScalarField(p, iF),
phaseFraction_(dict.getOrDefault("phaseFraction", "alpha")),
rho_(dict.get("rho")),
pRefValue_(dict.get("pRefValue")),
pRefPoint_(dict.lookup("pRefPoint"))
{
fvPatchFieldBase::readDict(dict);
this->refValue() = pRefValue_;
if (!this->readValueEntry(dict))
{
fvPatchScalarField::operator=(this->refValue());
}
this->refGrad() = 0.0;
this->valueFraction() = 0.0;
}
Foam::phaseHydrostaticPressureFvPatchScalarField::
phaseHydrostaticPressureFvPatchScalarField
(
const phaseHydrostaticPressureFvPatchScalarField& ptf,
const fvPatch& p,
const DimensionedField& iF,
const fvPatchFieldMapper& mapper
)
:
mixedFvPatchScalarField(ptf, p, iF, mapper),
phaseFraction_(ptf.phaseFraction_),
rho_(ptf.rho_),
pRefValue_(ptf.pRefValue_),
pRefPoint_(ptf.pRefPoint_)
{}
Foam::phaseHydrostaticPressureFvPatchScalarField::
phaseHydrostaticPressureFvPatchScalarField
(
const phaseHydrostaticPressureFvPatchScalarField& ptf
)
:
mixedFvPatchScalarField(ptf),
phaseFraction_(ptf.phaseFraction_)
{}
Foam::phaseHydrostaticPressureFvPatchScalarField::
phaseHydrostaticPressureFvPatchScalarField
(
const phaseHydrostaticPressureFvPatchScalarField& ptf,
const DimensionedField& iF
)
:
mixedFvPatchScalarField(ptf, iF),
phaseFraction_(ptf.phaseFraction_),
rho_(ptf.rho_),
pRefValue_(ptf.pRefValue_),
pRefPoint_(ptf.pRefPoint_)
{}
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
void Foam::phaseHydrostaticPressureFvPatchScalarField::updateCoeffs()
{
if (this->updated())
{
return;
}
const scalarField& alphap =
patch().lookupPatchField(phaseFraction_);
const uniformDimensionedVectorField& g =
meshObjects::gravity::New(db().time());
// scalar rhor = 1000;
// scalarField alphap1 = clamp(alphap, zero_one{});
// valueFraction() = alphap1/(alphap1 + rhor*(1.0 - alphap1));
valueFraction() = clamp(alphap, zero_one{});
refValue() =
pRefValue_
+ rho_*((g.value() & patch().Cf()) - (g.value() & pRefPoint_));
mixedFvPatchScalarField::updateCoeffs();
}
void Foam::phaseHydrostaticPressureFvPatchScalarField::write(Ostream& os) const
{
fvPatchField::write(os);
os.writeEntryIfDifferent("phaseFraction", "alpha", phaseFraction_);
os.writeEntry("rho", rho_);
os.writeEntry("pRefValue", pRefValue_);
os.writeEntry("pRefPoint", pRefPoint_);
fvPatchField::writeValueEntry(os);
}
// * * * * * * * * * * * * * * * Member Operators * * * * * * * * * * * * * //
void Foam::phaseHydrostaticPressureFvPatchScalarField::operator=
(
const fvPatchScalarField& ptf
)
{
fvPatchScalarField::operator=
(
lerp(ptf, refValue(), valueFraction())
);
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
makePatchTypeField
(
fvPatchScalarField,
phaseHydrostaticPressureFvPatchScalarField
);
}
// ************************************************************************* //