Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / compressible / rhoSimplecFoam / squareBend / 0 / U
blobbb6c209315fe11a4065f3baee0d399311d2c2196
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       volVectorField;
13     object      U;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 dimensions      [0 1 -1 0 0 0 0];
19 internalField   uniform (0 0 0);
21 boundaryField
23     Default_Boundary_Region
24     {
25         type            fixedValue;
26         value           uniform (0 0 0);
27     }
28     inlet
29     {
30         type            flowRateInletVelocity;
31         flowRate        0.5; //0.75;
32         value           uniform (0 0 0);
33     }
34     outlet
35     {
36         type            inletOutlet;
37         value           uniform (0 0 0);
38         inletValue      uniform (0 0 0);
39     }
43 // ************************************************************************* //