initial commit for version 1.5.x patch release
[OpenFOAM-1.5.x.git] / tutorials / sonicTurbFoam / prism / 0 / U
blob2b6a5bfa3bc087d10a4e8c70b41aa82f93d15c17
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.5                                   |
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     object      U;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 dimensions      [0 1 -1 0 0 0 0];
19 internalField   uniform (650 0 0);
21 boundaryField
23     inlet           
24     {
25         type            fixedValue;
26         value           uniform (650 0 0);
27     }
29     outlet          
30     {
31         type            inletOutlet;
32         inletValue      uniform (0 0 0);
33         value           uniform (0 0 0);
34     }
36     bottomWall      
37     {
38         type            supersonicFreestream;
39         pInf            100000;
40         TInf            300;
41         UInf            (650 0 0);
42         gamma           1.28418;
43         value           uniform (650 0 0);
44     }
46     topWall         
47     {
48         type            supersonicFreestream;
49         pInf            100000;
50         TInf            300;
51         UInf            (650 0 0);
52         gamma           1.28418;
53         value           uniform (650 0 0);
54     }
56     prismWall       
57     {
58         type            fixedValue;
59         value           uniform (0 0 0);
60     }
62     defaultFaces    
63     {
64         type            empty;
65     }
68 // ************************************************************************* //