mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
- base level surface container is now a meshedSurface instead of a triSurface. This avoid automatic triangulation of surfaces when they are read, and simplifies the internals. - sampling types: * "meshedSurface" (compat: "sampledTriSurfaceMesh") * "meshedSurfaceNormal" (compat: "sampledTriSurfaceMeshNormal")
22 lines
705 B
C++
22 lines
705 B
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration | Version: v2006
|
|
\\ / A nd | Website: www.openfoam.com
|
|
\\/ M anipulation |
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#includeEtc "caseDicts/postProcessing/surfaceFieldValue/surfaceRegion.cfg"
|
|
|
|
regionType sampledSurface;
|
|
|
|
sampledSurfaceDict
|
|
{
|
|
type meshedSurface;
|
|
surface $triSurface;
|
|
source cells;
|
|
interpolate true;
|
|
}
|
|
|
|
// ************************************************************************* //
|