bugfix - minor: coeffs lookup updated to new/default mechanism
[OpenFOAM-1.5.x.git] / tutorials / twoPhaseEulerFoam / bed2 / system / fvSchemes
blobe175e1530e1a54352771efd1782535f783711a68
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 gradSchemes
24     default         Gauss linear;
27 divSchemes
29     default         none;
30     div(phia,Ua)    Gauss limitedLinearV 1;
31     div(phib,Ub)    Gauss limitedLinearV 1;
32     div(phib,k)      Gauss limitedLinear 1;
33     div(phib,epsilon) Gauss limitedLinear 1;
34     div(phi,alpha)  Gauss limitedLinear01 1;
35     div(phir,alpha) Gauss limitedLinear01 1;
36     div(phi,Theta) Gauss limitedLinear 1;
37     div(Rca) Gauss linear;
38     div(Rcb) Gauss linear;
41 laplacianSchemes
43     default         none;
44     laplacian(nuEffa,Ua) Gauss linear corrected;
45     laplacian(nuEffb,Ub) Gauss linear corrected;
46     laplacian((rho*(1|A(U))),p) Gauss linear corrected;
47     laplacian(alphaPpMag,alpha) Gauss linear corrected;
48     laplacian(Galphaf,alpha) Gauss linear corrected;
49     laplacian((alphak*nuEffb),k) Gauss linear corrected;
50     laplacian((alphaEps*nuEffb),epsilon) Gauss linear corrected;
51     laplacian(kappa,Theta) Gauss linear corrected;
54 interpolationSchemes
56     default         linear;
59 snGradSchemes
61     default         corrected;
64 fluxRequired
66     default         no;
67     p;
70 // ************************************************************************* //