For example the actuationDiskSource fvOption may now be specified disk1 { type actuationDiskSource; fields (U); selectionMode cellSet; cellSet actuationDisk1; diskDir (1 0 0); // Orientation of the disk Cp 0.386; Ct 0.58; diskArea 40; upstreamPoint (581849 4785810 1065); } rather than disk1 { type actuationDiskSource; active on; actuationDiskSourceCoeffs { fields (U); selectionMode cellSet; cellSet actuationDisk1; diskDir (1 0 0); // Orientation of the disk Cp 0.386; Ct 0.58; diskArea 40; upstreamPoint (581849 4785810 1065); } } but this form is supported for backward compatibility.
128 lines
3.3 KiB
C++
128 lines
3.3 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2016-2017 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::fv::FixedValueConstraint
|
|
|
|
Description
|
|
Constrain the field values within a specified region.
|
|
|
|
Usage
|
|
For example to set the turbulence properties within a porous region:
|
|
\verbatim
|
|
porosityTurbulence
|
|
{
|
|
type scalarFixedValueConstraint;
|
|
active yes;
|
|
|
|
selectionMode cellZone;
|
|
cellZone porosity;
|
|
fieldValues
|
|
{
|
|
k 1;
|
|
epsilon 150;
|
|
}
|
|
}
|
|
\endverbatim
|
|
|
|
See also
|
|
Foam::fvOption
|
|
|
|
SourceFiles
|
|
FixedValueConstraint.C
|
|
fixedValueConstraints.C
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef FixedValueConstraint_H
|
|
#define FixedValueConstraint_H
|
|
|
|
#include "cellSetOption.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
namespace fv
|
|
{
|
|
|
|
/*---------------------------------------------------------------------------*\
|
|
Class FixedValueConstraint Declaration
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
template<class Type>
|
|
class FixedValueConstraint
|
|
:
|
|
public cellSetOption
|
|
{
|
|
// Private member data
|
|
|
|
//- Field values
|
|
List<Type> fieldValues_;
|
|
|
|
|
|
public:
|
|
|
|
//- Runtime type information
|
|
TypeName("FixedValueConstraint");
|
|
|
|
|
|
// Constructors
|
|
|
|
//- Construct from components
|
|
FixedValueConstraint
|
|
(
|
|
const word& name,
|
|
const word& modelType,
|
|
const dictionary& dict,
|
|
const fvMesh& mesh
|
|
);
|
|
|
|
|
|
// Member Functions
|
|
|
|
//- Read source dictionary
|
|
virtual bool read(const dictionary& dict);
|
|
|
|
//- Set value on field
|
|
virtual void constrain(fvMatrix<Type>& eqn, const label fieldi);
|
|
};
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace fv
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#ifdef NoRepository
|
|
#include "FixedValueConstraint.C"
|
|
#endif
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|