Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / incompressible / pimpleDyMFoam / wingMotion / wingMotion_snappyHexMesh / system / fvSchemes
blob434c63b244fb44cc6cc2a54d9a5d70a9f2055b29
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       dictionary;
13     location    "system";
14     object      fvSchemes;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 ddtSchemes
20     default         Euler;
23 gradSchemes
25     default         Gauss linear;
28 divSchemes
30     default         none;
31     div(phi,U)      Gauss limitedLinearV 1;
32     div(phi,k)      Gauss upwind;
33     div(phi,epsilon) Gauss upwind;
34     div(phi,R)      Gauss upwind;
35     div(R)          Gauss linear;
36     div(phid,p)     Gauss limitedLinear 1;
37     div(phiU,p)     Gauss limitedLinear 1;
38     div(phi,e)      Gauss limitedLinear 1;
39     div((muEff*dev2(T(grad(U))))) Gauss linear;
42 laplacianSchemes
44     default         none;
45     laplacian(muEff,U) Gauss linear limited 0.5;
46     laplacian(DkEff,k) Gauss linear limited 0.5;
47     laplacian(DREff,R) Gauss linear limited 0.5;
48     laplacian(DepsilonEff,epsilon) Gauss linear limited 0.5;
49     laplacian((rho*(1|A(U))),p) Gauss linear limited 0.5;
50     laplacian(alphaEff,e) Gauss linear limited 0.5;
53 interpolationSchemes
55     default         linear;
58 snGradSchemes
60     default         corrected;
63 fluxRequired
65     default         no;
66     p;
70 // ************************************************************************* //