Forward compatibility: flex
[foam-extend-3.2.git] / applications / utilities / mesh / advanced / selectCells / selectCellsDict
blob1eae885f817956418be2c671eb53a05d0eb179ba
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | foam-extend: Open Source CFD                    |
4 |  \\    /   O peration     | Version:     3.2                                |
5 |   \\  /    A nd           | Web:         http://www.foam-extend.org         |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     object      selectCellsDict;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 // Whether to use surface. If false no surface will be read and only
18 // outsidePoints/selectOutside will be used to determine cells to keep.
19 useSurface      false;
21 // Surface to keep to
22 surface         "plexi.ftr";
24 // What is outside
25 outsidePoints   ((-1 -1 -1));
28 // Selection of final set
31 // Select based on side of surface. Usually select inside cells and project
32 // outwards or select outside cells and project inwards.
33 selectCut       false;
34 selectInside    false;
35 selectOutside   true;
36 // Leave out cell closer than nearDistance to the surface. Usually
37 // 0.5*of the cell size. Set to <0 to disable.
38 nearDistance    -1;
40 // ************************************************************************* //