mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
56 lines
1.4 KiB
C++
56 lines
1.4 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: plus |
|
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
object surfaces.cfg;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
type surfaces;
|
|
functionObjectLibs ("libsampling.so");
|
|
|
|
enabled true;
|
|
outputControl outputTime;
|
|
|
|
surfaceFormat vtk;
|
|
interpolationScheme cellPoint;
|
|
|
|
x (1 0 0);
|
|
y (0 1 0);
|
|
z (0 0 1);
|
|
origin (0 0 0);
|
|
|
|
cuttingPlane
|
|
{
|
|
type cuttingPlane;
|
|
planeType pointAndNormal;
|
|
pointAndNormalDict
|
|
{
|
|
basePoint $origin;
|
|
normalVector $x;
|
|
}
|
|
interpolate true;
|
|
}
|
|
|
|
isosurface
|
|
{
|
|
type isoSurface;
|
|
interpolate true;
|
|
}
|
|
|
|
patchSurface
|
|
{
|
|
type patch;
|
|
interpolate true;
|
|
}
|
|
|
|
// ************************************************************************* //
|