initial commit for version 1.5.x patch release
[OpenFOAM-1.5.x.git] / tutorials / lesCavitatingFoam / throttle / system / fvSchemes
blob69156453d7f8b3a25f298b3f2918a456e57df374
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.5                                   |
5 |   \\  /    A nd           | Web:      http://www.OpenFOAM.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 upwind;
31 //    div(phi,U)           Gauss upwind;
32 //    div(phiv,k)          Gauss upwind;
34     div(phiv,rho)        Gauss limitedLinear 0.2;
35     div(phi,U)           Gauss filteredLinear2V 0.2 0;
36     div(phiv,k)          Gauss filteredLinear2 0.2 0;
39 gradSchemes
41     default              Gauss linear;
44 laplacianSchemes
46     default none;
48     laplacian(nuf,rhoU)  Gauss linear corrected;
49     laplacian(muEff,U)   Gauss linear corrected;
50     laplacian(rrhoUAf,p) Gauss linear corrected;
51     laplacian(rUAf,p)    Gauss linear corrected;
52     laplacian(DkEff,k)   Gauss linear corrected;
54     laplacian(1,p)       Gauss linear corrected;
57 snGradSchemes
59     default         none;
60     snGrad(p)       corrected;
63 fluxRequired
65     default        none;
66     p;
67     rho;
70 // ************************************************************************* //