initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / applications / utilities / mesh / generation / extrudeMesh / extrudeProperties
blob45618034deb13b6a1e5c55bfc02e7bedd9928203
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      extrudeProperties;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 // Where to get surface from: either from surface ('surface') or
18 // from (flipped) patch of existing case ('patch')
19 constructFrom patch;    //surface;
21 // If construct from (flipped) patch
22 sourceCase "$FOAM_RUN/icoFoam/cavity";
23 sourcePatch movingWall;
25 // Flip surface normals before usage.
26 flipNormals false;
28 // If construct from surface
29 surface "movingWall.sMesh";
32 // Do front and back need to be merged? Usually only makes sense for 360
33 // degree wedges.
34 mergeFaces true;
37 //- Linear extrusion in point-normal direction
38 //extrudeModel        linearNormal;
40 //- Wedge extrusion. If nLayers is 1 assumes symmetry around plane.
41 extrudeModel        wedge;
43 //- Extrudes into sphere around (0 0 0)
44 //extrudeModel        linearRadial;
46 //- Extrudes into sphere with grading according to pressure (atmospherics)
47 //extrudeModel        sigmaRadial;
49 nLayers             20;
51 wedgeCoeffs
53     axisPt      (0 0.1 0);
54     axis        (-1 0 0);
55     angle       360;  // For nLayers=1 assume symmetry so angle/2 on each side
58 linearNormalCoeffs
60     thickness       0.05;
63 linearRadialCoeffs
65      R              0.1;
68 sigmaRadialCoeffs
70     RTbyg           1;
71     pRef            1;
72     pStrat          1;
76 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //