initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / applications / utilities / surface / surfaceSubset / surfaceSubsetDict
blobed06d0a39ccac848031c4ab5ea2003659df92f6c
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      surfaceSubsetDict;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 // Select triangles by label
19 faces ();
21 // Select triangles using given points (local point numbering)
22 localPoints ( );
24 // Select triangles using given edges
25 edges ();
27 // Select triangles (with face centre) inside box
28 zone
30     (0      -10000  125)
31     (10000   10000  10000)
34 // Select triangles (with face centre) inside or outside of another surface.
35 // (always selects triangles that are 'on' other surface)
36 surface
38     name "sphere.stl";
39     outside yes;
42 // Extend selection with edge neighbours
43 addFaceNeighbours no;
45 // Invert selection
46 invertSelection false;
48 // ************************************************************************* //