Files
OpenFOAM-12/tutorials/incompressible/simpleFoam/drivaerFastback/system/car
2021-02-18 19:43:45 +00:00

31 lines
1002 B
C++

/*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: dev
\\/ M anipulation |
-------------------------------------------------------------------------------
Description
Writes out surface files with interpolated field data in VTK format, e.g.
cutting planes, iso-surfaces and patch boundary surfaces.
This file includes a selection of example surfaces, each of which the user
should configure and/or remove.
\*---------------------------------------------------------------------------*/
#includeEtc "caseDicts/postProcessing/visualization/surfaces.cfg"
fields (p);
surfaces
(
car
{
$patchSurface;
patches ( ".*(body|Wheels)" );
}
);
// ************************************************************************* //