initial commit for version 1.5.x patch release
[OpenFOAM-1.5.x.git] / tutorials / rhoCentralFoam / forwardStep / 0 / Ma
blob615abf90ec25a111e42cbce114fa8576b6bf53ef
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       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 // ************************************************************************* //