246 lines
6.7 KiB
C
246 lines
6.7 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2011-2014 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 "flowRateTiltedInletVelocityFvPatchVectorField.H"
|
|
#include "volFields.H"
|
|
#include "addToRunTimeSelectionTable.H"
|
|
#include "fvPatchFieldMapper.H"
|
|
#include "surfaceFields.H"
|
|
|
|
#include "unitConversion.H"
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
Foam::flowRateTiltedInletVelocityFvPatchVectorField::
|
|
flowRateTiltedInletVelocityFvPatchVectorField
|
|
(
|
|
const fvPatch& p,
|
|
const DimensionedField<vector, volMesh>& iF
|
|
)
|
|
:
|
|
fixedValueFvPatchField<vector>(p, iF),
|
|
flowRate_(),
|
|
volumetric_(false),
|
|
rhoName_("rho"),
|
|
rhoInlet_(0.0),
|
|
angle_(0.0),
|
|
axis_(vector(0,0,0))
|
|
{}
|
|
|
|
|
|
Foam::flowRateTiltedInletVelocityFvPatchVectorField::
|
|
flowRateTiltedInletVelocityFvPatchVectorField
|
|
(
|
|
const flowRateTiltedInletVelocityFvPatchVectorField& ptf,
|
|
const fvPatch& p,
|
|
const DimensionedField<vector, volMesh>& iF,
|
|
const fvPatchFieldMapper& mapper
|
|
)
|
|
:
|
|
fixedValueFvPatchField<vector>(ptf, p, iF, mapper),
|
|
flowRate_(ptf.flowRate_().clone().ptr()),
|
|
volumetric_(ptf.volumetric_),
|
|
rhoName_(ptf.rhoName_),
|
|
rhoInlet_(ptf.rhoInlet_),
|
|
angle_(ptf.angle_),
|
|
axis_(ptf.axis_)
|
|
{}
|
|
|
|
|
|
Foam::flowRateTiltedInletVelocityFvPatchVectorField::
|
|
flowRateTiltedInletVelocityFvPatchVectorField
|
|
(
|
|
const fvPatch& p,
|
|
const DimensionedField<vector, volMesh>& iF,
|
|
const dictionary& dict
|
|
)
|
|
:
|
|
fixedValueFvPatchField<vector>(p, iF),
|
|
rhoInlet_(dict.lookupOrDefault<scalar>("rhoInlet", -VGREAT))
|
|
{
|
|
if (dict.found("volumetricFlowRate"))
|
|
{
|
|
volumetric_ = true;
|
|
flowRate_ = DataEntry<scalar>::New("volumetricFlowRate", dict);
|
|
rhoName_ = "rho";
|
|
}
|
|
else if (dict.found("massFlowRate"))
|
|
{
|
|
volumetric_ = false;
|
|
flowRate_ = DataEntry<scalar>::New("massFlowRate", dict);
|
|
rhoName_ = word(dict.lookupOrDefault<word>("rho", "rho"));
|
|
}
|
|
else
|
|
{
|
|
FatalIOErrorIn
|
|
(
|
|
"flowRateTiltedInletVelocityFvPatchVectorField::"
|
|
"flowRateTiltedInletVelocityFvPatchVectorField"
|
|
"(const fvPatch&, const DimensionedField<vector, volMesh>&,"
|
|
" const dictionary&)",
|
|
dict
|
|
) << "Please supply either 'volumetricFlowRate' or"
|
|
<< " 'massFlowRate' and 'rho'" << exit(FatalIOError);
|
|
}
|
|
|
|
angle_ = degToRad(readScalar(dict.lookup("angle")));
|
|
|
|
vector axis(dict.lookup("axis"));
|
|
|
|
axis_ = axis / mag(axis);
|
|
|
|
// Value field require if mass based
|
|
if (dict.found("value"))
|
|
{
|
|
fvPatchField<vector>::operator=
|
|
(
|
|
vectorField("value", dict, p.size())
|
|
);
|
|
}
|
|
else
|
|
{
|
|
evaluate(Pstream::blocking);
|
|
}
|
|
|
|
}
|
|
|
|
|
|
Foam::flowRateTiltedInletVelocityFvPatchVectorField::
|
|
flowRateTiltedInletVelocityFvPatchVectorField
|
|
(
|
|
const flowRateTiltedInletVelocityFvPatchVectorField& ptf
|
|
)
|
|
:
|
|
fixedValueFvPatchField<vector>(ptf),
|
|
flowRate_(ptf.flowRate_().clone().ptr()),
|
|
volumetric_(ptf.volumetric_),
|
|
rhoName_(ptf.rhoName_),
|
|
rhoInlet_(ptf.rhoInlet_),
|
|
angle_(ptf.angle_),
|
|
axis_(ptf.axis_)
|
|
{}
|
|
|
|
|
|
Foam::flowRateTiltedInletVelocityFvPatchVectorField::
|
|
flowRateTiltedInletVelocityFvPatchVectorField
|
|
(
|
|
const flowRateTiltedInletVelocityFvPatchVectorField& ptf,
|
|
const DimensionedField<vector, volMesh>& iF
|
|
)
|
|
:
|
|
fixedValueFvPatchField<vector>(ptf, iF),
|
|
flowRate_(ptf.flowRate_().clone().ptr()),
|
|
volumetric_(ptf.volumetric_),
|
|
rhoName_(ptf.rhoName_),
|
|
rhoInlet_(ptf.rhoInlet_),
|
|
angle_(ptf.angle_),
|
|
axis_(ptf.axis_)
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
void Foam::flowRateTiltedInletVelocityFvPatchVectorField::updateCoeffs()
|
|
{
|
|
if (updated())
|
|
{
|
|
return;
|
|
}
|
|
|
|
const scalar t = db().time().timeOutputValue();
|
|
|
|
// a simpler way of doing this would be nice
|
|
const scalar avgU = flowRate_->value(t)/gSum(patch().magSf());
|
|
|
|
vectorField n(-patch().nf());
|
|
|
|
scalarField B(Foam::asin(n & axis_));
|
|
|
|
scalarField tau(Foam::cos(B)*(Foam::tan(B+angle_) - Foam::tan(B)));
|
|
|
|
vectorField nt((n + tau * axis_)/(1.0 + tau * (axis_ & n)));
|
|
|
|
|
|
if (volumetric_ || rhoName_ == "none")
|
|
{
|
|
// volumetric flow-rate or density not given
|
|
operator==(nt*avgU);
|
|
}
|
|
else
|
|
{
|
|
// mass flow-rate
|
|
if (db().foundObject<volScalarField>(rhoName_))
|
|
{
|
|
const fvPatchField<scalar>& rhop =
|
|
patch().lookupPatchField<volScalarField, scalar>(rhoName_);
|
|
|
|
operator==(nt*avgU/rhop);
|
|
}
|
|
else
|
|
{
|
|
// Use constant density
|
|
if (rhoInlet_ < 0)
|
|
{
|
|
FatalErrorIn
|
|
(
|
|
"flowRateTiltedInletVelocityFvPatchVectorField::updateCoeffs()"
|
|
) << "Did not find registered density field " << rhoName_
|
|
<< " and no constant density 'rhoInlet' specified"
|
|
<< exit(FatalError);
|
|
}
|
|
operator==(nt*avgU/rhoInlet_);
|
|
}
|
|
}
|
|
|
|
fixedValueFvPatchVectorField::updateCoeffs();
|
|
}
|
|
|
|
|
|
void Foam::flowRateTiltedInletVelocityFvPatchVectorField::write(Ostream& os) const
|
|
{
|
|
fvPatchField<vector>::write(os);
|
|
flowRate_->writeData(os);
|
|
if (!volumetric_)
|
|
{
|
|
writeEntryIfDifferent<word>(os, "rho", "rho", rhoName_);
|
|
writeEntryIfDifferent<scalar>(os, "rhoInlet", -VGREAT, rhoInlet_);
|
|
}
|
|
writeEntry("value", os);
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
makePatchTypeField
|
|
(
|
|
fvPatchVectorField,
|
|
flowRateTiltedInletVelocityFvPatchVectorField
|
|
);
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|