BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / tutorials / incompressible / simpleFoam / motorBike / system / cuttingPlane
blob1958ef2596a97d69d5009e2f8700d4931e26b01f
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  2.0.0                                 |
5 |   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
9 cuttingPlane
11     type            surfaces;
12     functionObjectLibs ("libsampling.so");
13     outputControl   outputTime;
15     surfaceFormat   vtk;
16     fields          ( p U );
18     interpolationScheme cellPoint;
20     surfaces
21     (
22         yNormal
23         {
24             type            cuttingPlane;
25             planeType       pointAndNormal;
26             pointAndNormalDict
27             {
28                 basePoint       (0 0 0);
29                 normalVector    (0 1 0);
30             }
31             interpolate     true;
32         }
33     );
37 // ************************************************************************* //