openfoam/tutorials/incompressible/pimpleFoam/RAS/ellipsekkLOmega/system/sampling
2019-06-25 11:51:19 +01:00

65 lines
1.5 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v1906 |
| \\ / A nd | Web: www.OpenFOAM.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
planes
{
type surfaces;
libs ("libsampling.so");
// Time control etc
${_visualization};
fields ( p U );
// surfaceFormat vtk;
surfaceFormat none;
store true;
interpolationScheme cellPoint;
_plane
{
type plane; //cuttingPlane;
planeType pointAndNormal;
interpolate false;
pointAndNormalDict
{
point (0 0 0);
normal (1 0 0);
}
}
surfaces
{
plane0
{
${_plane}
pointAndNormalDict
{
point (0 0 0);
}
}
plane1
{
${_plane}
pointAndNormalDict
{
point (-0.1 0 0);
}
}
}
#remove _plane
}
// ************************************************************************* //