23 lines
911 B
C++
23 lines
911 B
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration | Website: https://openfoam.org
|
|
\\ / A nd | Version: 12
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
Description
|
|
Writes out patch surface files with interpolated field data in VTK format.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
patch <patchName>;
|
|
|
|
fields (<fieldNames>);
|
|
|
|
interpolate true; // If false, write cell data to the surface triangles.
|
|
// If true, write interpolated data at the surface points.
|
|
|
|
#includeEtc "caseDicts/functions/surface/patchSurface.cfg"
|
|
|
|
// ************************************************************************* //
|