/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | www.openfoam.com
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2011-2016 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::emptyFvPatchField
Group
grpConstraintBoundaryConditions
Description
This boundary condition provides an 'empty' condition for reduced
dimensions cases, i.e. 1- and 2-D geometries. Apply this condition to
patches whose normal is aligned to geometric directions that do not
constitute solution directions.
The "value" entry is NO_READ, NO_WRITE.
Usage
Example of the boundary condition specification:
\verbatim
{
type empty;
}
\endverbatim
SourceFiles
emptyFvPatchField.C
\*---------------------------------------------------------------------------*/
#ifndef Foam_emptyFvPatchField_H
#define Foam_emptyFvPatchField_H
#include "fvPatchField.H"
#include "emptyFvPatch.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
/*---------------------------------------------------------------------------*\
Class emptyFvPatchField Declaration
\*---------------------------------------------------------------------------*/
template
class emptyFvPatchField
:
public fvPatchField
{
public:
//- Runtime type information
TypeName(emptyFvPatch::typeName_()); // fieldTypes::emptyTypeName_()
// Constructors
//- Construct from patch and internal field
emptyFvPatchField
(
const fvPatch&,
const DimensionedField&
);
//- Construct from patch, internal field and dictionary.
//- The "value" entry is NO_READ.
emptyFvPatchField
(
const fvPatch&,
const DimensionedField&,
const dictionary&
);
//- Construct by mapping given emptyFvPatchField onto a new patch
emptyFvPatchField
(
const emptyFvPatchField&,
const fvPatch&,
const DimensionedField&,
const fvPatchFieldMapper&
);
//- Construct as copy
emptyFvPatchField
(
const emptyFvPatchField&
);
//- Construct as copy setting internal field reference
emptyFvPatchField
(
const emptyFvPatchField&,
const DimensionedField&
);
//- Return a clone
virtual tmp> clone() const
{
return fvPatchField::Clone(*this);
}
//- Clone with an internal field reference
virtual tmp> clone
(
const DimensionedField& iF
) const
{
return fvPatchField::Clone(*this, iF);
}
// Member functions
// Mapping functions
//- Map (and resize as needed) from self given a mapping object
virtual void autoMap
(
const fvPatchFieldMapper&
)
{}
//- Reverse map the given fvPatchField onto this fvPatchField
virtual void rmap
(
const fvPatchField&,
const labelList&
)
{}
// Evaluation functions
//- Update the coefficients associated with the patch field
// This only checks to see the case is actually 1D or 2D
// for which this boundary condition is valid
void updateCoeffs();
//- Return the matrix diagonal coefficients corresponding to the
// evaluation of the value of this patchField with given weights
virtual tmp> valueInternalCoeffs
(
const tmp&
) const
{
return tmp>::New();
}
//- Return the matrix source coefficients corresponding to the
// evaluation of the value of this patchField with given weights
virtual tmp> valueBoundaryCoeffs
(
const tmp&
) const
{
return tmp>::New();
}
//- Return the matrix diagonal coefficients corresponding to the
// evaluation of the gradient of this patchField
tmp> gradientInternalCoeffs() const
{
return tmp>::New();
}
//- Return the matrix source coefficients corresponding to the
// evaluation of the gradient of this patchField
tmp> gradientBoundaryCoeffs() const
{
return tmp>::New();
}
// Member Functions
//- Write without "value" entry!
virtual void write(Ostream&) const;
};
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#ifdef NoRepository
#include "emptyFvPatchField.C"
#endif
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#endif
// ************************************************************************* //