mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: update libs of etc/caseDicts/postProcess items
ENH: ensure destructor=default
ENH: ensure constness
ENH: ensure no 'copy construct' and 'no copy assignment' exist
TUT: add examples of function objects with full set
of settings into a TUT if unavailable
TUT: update pisoFoam/RAS/cavity tutorial in terms of usage
184 lines
5.0 KiB
C++
184 lines
5.0 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | www.openfoam.com
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
Copyright (C) 2019-2020 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 <http://www.gnu.org/licenses/>.
|
|
|
|
Class
|
|
Foam::functionObjects::surfaceDistance
|
|
|
|
Group
|
|
grpFieldFunctionObjects
|
|
|
|
Description
|
|
Computes the distance to the nearest surface from a given geometry.
|
|
|
|
Operands:
|
|
\table
|
|
Operand | Type | Location
|
|
input | - | -
|
|
output file | - | -
|
|
output field | volScalarField | $FOAM_CASE/\<time\>/surfaceDistance
|
|
\endtable
|
|
|
|
Usage
|
|
Minimal example by using \c system/controlDict.functions:
|
|
\verbatim
|
|
surfaceDistance1
|
|
{
|
|
// Mandatory entries (unmodifiable)
|
|
type surfaceDistance;
|
|
libs (fieldFunctionObjects);
|
|
|
|
// Mandatory entries (runtime modifiable)
|
|
geometry
|
|
{
|
|
motorBike.obj
|
|
{
|
|
type triSurfaceMesh;
|
|
name motorBike;
|
|
}
|
|
}
|
|
|
|
// Optional entries (runtime modifiable)
|
|
calculateCells true;
|
|
|
|
// Optional (inherited) entries
|
|
...
|
|
}
|
|
\endverbatim
|
|
|
|
where the entries mean:
|
|
\table
|
|
Property | Description | Type | Req'd | Dflt
|
|
type | Type name: surfaceDistance | word | yes | -
|
|
libs | Library name: fieldFunctionObjects | word | yes | -
|
|
geometry | Surface details | dict | yes | -
|
|
calculateCells | Calculate distance from cell | bool | no | true
|
|
\endtable
|
|
|
|
The inherited entries are elaborated in:
|
|
- \link functionObject.H \endlink
|
|
|
|
Usage by the \c postProcess utility is not available.
|
|
|
|
See also
|
|
- Foam::functionObject
|
|
- Foam::functionObjects::fvMeshFunctionObject
|
|
- ExtendedCodeGuide::functionObjects::field::surfaceDistance
|
|
|
|
SourceFiles
|
|
surfaceDistance.C
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef functionObjects_surfaceDistance_H
|
|
#define functionObjects_surfaceDistance_H
|
|
|
|
#include "fvMeshFunctionObject.H"
|
|
#include "searchableSurfaces.H"
|
|
#include "volFields.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
// Forward declaration of classes
|
|
class objectRegistry;
|
|
class dictionary;
|
|
class mapPolyMesh;
|
|
|
|
namespace functionObjects
|
|
{
|
|
|
|
/*---------------------------------------------------------------------------*\
|
|
Class surfaceDistance Declaration
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
class surfaceDistance
|
|
:
|
|
public fvMeshFunctionObject
|
|
{
|
|
protected:
|
|
|
|
// Protected Data
|
|
|
|
//- Switch to calculate distance-to-cells
|
|
Switch doCells_;
|
|
|
|
//- Geometry
|
|
autoPtr<searchableSurfaces> geomPtr_;
|
|
|
|
|
|
public:
|
|
|
|
//- Runtime type information
|
|
TypeName("surfaceDistance");
|
|
|
|
|
|
// Constructors
|
|
|
|
//- Construct for given objectRegistry and dictionary.
|
|
// Allow the possibility to load fields from files
|
|
surfaceDistance
|
|
(
|
|
const word& name,
|
|
const Time& runTime,
|
|
const dictionary& dict
|
|
);
|
|
|
|
//- No copy construct
|
|
surfaceDistance(const surfaceDistance&) = delete;
|
|
|
|
//- No copy assignment
|
|
void operator=(const surfaceDistance&) = delete;
|
|
|
|
|
|
//- Destructor
|
|
virtual ~surfaceDistance() = default;
|
|
|
|
|
|
// Member Functions
|
|
|
|
//- Read the controls
|
|
virtual bool read(const dictionary&);
|
|
|
|
//- Calculate the interpolated fields
|
|
virtual bool execute();
|
|
|
|
//- Write the interpolated fields
|
|
virtual bool write();
|
|
};
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace functionObjects
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|