initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / tutorials / compressible / rhoSonicFoam / forwardStep / system / fvSchemes
blob99533cc6abce64b7d42a2200fce2e85269dac75d
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.6                                   |
5 |   \\  /    A nd           | Web:      www.OpenFOAM.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               ;
61 // ************************************************************************* //