/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2004-2011 OpenCFD Ltd.
\\/ 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 .
Class
Foam::fixedValueFvsPatchField
Description
Foam::fixedValueFvsPatchField
SourceFiles
fixedValueFvsPatchField.C
\*---------------------------------------------------------------------------*/
#ifndef fixedValueFvsPatchField_H
#define fixedValueFvsPatchField_H
#include "fvsPatchField.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
/*---------------------------------------------------------------------------*\
Class fixedValueFvsPatch Declaration
\*---------------------------------------------------------------------------*/
template
class fixedValueFvsPatchField
:
public fvsPatchField
{
public:
//- Runtime type information
TypeName("fixedValue");
// Constructors
//- Construct from patch and internal field
fixedValueFvsPatchField
(
const fvPatch&,
const DimensionedField&
);
//- Construct from patch, internal field and dictionary
fixedValueFvsPatchField
(
const fvPatch&,
const DimensionedField&,
const dictionary&
);
//- Construct by mapping the given fixedValueFvsPatchField
// onto a new patch
fixedValueFvsPatchField
(
const fixedValueFvsPatchField&,
const fvPatch&,
const DimensionedField&,
const fvPatchFieldMapper&
);
//- Construct as copy
fixedValueFvsPatchField
(
const fixedValueFvsPatchField&
);
//- Construct and return a clone
virtual tmp > clone() const
{
return tmp >
(
new fixedValueFvsPatchField(*this)
);
}
//- Construct as copy setting internal field reference
fixedValueFvsPatchField
(
const fixedValueFvsPatchField&,
const DimensionedField&
);
//- Construct and return a clone setting internal field reference
virtual tmp > clone
(
const DimensionedField& iF
) const
{
return tmp >
(
new fixedValueFvsPatchField(*this, iF)
);
}
// Member functions
// Access
//- Return true if this patch field fixes a value.
// Needed to check if a level has to be specified while solving
// Poissons equations.
virtual bool fixesValue() const
{
return true;
}
// Evaluation functions
//- 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 the matrix source coefficients corresponding to the
// evaluation of the value of this patchField with given weights
virtual tmp > valueBoundaryCoeffs
(
const tmp&
) const;
//- Return the matrix diagonal coefficients corresponding to the
// evaluation of the gradient of this patchField
virtual tmp > gradientInternalCoeffs() const;
//- Return the matrix source coefficients corresponding to the
// evaluation of the gradient of this patchField
virtual tmp > gradientBoundaryCoeffs() const;
// Member operators
virtual void operator=(const UList&) {}
virtual void operator=(const fvsPatchField&) {}
virtual void operator+=(const fvsPatchField&) {}
virtual void operator-=(const fvsPatchField&) {}
virtual void operator*=(const fvsPatchField&) {}
virtual void operator/=(const fvsPatchField&) {}
virtual void operator+=(const Field&) {}
virtual void operator-=(const Field&) {}
virtual void operator*=(const Field&) {}
virtual void operator/=(const Field&) {}
virtual void operator=(const Type&) {}
virtual void operator+=(const Type&) {}
virtual void operator-=(const Type&) {}
virtual void operator*=(const scalar) {}
virtual void operator/=(const scalar) {}
};
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#ifdef NoRepository
# include "fixedValueFvsPatchField.C"
#endif
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#endif
// ************************************************************************* //