1 /*--------------------------------*- C++ -*----------------------------------*\
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 \*---------------------------------------------------------------------------*/
13 object refineMeshDict;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 // Cells to refine; name of cell set
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
38 patch outside; // Normal direction is facenormal of zero'th face of patch
42 // List of directions to refine
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.
55 // Cut purely geometric (will cut hexes through vertices) or take topology
56 // into account. Incompatible with useHexTopology
59 // Write meshes from intermediate steps
62 // ************************************************************************* //