ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / tutorials / incompressible / windSimpleFoam / turbineSiting / 0 / U
blob1cc5a1ca9267789ce61d0e5b77e8512ada2361ba
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.org                      |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       volVectorField;
13     location    "0";
14     object      U;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 #include        "include/initialConditions"
20 dimensions      [0 1 -1 0 0 0 0];
22 internalField   uniform $flowVelocity;
24 boundaryField
26     #include "include/ABLConditions"
28     outlet
29     {
30         type            inletOutlet;
31         inletValue      uniform (0 0 0);
32         value           $internalField;
33     }
35     inlet
36     {
37         type            atmBoundaryLayerInletVelocity;
38         Uref            $Uref;
39         Href            $Href;
40         n               $windDirection;
41         z               $zDirection;
42         z0              $z0;
43         value           $internalField;
44         zGround         $zGround;
45     }
47     "terrain_.*"
48     {
49         type            uniformFixedValue;
50         uniformValue    (0 0 0);
51         value           uniform (0 0 0);
52     }
54     ground
55     {
56         type            uniformFixedValue;
57         uniformValue    (0 0 0);
58         value           uniform (0 0 0);
59     }
61     #include "include/sideAndTopPatches"
65 // ************************************************************************* //