Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / multiphase / cavitatingFoam / ras / throttle / system / fvSchemes
blobc08d06e6d74da137398c15dd71ad79fddffba1fa
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 interpolationSchemes
24     default              linear;
27 divSchemes
29     default              none;
30     div(phiv,rho)        Gauss limitedLinear 0.2;
31     div(phi,U)           Gauss limitedLinearV 0.2;
32     div(phiv,omega)      Gauss upwind;
33     div(phiv,k)          Gauss upwind;
36 gradSchemes
38     default              Gauss linear;
41 laplacianSchemes
43     default none;
45     laplacian(nuf,rhoU)  Gauss linear corrected;
46     laplacian(muEff,U)  Gauss linear corrected;
47     laplacian(rrhoUAf,p) Gauss linear corrected;
48     laplacian(rUAf,p)    Gauss linear corrected;
49     laplacian(DomegaEff,omega) Gauss linear corrected;
50     laplacian(DkEff,k)   Gauss linear corrected;
52     laplacian(1,p)       Gauss linear corrected;
55 snGradSchemes
57     default         none;
58     snGrad(p)       corrected;
61 fluxRequired
63     default        none;
64     p;
65     rho;
68 // ************************************************************************* //