initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / tutorials / incompressible / simpleFoam / airFoil2D / 0 / nuTilda
blob9f005f2f65ce7623f7e2ca0b414607625aa13b24
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.6                                   |
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      nuTilda;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 dimensions      [0 2 -1 0 0 0 0];
19 internalField   uniform 0.14;
21 boundaryField
23     inlet
24     {
25         type            freestream;
26         freestreamValue uniform 0.14;
27     }
29     outlet
30     {
31         type            freestream;
32         freestreamValue uniform 0.14;
33     }
35     wall
36     {
37         type            fixedValue;
38         value           uniform 0;
39     }
41     frontAndBack
42     {
43         type            empty;
44     }
47 // ************************************************************************* //