Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / incompressible / pimpleDyMFoam / wingMotion / wingMotion2D_pimpleDyMFoam / system / fvSchemes
blob273d4cdfe7d77c7cac5344f1cf44cff88091a736
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     object      fvSchemes;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 ddtSchemes
19     default Euler;
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 linearUpwind grad(U);
33     div(phi,k)      Gauss limitedLinear 1;
34     div(phi,omega)  Gauss limitedLinear 1;
35     div((nuEff*dev(T(grad(U))))) Gauss linear;
38 laplacianSchemes
40     default         Gauss linear limited 0.5;
43 interpolationSchemes
45     default         linear;
48 snGradSchemes
50     default         corrected;
53 fluxRequired
55     default         no;
56     pcorr           ;
57     p;
60 // ************************************************************************* //