Upgrade case file headers
[foam-extend-3.2.git] / tutorials / incompressible / simpleFoam / mixingPlaneAxial / system / fvSchemes
blob3fbe0d8581b6ddd635f00260edb30cafb022b99b
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       dictionary;
13     object      fvSchemes;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 ddtSchemes
19     default steadyState;
22 gradSchemes
24     default         Gauss linear;
25     grad(p)         Gauss linear;
26     grad(U)         Gauss linear;
29 divSchemes
31     default         none;
32     div(phi,U)      Gauss upwind;
33     div(phi,k)      Gauss upwind;
34     div(phi,epsilon) Gauss upwind;
35     div(phi,R)      Gauss upwind;
36     div(R)          Gauss linear;
37     div(phi,nuTilda) Gauss upwind;
38     div((nuEff*dev(grad(U).T()))) Gauss linear;
41 laplacianSchemes
43     default         none;
44     laplacian(1,p)      Gauss linear corrected;
45     laplacian(nuEff,U) Gauss linear corrected;
46     laplacian((1|A(U)),p) Gauss linear corrected;
47     laplacian(DkEff,k) Gauss linear corrected;
48     laplacian(DepsilonEff,epsilon) Gauss linear corrected;
49     laplacian(DREff,R) Gauss linear corrected;
50     laplacian(DnuTildaEff,nuTilda) Gauss linear corrected;
53 interpolationSchemes
55     default         linear;
56     interpolate(U)  linear;
59 snGradSchemes
61     default         corrected;
64 fluxRequired
66     default         no;
67     p;
70 mixingPlane
72     default        areaAveraging;
73     p              areaAveraging;
74     U              areaAveraging;
76     k              fluxAveraging;
77     epsilon        fluxAveraging;
80 // ************************************************************************* //