Upgrade case file headers
[foam-extend-3.2.git] / tutorials / compressible / steadyCompressibleSRFFoam / bentBlade / 0 / epsilon
blob2cefb70439aeb52bb55eedec802af41fc9f833d5
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       volScalarField;
13     location    "0";
14     object      epsilon;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 dimensions      [0 2 -3 0 0 0 0];
20 internalField   uniform 100;
22 boundaryField
24     inlet
25     {
26         type            fixedValue;
27         value           uniform 100;
28     }
29     outlet
30     {
31         type            inletOutlet;
32         inletValue      uniform 100;
33         value           uniform 100;
34     }
35     blade
36     {
37         type            compressible::epsilonWallFunction;
38         refValue        uniform 0;
39         value           uniform 100;
40         U               Urel;
41         Cmu             0.09;
42         kappa           0.41;
43         E               9.8;
44     }
45     shaft
46     {
47         type            compressible::epsilonWallFunction;
48         refValue        uniform 0;
49         value           uniform 100;
50         U               Urel;
51         Cmu             0.09;
52         kappa           0.41;
53         E               9.8;
54     }
55     shroud
56     {
57         type            compressible::epsilonWallFunction;
58         refValue        uniform 0;
59         value           uniform 100;
60         U               Urel;
61         Cmu             0.09;
62         kappa           0.41;
63         E               9.8;
64     }
65     frontAndBack
66     {
67         type            cyclic;
68     }
71 // ************************************************************************* //