Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / compressible / rhoCentralFoam / forwardStep / 0 / Ma
blob5dcda8f9b1b7199bc967e85c462816ddf0184690
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       volScalarField;
13     object      Ma;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 dimensions      [0 0 0 0 0 0 0];
19 internalField   uniform 3;
21 boundaryField
23     inlet
24     {
25         type            calculated;
26         value           uniform 3;
27     }
28     outlet
29     {
30         type            calculated;
31         value           uniform 3;
32     }
33     bottom
34     {
35         type            symmetryPlane;
36     }
37     top
38     {
39         type            symmetryPlane;
40     }
41     obstacle
42     {
43         type            calculated;
44         value           nonuniform List<scalar> 
45 208
257     }
258     defaultFaces
259     {
260         type            empty;
261     }
264 // ************************************************************************* //