Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / applications / utilities / mesh / generation / extrude / extrudeToRegionMesh / extrudeToRegionMeshDict
blob081faca92316ce25f14cf1675365f70008a3435b
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      extrudeToRegionMeshDict;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 // Name of region to create
18 region  liquidFilm;
20 // FaceZones to extrude
21 faceZones (f0);
23 // Adapt the original mesh to have directMapped patches at where the
24 // faceZones are?
25 // If true:
26 // - extruding internal faces: become baffles on directMapped patches
27 // - extruding boundary faces: repatched to be on directMapped patches
28 // If false: leave original mesh intact. Extruded mesh will still have
29 // directMapped patch which might need to be adapted.
30 adaptMesh true;
32 // Extrude 1D-columns of cells?
33 oneD false;
35 //- Extrusion model to use. The only logical choice is linearNormal?
37 //- Linear extrusion in normal direction
38 extrudeModel        linearNormal;
40 //- Linear extrusion in specified direction
41 //extrudeModel        linearDirection;
43 //- Wedge extrusion. If nLayers is 1 assumes symmetry around plane.
44 // extrudeModel        wedge;
46 //- Extrudes into sphere around (0 0 0)
47 //extrudeModel        linearRadial;
49 //- Extrudes into sphere with grading according to pressure (atmospherics)
50 //extrudeModel        sigmaRadial;
52 nLayers             10;
54 expansionRatio      0.9;
56 linearNormalCoeffs
58     thickness       0.05;
61 wedgeCoeffs
63     axisPt      (0 0.1 -0.05);
64     axis        (-1 0 0);
65     angle       360;  // For nLayers=1 assume symmetry so angle/2 on each side
68 linearDirectionCoeffs
70     direction       (0 1 0);
71     thickness       0.05;
74 linearRadialCoeffs
76      R              0.1;
79 sigmaRadialCoeffs
81     RTbyg           1;
82     pRef            1;
83     pStrat          1;
86 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //