mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
251 lines
6.5 KiB
C
251 lines
6.5 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2017 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 "flowRateOutletVelocityFvPatchVectorField.H"
|
|
#include "volFields.H"
|
|
#include "one.H"
|
|
#include "addToRunTimeSelectionTable.H"
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
Foam::flowRateOutletVelocityFvPatchVectorField::
|
|
flowRateOutletVelocityFvPatchVectorField
|
|
(
|
|
const fvPatch& p,
|
|
const DimensionedField<vector, volMesh>& iF
|
|
)
|
|
:
|
|
fixedValueFvPatchField<vector>(p, iF),
|
|
flowRate_(),
|
|
volumetric_(false),
|
|
rhoName_("rho"),
|
|
rhoOutlet_(0.0)
|
|
{}
|
|
|
|
|
|
Foam::flowRateOutletVelocityFvPatchVectorField::
|
|
flowRateOutletVelocityFvPatchVectorField
|
|
(
|
|
const fvPatch& p,
|
|
const DimensionedField<vector, volMesh>& iF,
|
|
const dictionary& dict
|
|
)
|
|
:
|
|
fixedValueFvPatchField<vector>(p, iF, dict, false),
|
|
rhoOutlet_(dict.lookupOrDefault<scalar>("rhoOutlet", -VGREAT))
|
|
{
|
|
if (dict.found("volumetricFlowRate"))
|
|
{
|
|
volumetric_ = true;
|
|
flowRate_ = Function1<scalar>::New("volumetricFlowRate", dict);
|
|
rhoName_ = "rho";
|
|
}
|
|
else if (dict.found("massFlowRate"))
|
|
{
|
|
volumetric_ = false;
|
|
flowRate_ = Function1<scalar>::New("massFlowRate", dict);
|
|
rhoName_ = dict.lookupOrDefault<word>("rho", "rho");
|
|
}
|
|
else
|
|
{
|
|
FatalIOErrorInFunction
|
|
(
|
|
dict
|
|
) << "Please supply either 'volumetricFlowRate' or"
|
|
<< " 'massFlowRate' and 'rho'" << exit(FatalIOError);
|
|
}
|
|
|
|
// Value field require if mass based
|
|
if (dict.found("value"))
|
|
{
|
|
fvPatchField<vector>::operator=
|
|
(
|
|
vectorField("value", dict, p.size())
|
|
);
|
|
}
|
|
else
|
|
{
|
|
evaluate(Pstream::commsTypes::blocking);
|
|
}
|
|
}
|
|
|
|
|
|
Foam::flowRateOutletVelocityFvPatchVectorField::
|
|
flowRateOutletVelocityFvPatchVectorField
|
|
(
|
|
const flowRateOutletVelocityFvPatchVectorField& ptf,
|
|
const fvPatch& p,
|
|
const DimensionedField<vector, volMesh>& iF,
|
|
const fvPatchFieldMapper& mapper
|
|
)
|
|
:
|
|
fixedValueFvPatchField<vector>(ptf, p, iF, mapper),
|
|
flowRate_(ptf.flowRate_.clone()),
|
|
volumetric_(ptf.volumetric_),
|
|
rhoName_(ptf.rhoName_),
|
|
rhoOutlet_(ptf.rhoOutlet_)
|
|
{}
|
|
|
|
|
|
Foam::flowRateOutletVelocityFvPatchVectorField::
|
|
flowRateOutletVelocityFvPatchVectorField
|
|
(
|
|
const flowRateOutletVelocityFvPatchVectorField& ptf
|
|
)
|
|
:
|
|
fixedValueFvPatchField<vector>(ptf),
|
|
flowRate_(ptf.flowRate_.clone()),
|
|
volumetric_(ptf.volumetric_),
|
|
rhoName_(ptf.rhoName_),
|
|
rhoOutlet_(ptf.rhoOutlet_)
|
|
{}
|
|
|
|
|
|
Foam::flowRateOutletVelocityFvPatchVectorField::
|
|
flowRateOutletVelocityFvPatchVectorField
|
|
(
|
|
const flowRateOutletVelocityFvPatchVectorField& ptf,
|
|
const DimensionedField<vector, volMesh>& iF
|
|
)
|
|
:
|
|
fixedValueFvPatchField<vector>(ptf, iF),
|
|
flowRate_(ptf.flowRate_.clone()),
|
|
volumetric_(ptf.volumetric_),
|
|
rhoName_(ptf.rhoName_),
|
|
rhoOutlet_(ptf.rhoOutlet_)
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
template<class RhoType>
|
|
void Foam::flowRateOutletVelocityFvPatchVectorField::updateValues
|
|
(
|
|
const RhoType& rho
|
|
)
|
|
{
|
|
const scalar t = db().time().timeOutputValue();
|
|
|
|
const vectorField n(patch().nf());
|
|
|
|
// Extrapolate patch velocity
|
|
vectorField Up(this->patchInternalField());
|
|
|
|
// Patch normal extrapolated velocity
|
|
scalarField nUp(n & Up);
|
|
|
|
// Remove the normal component of the extrapolate patch velocity
|
|
Up -= nUp*n;
|
|
|
|
// Remove any reverse flow
|
|
nUp = max(nUp, scalar(0));
|
|
|
|
const scalar flowRate = flowRate_->value(t);
|
|
const scalar estimatedFlowRate = gSum(rho*(this->patch().magSf()*nUp));
|
|
|
|
if (estimatedFlowRate/flowRate > 0.5)
|
|
{
|
|
nUp *= (mag(flowRate)/mag(estimatedFlowRate));
|
|
}
|
|
else
|
|
{
|
|
nUp += ((flowRate - estimatedFlowRate)/gSum(rho*patch().magSf()));
|
|
}
|
|
|
|
// Add the corrected normal component of velocity to the patch velocity
|
|
Up += nUp*n;
|
|
|
|
// Correct the patch velocity
|
|
this->operator==(Up);
|
|
}
|
|
|
|
|
|
void Foam::flowRateOutletVelocityFvPatchVectorField::updateCoeffs()
|
|
{
|
|
if (updated())
|
|
{
|
|
return;
|
|
}
|
|
|
|
if (volumetric_ || rhoName_ == "none")
|
|
{
|
|
updateValues(one());
|
|
}
|
|
else
|
|
{
|
|
// Mass flow-rate
|
|
if (db().foundObject<volScalarField>(rhoName_))
|
|
{
|
|
const fvPatchField<scalar>& rhop =
|
|
patch().lookupPatchField<volScalarField, scalar>(rhoName_);
|
|
|
|
updateValues(rhop);
|
|
}
|
|
else
|
|
{
|
|
// Use constant density
|
|
if (rhoOutlet_ < 0)
|
|
{
|
|
FatalErrorInFunction
|
|
<< "Did not find registered density field " << rhoName_
|
|
<< " and no constant density 'rhoOutlet' specified"
|
|
<< exit(FatalError);
|
|
}
|
|
|
|
updateValues(rhoOutlet_);
|
|
}
|
|
}
|
|
|
|
fixedValueFvPatchVectorField::updateCoeffs();
|
|
}
|
|
|
|
|
|
void Foam::flowRateOutletVelocityFvPatchVectorField::write(Ostream& os) const
|
|
{
|
|
fvPatchField<vector>::write(os);
|
|
flowRate_->writeData(os);
|
|
if (!volumetric_)
|
|
{
|
|
os.writeEntryIfDifferent<word>("rho", "rho", rhoName_);
|
|
os.writeEntryIfDifferent<scalar>("rhoOutlet", -VGREAT, rhoOutlet_);
|
|
}
|
|
writeEntry("value", os);
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
makePatchTypeField
|
|
(
|
|
fvPatchVectorField,
|
|
flowRateOutletVelocityFvPatchVectorField
|
|
);
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|