Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / compressible / rhoSonicFoam / shockTube / system / fvSchemes
blobbbbf51c95bd7f01b0d36651c553444d3004d5823
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     location    "system";
14     object      fvSchemes;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 ddtSchemes
20     default         Euler;
23 gradSchemes
25     default         Gauss linear;
26     grad(p)         Gauss linear;
27     grad(U)         Gauss linear;
30 divSchemes
32     default         none;
33     div(phiv,rho)   Gauss limitedLinear 1;
34     div(phiv,rhoU)  Gauss limitedLinearV 1;
35     div(phiv2,p)    Gauss limitedLinear 1;
36     div(phiv,rhoE)  Gauss limitedLinear 1;
39 laplacianSchemes
41     default         none;
44 interpolationSchemes
46     default         linear;
49 snGradSchemes
51     default         corrected;
54 fluxRequired
56     default         no;
57     p               ;
60 // ************************************************************************* //