Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / viscoelastic / viscoelasticFluidFoam / S-MDCPP / system / fvSchemes
blob74d37ec7f5f137d613c6a2b282d012e4682d55ae
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;
23 gradSchemes
25     default         Gauss linear;
26     grad(p)         Gauss linear;
27     grad(U)         Gauss linear;
31 divSchemes
33     default                  none;
34     div(phi,U)               Gauss upwind; //GammaV 0.5;
36     div(phi,tau)          Gauss upwind; //Gamma 0.5;
38     div(tau)                 Gauss linear;
41 laplacianSchemes
43     default                      none;
44     laplacian(etaPEff,U)         Gauss linear corrected;
45     laplacian(etaPEff+etaS,U)    Gauss linear corrected;
46     laplacian((1|A(U)),p)        Gauss linear corrected;
49 interpolationSchemes
51     default           linear;
52     interpolate(HbyA) linear;
55 snGradSchemes
57     default         corrected;
60 fluxRequired
62     default         no;
63     p;
66 // ************************************************************************* //