Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / multiphase / settlingFoam / dahl / system / fvSchemes
blobbd9ad576435fab02dd941fe9088866635a8aa52c
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 Euler;
22 gradSchemes
24     default         Gauss linear;
27 divSchemes
29     default         none;
30     div(phi,U)      Gauss limitedLinearV 1;
31     div(phi,k)      Gauss limitedLinear 1;
32     div(phi,epsilon) Gauss limitedLinear 1;
33     div(phiAlpha,Alpha) Gauss limitedLinear01 1;
34     div(phiVdj,Vdj) Gauss linear;
37 laplacianSchemes
39     default         none;
40     laplacian(muEff,U) Gauss linear corrected;
41     laplacian((rho*(1|A(U))),p) Gauss linear corrected;
42     laplacian(DkEff,k) Gauss linear corrected;
43     laplacian(DepsilonEff,epsilon) Gauss linear corrected;
44     laplacian(mut,Alpha) Gauss linear corrected;
47 interpolationSchemes
49     default         linear;
52 snGradSchemes
54     default         corrected;
57 fluxRequired
59     default         no;
60     p;
63 // ************************************************************************* //