/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | www.openfoam.com
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2011-2016 OpenFOAM Foundation
Copyright (C) 2024 OpenCFD Ltd.
-------------------------------------------------------------------------------
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
This boundary condition supplies a fixed value constraint, and is the base
class for a number of other boundary conditions.
The "value" entry is MUST_READ.
Usage
\table
Property | Description | Required | Default
value | Patch face values | yes |
\endtable
Example of the boundary condition specification:
\verbatim
{
type fixedValue;
value uniform 0; // Example for scalar field usage
}
\endverbatim
SourceFiles
fixedValueFvsPatchField.C
\*---------------------------------------------------------------------------*/
#ifndef Foam_fixedValueFvsPatchField_H
#define Foam_fixedValueFvsPatchField_H
#include "fvsPatchField.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
/*---------------------------------------------------------------------------*\
Class fixedValueFvsPatchField 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 value
fixedValueFvsPatchField
(
const fvPatch&,
const DimensionedField&,
const Type& value
);
//- Construct from patch, internal field and dictionary
fixedValueFvsPatchField
(
const fvPatch&,
const DimensionedField&,
const dictionary&,
IOobjectOption::readOption requireValue = IOobjectOption::MUST_READ
);
//- Construct by mapping the given fixedValue patch field
//- onto a new patch
fixedValueFvsPatchField
(
const fixedValueFvsPatchField&,
const fvPatch&,
const DimensionedField&,
const fvPatchFieldMapper&
);
//- Construct as copy
fixedValueFvsPatchField
(
const fixedValueFvsPatchField&
);
fixedValueFvsPatchField
(
const fixedValueFvsPatchField&,
const DimensionedField&
);
//- Return clone
virtual tmp> clone() const
{
return fvsPatchField::Clone(*this);
}
//- Clone with an internal field reference
virtual tmp> clone
(
const DimensionedField& iF
) const
{
return fvsPatchField::Clone(*this, iF);
}
// Member Functions
//- True: this patch field fixes a value.
virtual bool fixesValue() const { return true; }
//- False: this patch field is not altered by assignment.
virtual bool assignable() const { return false; }
//- Write includes "value" entry
virtual void write(Ostream&) const;
// 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
// ************************************************************************* //