1 /*--------------------------------*- C++ -*----------------------------------*\
3 | \\ / F ield | OpenFOAM Extend Project: Open source CFD |
4 | \\ / O peration | Version: 1.6-ext |
5 | \\ / A nd | Web: www.extend-project.de |
6 | \\/ M anipulation | |
7 \*---------------------------------------------------------------------------*/
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 // Name of set to operate on
21 // One of clear/new/invert/add/delete|subset/list
24 // Actions to apply to pointSet. These are all the topoSetSource's ending
25 // in ..ToFace (see the meshTools library).
28 // Copy elements from faceSet
34 // Select based on cellSet
38 option all; // All faces of cells
39 //option both; // Only faces whose owner&neighbour are in cellSet
42 // Select based on pointSet
46 option any; // Faces using any point in pointSet
47 //option all // Faces with all points in pointSet
50 // Select by explicitly providing face labels
53 value (12 13 56); // labels of faces
59 name ".*Wall"; // Name of patch, regular expressions allowed
62 // All faces of faceZone
65 name ".*Zone1"; // Name of faceZone, regular expressions allowed
68 // Faces with face centre within box
74 // Faces with normal to within certain angle aligned with vector.
77 normal (0 0 1); // Vector
78 cos 0.01; // Tolerance (max cos of angle)
82 // ************************************************************************* //