Transferred copyright to the OpenFOAM Foundation
[OpenFOAM-2.0.x.git] / applications / utilities / mesh / advanced / selectCells / selectCellsDict
blob32e2260190b59b4e8559f7bb91eb128b0171b831
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 \*---------------------------------------------------------------------------*/
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.obj";
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 // ************************************************************************* //