252 lines
6.5 KiB
C++
252 lines
6.5 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration | Website: https://openfoam.org
|
|
\\ / A nd | Copyright (C) 2011-2022 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 "linearUpwindV.H"
|
|
|
|
// * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * * //
|
|
|
|
template<class Type>
|
|
Foam::linearUpwindV<Type>::linearUpwindV
|
|
(
|
|
const fvMesh& mesh,
|
|
const surfaceScalarField& faceFlux
|
|
)
|
|
:
|
|
upwind<Type>(mesh, faceFlux),
|
|
gradSchemeName_("grad"),
|
|
gradScheme_
|
|
(
|
|
new fv::gaussGrad<Type>(mesh)
|
|
)
|
|
{}
|
|
|
|
|
|
template<class Type>
|
|
Foam::linearUpwindV<Type>::linearUpwindV
|
|
(
|
|
const fvMesh& mesh,
|
|
Istream& schemeData
|
|
)
|
|
:
|
|
upwind<Type>(mesh, schemeData),
|
|
gradSchemeName_(schemeData),
|
|
gradScheme_
|
|
(
|
|
fv::gradScheme<Type>::New
|
|
(
|
|
mesh,
|
|
mesh.schemes().grad(gradSchemeName_)
|
|
)
|
|
)
|
|
{}
|
|
|
|
|
|
template<class Type>
|
|
Foam::linearUpwindV<Type>::linearUpwindV
|
|
(
|
|
const fvMesh& mesh,
|
|
const surfaceScalarField& faceFlux,
|
|
Istream& schemeData
|
|
)
|
|
:
|
|
upwind<Type>(mesh, faceFlux, schemeData),
|
|
gradSchemeName_(schemeData),
|
|
gradScheme_
|
|
(
|
|
fv::gradScheme<Type>::New
|
|
(
|
|
mesh,
|
|
mesh.schemes().grad(gradSchemeName_)
|
|
)
|
|
)
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
template<class Type>
|
|
Foam::tmp<Foam::SurfaceField<Type>>
|
|
Foam::linearUpwindV<Type>::correction
|
|
(
|
|
const VolField<Type>& vf
|
|
) const
|
|
{
|
|
const fvMesh& mesh = this->mesh();
|
|
|
|
tmp<SurfaceField<Type>> tsfCorr
|
|
(
|
|
SurfaceField<Type>::New
|
|
(
|
|
"linearUpwindV::correction(" + vf.name() + ')',
|
|
mesh,
|
|
dimensioned<Type>
|
|
(
|
|
vf.name(),
|
|
vf.dimensions(),
|
|
Zero
|
|
)
|
|
)
|
|
);
|
|
|
|
SurfaceField<Type>& sfCorr = tsfCorr.ref();
|
|
|
|
const surfaceScalarField& faceFlux = this->faceFlux_;
|
|
const surfaceScalarField& w = mesh.weights();
|
|
|
|
const labelList& own = mesh.owner();
|
|
const labelList& nei = mesh.neighbour();
|
|
|
|
const volVectorField& C = mesh.C();
|
|
const surfaceVectorField& Cf = mesh.Cf();
|
|
|
|
tmp
|
|
<
|
|
GeometricField
|
|
<
|
|
typename outerProduct<vector, Type>::type,
|
|
fvPatchField,
|
|
volMesh
|
|
>
|
|
> tgradVf = gradScheme_().grad(vf, gradSchemeName_);
|
|
|
|
const GeometricField
|
|
<
|
|
typename outerProduct<vector, Type>::type,
|
|
fvPatchField,
|
|
volMesh
|
|
>& gradVf = tgradVf();
|
|
|
|
forAll(faceFlux, facei)
|
|
{
|
|
vector maxCorr;
|
|
|
|
if (faceFlux[facei] > 0.0)
|
|
{
|
|
maxCorr =
|
|
(1.0 - w[facei])*(vf[nei[facei]] - vf[own[facei]]);
|
|
|
|
sfCorr[facei] =
|
|
(Cf[facei] - C[own[facei]]) & gradVf[own[facei]];
|
|
}
|
|
else
|
|
{
|
|
maxCorr =
|
|
w[facei]*(vf[own[facei]] - vf[nei[facei]]);
|
|
|
|
sfCorr[facei] =
|
|
(Cf[facei] - C[nei[facei]]) & gradVf[nei[facei]];
|
|
}
|
|
|
|
scalar sfCorrs = magSqr(sfCorr[facei]);
|
|
scalar maxCorrs = sfCorr[facei] & maxCorr;
|
|
|
|
if (sfCorrs > 0)
|
|
{
|
|
if (maxCorrs < 0)
|
|
{
|
|
sfCorr[facei] = Zero;
|
|
}
|
|
else if (sfCorrs > maxCorrs)
|
|
{
|
|
sfCorr[facei] *= maxCorrs/(sfCorrs + vSmall);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
typename SurfaceField<Type>::
|
|
Boundary& bSfCorr = sfCorr.boundaryFieldRef();
|
|
|
|
forAll(bSfCorr, patchi)
|
|
{
|
|
fvsPatchField<Type>& pSfCorr = bSfCorr[patchi];
|
|
|
|
if (pSfCorr.coupled())
|
|
{
|
|
const labelUList& pOwner =
|
|
mesh.boundary()[patchi].faceCells();
|
|
|
|
const vectorField& pCf = Cf.boundaryField()[patchi];
|
|
const scalarField& pW = w.boundaryField()[patchi];
|
|
|
|
const scalarField& pFaceFlux = faceFlux.boundaryField()[patchi];
|
|
|
|
const Field<typename outerProduct<vector, Type>::type> pGradVfNei
|
|
(
|
|
gradVf.boundaryField()[patchi].patchNeighbourField()
|
|
);
|
|
|
|
const Field<Type> pVfNei
|
|
(
|
|
vf.boundaryField()[patchi].patchNeighbourField()
|
|
);
|
|
|
|
// Build the d-vectors
|
|
vectorField pd(Cf.boundaryField()[patchi].patch().delta());
|
|
|
|
forAll(pOwner, facei)
|
|
{
|
|
label own = pOwner[facei];
|
|
|
|
vector maxCorr;
|
|
|
|
if (pFaceFlux[facei] > 0)
|
|
{
|
|
pSfCorr[facei] = (pCf[facei] - C[own]) & gradVf[own];
|
|
|
|
maxCorr = (1.0 - pW[facei])*(pVfNei[facei] - vf[own]);
|
|
}
|
|
else
|
|
{
|
|
pSfCorr[facei] =
|
|
(pCf[facei] - pd[facei] - C[own]) & pGradVfNei[facei];
|
|
|
|
maxCorr = pW[facei]*(vf[own] - pVfNei[facei]);
|
|
}
|
|
|
|
scalar pSfCorrs = magSqr(pSfCorr[facei]);
|
|
scalar maxCorrs = pSfCorr[facei] & maxCorr;
|
|
|
|
if (pSfCorrs > 0)
|
|
{
|
|
if (maxCorrs < 0)
|
|
{
|
|
pSfCorr[facei] = Zero;
|
|
}
|
|
else if (pSfCorrs > maxCorrs)
|
|
{
|
|
pSfCorr[facei] *= maxCorrs/(pSfCorrs + vSmall);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return tsfCorr;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|