When the GeometricBoundaryField template class was originally written it
was a separate class in the Foam namespace rather than a sub-class of
GeometricField as it is now. Without loss of clarity and simplifying
code which access the boundary field of GeometricFields it is better
that GeometricBoundaryField be renamed Boundary for consistency with the
new naming convention for the type of the dimensioned internal field:
Internal, see commit a25a449c9e
This is a very simple text substitution change which can be applied to
any code which compiles with the OpenFOAM-dev libraries.
198 lines
5.5 KiB
C++
198 lines
5.5 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2011-2016 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/>.
|
|
|
|
Class
|
|
Foam::fixedFluxPressureFvPatchScalarField
|
|
|
|
Group
|
|
grpInletBoundaryConditions grpWallBoundaryConditions
|
|
|
|
Description
|
|
This boundary condition sets the pressure gradient to the provided value
|
|
such that the flux on the boundary is that specified by the velocity
|
|
boundary condition.
|
|
|
|
Example of the boundary condition specification:
|
|
\verbatim
|
|
myPatch
|
|
{
|
|
type fixedFluxPressure;
|
|
}
|
|
\endverbatim
|
|
|
|
SeeAlso
|
|
Foam::fixedGradientFvPatchField
|
|
|
|
SourceFiles
|
|
fixedFluxPressureFvPatchScalarField.C
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef fixedFluxPressureFvPatchScalarFields_H
|
|
#define fixedFluxPressureFvPatchScalarFields_H
|
|
|
|
#include "fvPatchFields.H"
|
|
#include "fixedGradientFvPatchFields.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
/*---------------------------------------------------------------------------*\
|
|
Class fixedFluxPressureFvPatchScalarField Declaration
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
class fixedFluxPressureFvPatchScalarField
|
|
:
|
|
public fixedGradientFvPatchScalarField
|
|
{
|
|
// Private data
|
|
|
|
//- Current time index (used for updating)
|
|
label curTimeIndex_;
|
|
|
|
|
|
public:
|
|
|
|
//- Runtime type information
|
|
TypeName("fixedFluxPressure");
|
|
|
|
|
|
// Constructors
|
|
|
|
//- Construct from patch and internal field
|
|
fixedFluxPressureFvPatchScalarField
|
|
(
|
|
const fvPatch&,
|
|
const DimensionedField<scalar, volMesh>&
|
|
);
|
|
|
|
//- Construct from patch, internal field and dictionary
|
|
fixedFluxPressureFvPatchScalarField
|
|
(
|
|
const fvPatch&,
|
|
const DimensionedField<scalar, volMesh>&,
|
|
const dictionary&
|
|
);
|
|
|
|
//- Construct by mapping given fixedFluxPressureFvPatchScalarField onto
|
|
// a new patch
|
|
fixedFluxPressureFvPatchScalarField
|
|
(
|
|
const fixedFluxPressureFvPatchScalarField&,
|
|
const fvPatch&,
|
|
const DimensionedField<scalar, volMesh>&,
|
|
const fvPatchFieldMapper&
|
|
);
|
|
|
|
//- Construct as copy
|
|
fixedFluxPressureFvPatchScalarField
|
|
(
|
|
const fixedFluxPressureFvPatchScalarField&
|
|
);
|
|
|
|
//- Construct and return a clone
|
|
virtual tmp<fvPatchScalarField> clone() const
|
|
{
|
|
return tmp<fvPatchScalarField>
|
|
(
|
|
new fixedFluxPressureFvPatchScalarField(*this)
|
|
);
|
|
}
|
|
|
|
//- Construct as copy setting internal field reference
|
|
fixedFluxPressureFvPatchScalarField
|
|
(
|
|
const fixedFluxPressureFvPatchScalarField&,
|
|
const DimensionedField<scalar, volMesh>&
|
|
);
|
|
|
|
//- Construct and return a clone setting internal field reference
|
|
virtual tmp<fvPatchScalarField> clone
|
|
(
|
|
const DimensionedField<scalar, volMesh>& iF
|
|
) const
|
|
{
|
|
return tmp<fvPatchScalarField>
|
|
(
|
|
new fixedFluxPressureFvPatchScalarField(*this, iF)
|
|
);
|
|
}
|
|
|
|
|
|
// Member functions
|
|
|
|
//- Update the patch pressure gradient field from the given snGradp
|
|
virtual void updateCoeffs(const scalarField& snGradp);
|
|
|
|
//- Update the patch pressure gradient field
|
|
virtual void updateCoeffs();
|
|
|
|
//- Write
|
|
virtual void write(Ostream&) const;
|
|
};
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#include "volFields.H"
|
|
|
|
namespace Foam
|
|
{
|
|
template<class GradBC>
|
|
inline void setSnGrad
|
|
(
|
|
volScalarField::Boundary& bf,
|
|
const FieldField<fvsPatchField, scalar>& snGrad
|
|
)
|
|
{
|
|
forAll(bf, patchi)
|
|
{
|
|
if (isA<GradBC>(bf[patchi]))
|
|
{
|
|
refCast<GradBC>(bf[patchi]).updateCoeffs(snGrad[patchi]);
|
|
}
|
|
}
|
|
}
|
|
|
|
template<class GradBC>
|
|
inline void setSnGrad
|
|
(
|
|
volScalarField::Boundary& bf,
|
|
const tmp<FieldField<fvsPatchField, scalar>>& tsnGrad
|
|
)
|
|
{
|
|
setSnGrad<GradBC>(bf, tsnGrad());
|
|
}
|
|
}
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|