initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / applications / utilities / mesh / manipulation / refineMesh / refineMeshDict
blob5a460c5d2ee1dd3f562200eb0a442bb04562f327
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      refineMeshDict;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 // Cells to refine; name of cell set
19 set c0;
21 // Type of coordinate system:
22 // - global : coordinate system same for every cell. Usually aligned with
23 //   x,y,z axis. Specify in globalCoeffs section below.
24 // - patchLocal : coordinate system different for every cell. Specify in
25 //   patchLocalCoeffs section below.
26 coordinateSystem global;
27 //coordinateSystem patchLocal;
30 // .. and its coefficients. x,y in this case. (normal direction is calculated
31 // as tan1^tan2)
32 globalCoeffs
34     tan1 (1 0 0);
35     tan2 (0 1 0);
38 patchLocalCoeffs
40     patch outside;  // Normal direction is facenormal of zero'th face of patch
41     tan1 (1 0 0);
44 // List of directions to refine
45 directions
47     tan1
48     tan2
49     normal
52 // Whether to use hex topology. This will
53 // - if patchLocal: all cells on selected patch should be hex
54 // - split all hexes in 2x2x2 through the middle of edges.
55 useHexTopology  true;
57 // Cut purely geometric (will cut hexes through vertices) or take topology
58 // into account. Incompatible with useHexTopology
59 geometricCut    false;
61 // Write meshes from intermediate steps
62 writeMesh       false;
64 // ************************************************************************* //