/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | www.openfoam.com
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2011-2017 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 .
Class
Foam::upwind
Group
grpFvLimitedSurfaceInterpolationSchemes
Description
Upwind differencing scheme class.
SourceFiles
upwind.C
\*---------------------------------------------------------------------------*/
#ifndef upwind_H
#define upwind_H
#include "limitedSurfaceInterpolationScheme.H"
#include "volFields.H"
#include "surfaceFields.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
/*---------------------------------------------------------------------------*\
Class upwind Declaration
\*---------------------------------------------------------------------------*/
template
class upwind
:
public limitedSurfaceInterpolationScheme
{
// Private Member Functions
//- No copy assignment
void operator=(const upwind&) = delete;
public:
//- Runtime type information
TypeName("upwind");
// Constructors
//- Construct from faceFlux
upwind
(
const fvMesh& mesh,
const surfaceScalarField& faceFlux
)
:
limitedSurfaceInterpolationScheme(mesh, faceFlux)
{}
//- Construct from Istream.
// The name of the flux field is read from the Istream and looked-up
// from the mesh objectRegistry
upwind
(
const fvMesh& mesh,
Istream& is
)
:
limitedSurfaceInterpolationScheme(mesh, is)
{}
//- Construct from faceFlux and Istream
upwind
(
const fvMesh& mesh,
const surfaceScalarField& faceFlux,
Istream&
)
:
limitedSurfaceInterpolationScheme(mesh, faceFlux)
{}
// Member Functions
//- Return the interpolation limiter
virtual tmp limiter
(
const GeometricField&
) const
{
return tmp::New
(
IOobject
(
"upwindLimiter",
this->mesh().time().timeName(),
this->mesh().time().timeName(),
this->mesh().thisDb(),
IOobject::NO_READ,
IOobject::NO_WRITE,
IOobject::NO_REGISTER
),
this->mesh(),
dimensionedScalar(dimless, Zero)
);
}
//- Return the interpolation weighting factors
tmp weights() const
{
return pos0(this->faceFlux_);
}
//- Return the interpolation weighting factors
virtual tmp weights
(
const GeometricField&
) const
{
return weights();
}
};
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#endif
// ************************************************************************* //