initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / tutorials / incompressible / simpleFoam / motorBike / 0 / U
blobd24226ef2f67071be83e87a36ee8f81bd44a961b
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       volVectorField;
13     location    "0";
14     object      U;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 #include        "initialConditions"
20 dimensions      [0 1 -1 0 0 0 0];
22 internalField   uniform $flowVelocity;
24 boundaryField
26     #include "fixedInlet"
28     outlet
29     {
30         type            inletOutlet;
31         inletValue      uniform (0 0 0);
32         value           $internalField;
33     }
35     lowerWall
36     {
37         type            fixedValue;
38         value           uniform (20 0 0);
39     }
41     "motorBike_.*"
42     {
43         type            fixedValue;
44         value           uniform (0 0 0);
45     }
47     #include "frontBackUpperPatches"
51 // ************************************************************************* //