BUG: PointEdgeWave : n cyclics bool instead of label
[OpenFOAM-1.6.x.git] / applications / utilities / mesh / advanced / selectCells / selectCellsDict
blobeb10e23d7880fefd65caa91ab5f009d0a8f17046
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.6                                   |
5 |   \\  /    A nd           | Web:      http://www.OpenFOAM.org               |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     object      selectCellsDict;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
19 // Whether to use surface. If false no surface will be read and only
20 // outsidePoints/selectOutside will be used to determine cells to keep.
21 useSurface      false;
23 // Surface to keep to
24 surface         "plexi.ftr";
26 // What is outside
27 outsidePoints   ((-1 -1 -1));
31 // Selection of final set
34 // Select based on side of surface. Usually select inside cells and project
35 // outwards or select outside cells and project inwards.
36 selectCut       false;
37 selectInside    false;
38 selectOutside   true;
39 // Leave out cell closer than nearDistance to the surface. Usually
40 // 0.5*of the cell size. Set to <0 to disable.
41 nearDistance    -1;
43 // ************************************************************************* //