/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | www.openfoam.com
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2019-2021 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::exprFixedValueFvPatchField
Description
A fixed value boundary condition with expressions.
Usage
\table
Property | Description | Required | Default
valueExpr | expression for uniformValue | yes |
value | initial field value | optional |
\endtable
Note
The \c value entry (optional) is used for the initial values.
Otherwise uses a zero-gradient condition for the initial value.
This boundary condition is deprecated in favour of
Foam::uniformFixedValueFvPatchField
with expression entries.
SourceFiles
exprFixedValueFvPatchField.C
\*---------------------------------------------------------------------------*/
#ifndef FoamDeprecated_exprFixedValueFvPatchField_H
#define FoamDeprecated_exprFixedValueFvPatchField_H
#include "fixedValueFvPatchField.H"
#include "patchExprFieldBase.H"
#include "patchExprDriver.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
/*---------------------------------------------------------------------------*\
Class exprFixedValueFvPatchField Declaration
\*---------------------------------------------------------------------------*/
template
class exprFixedValueFvPatchField
:
public fixedValueFvPatchField,
public expressions::patchExprFieldBase
{
//- The parent boundary condition type
typedef fixedValueFvPatchField parent_bctype;
protected:
// Protected Data
//- Dictionary contents for the boundary condition
dictionary dict_;
//- The expression driver
expressions::patchExpr::parseDriver driver_;
// Protected Member Functions
//- Set debug ON if "debug" is enabled
void setDebug();
public:
//- Runtime type information
TypeName("exprFixedValue");
// Constructors
//- Construct from patch and internal field
exprFixedValueFvPatchField
(
const fvPatch& p,
const DimensionedField&
);
//- Construct from patch, internal field and dictionary
exprFixedValueFvPatchField
(
const fvPatch&,
const DimensionedField&,
const dictionary& dict,
IOobjectOption::readOption requireValue = IOobjectOption::MUST_READ
);
//- Construct by mapping onto a new patch
exprFixedValueFvPatchField
(
const exprFixedValueFvPatchField&,
const fvPatch&,
const DimensionedField&,
const fvPatchFieldMapper&
);
//- Construct as copy
exprFixedValueFvPatchField
(
const exprFixedValueFvPatchField&
);
//- Construct and return a clone
virtual tmp> clone() const
{
return tmp>
(
new exprFixedValueFvPatchField(*this)
);
}
//- Construct as copy setting internal field reference
exprFixedValueFvPatchField
(
const exprFixedValueFvPatchField&,
const DimensionedField&
);
//- Construct and return a clone setting internal field reference
virtual tmp> clone
(
const DimensionedField& iF
) const
{
return tmp>
(
new exprFixedValueFvPatchField(*this, iF)
);
}
// Member Functions
//- Update the coefficients associated with the patch field
virtual void updateCoeffs();
//- Write
virtual void write(Ostream& os) const;
};
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#ifdef NoRepository
#include "exprFixedValueFvPatchField.C"
#endif
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#endif
// ************************************************************************* //