Upgrade case file headers
[foam-extend-3.2.git] / tutorials / compressible / rhoCentralFoam / LadenburgJet60psi / 0.org / U
blob19a3c267676d2a82a6daff295fc8fd8cd5c81c18
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | foam-extend: Open Source CFD                    |
4 |  \\    /   O peration     | Version:     3.2                                |
5 |   \\  /    A nd           | Web:         http://www.foam-extend.org         |
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     inlet
24     {
25         type            fixedValue;
26         value           uniform (315.6 0 0);
27     }
29     outlet
30     {
31         type            inletOutlet;
32         inletValue      uniform (0 0 0);
33         value           uniform (0 0 0);
34     }
36     freestream
37     {
38         type            zeroGradient;
39     }
41     freestreamInlet
42     {
43         type            fixedValue;
44         value           uniform (0 0 0);
45     }
47     wedge1 {type wedge;}
48     wedge2 {type wedge;}
51 // ************************************************************************* //