initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / applications / utilities / mesh / advanced / modifyMesh / modifyMeshDict
blobf2cf26169293c0ec4e8bff832f82720ae594dc13
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      modifyMeshDict;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 // Move points:
19 // Every entry is two coordinates. First one is location of the point to move,
20 // the second is the position to move to.
21 pointsToMove
23     (( -0.17861 -0.45073 0.75276)( -0.18 -0.45073 0.75276))
26 // Split edge in two:
27 // First coord is a point on the edge to cut, second is the position of the
28 // newly introduced point
29 edgesToSplit
31     (( -0.17692 -0.45312 0.74516)( -0.18 -0.45 0.742))
34 // Triangulate a face:
35 // First coord is a point on the face to triangulate. It will introduce a
36 // point on the face, triangulate and move the point to the second coordinate.
37 facesToTriangulate
39     (( -0.039123 -0.45045 0.74083) (-0.03844 -0.45049 0.73572))
44 // Edges to collapse. First coord is point on the edge, second is coordinate
45 // to collapse to.
46 edgesToCollapse
48     ((0.054975 0.099987 0.0044074)(0.054975 0.099987 0.0044074))
53 // Split cells:
54 // First coord is a point inside the cell to split. A point inside the cell will
55 // be introduced and the cell will get decomposed into polygonal base pyramids
56 // with this new point as top. (so the original faces will not get split)
57 cellsToSplit
59     (( -0.039123 -0.45045 0.74083) (-0.03844 -0.45049 0.73572))
63 // Change patch:
64 // Changes patchID of faces. Coord selects the face, label is the patch index.
65 facesToRepatch
67     (( -0.039123 -0.45045 0.74083) 1)
71 //// Create cell:
72 //// Creates a cell on the boundary given a face covering a cavity. Gets
73 //// the vertices of the face (outwards pointing normal) and a point internal
74 //// to the new cell. (used to check the orientation of the face). Walks all
75 //// boundary faces reachable from any edge on the face and constructs cell
76 //// from it.
77 //cellsToCreate
78 //(
79 //    (
80 //        ((0 0 0) (1 0 0) (1 1 0) (0 1 0))   // vertices of face
81 //        (0.5 0.5 0.1)                       // cell centre
82 //    )
83 //);
86 // ************************************************************************* //