Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / applications / utilities / mesh / manipulation / refineMesh / refineMeshDict
blobf80d05184f900efd78e12264a8c1b636a9baef88
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.com                      |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     object      refineMeshDict;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 // Cells to refine; name of cell set
18 set c0;
20 // Type of coordinate system:
21 // - global : coordinate system same for every cell. Usually aligned with
22 //   x,y,z axis. Specify in globalCoeffs section below.
23 // - patchLocal : coordinate system different for every cell. Specify in
24 //   patchLocalCoeffs section below.
25 coordinateSystem global;
26 //coordinateSystem patchLocal;
28 // .. and its coefficients. x,y in this case. (normal direction is calculated
29 // as tan1^tan2)
30 globalCoeffs
32     tan1 (1 0 0);
33     tan2 (0 1 0);
36 patchLocalCoeffs
38     patch outside;  // Normal direction is facenormal of zero'th face of patch
39     tan1 (1 0 0);
42 // List of directions to refine
43 directions
45     tan1
46     tan2
47     normal
50 // Whether to use hex topology. This will
51 // - if patchLocal: all cells on selected patch should be hex
52 // - split all hexes in 2x2x2 through the middle of edges.
53 useHexTopology  true;
55 // Cut purely geometric (will cut hexes through vertices) or take topology
56 // into account. Incompatible with useHexTopology
57 geometricCut    false;
59 // Write meshes from intermediate steps
60 writeMesh       false;
62 // ************************************************************************* //