BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / tutorials / compressible / rhoSimplecFoam / squareBend / system / fvSchemes
blob6806565bf2dd9d6fc2cf9e074b3a552fbc5d2da0
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  2.0.0                                 |
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             steadyState;
23 gradSchemes
25     default             Gauss linear;
28 divSchemes
30     default             none;
32     div(phi,U)          Gauss upwind; //limitedLinearV 1; //upwind;
33     div((muEff*dev2(T(grad(U)))))      Gauss linear;
34     div(phi,h)          Gauss upwind; //limitedLinear 1; //upwind;
35     div(phi,epsilon)    Gauss upwind;
36     div(phi,k)          Gauss upwind;
38     div(phid,p)         Gauss upwind;
39     div(U,p)            Gauss linear;
42 laplacianSchemes
44     default         Gauss linear corrected;
47 interpolationSchemes
49     default                 none;
50     interpolate(rho)        linear;
51     div(U,p)                upwind phi;
52     interpolate((psi*U))    linear;
53     interpolate(U)          linear;
54     UD                      upwind phid;
55     interpolate(p)          linear;
56     interpolate(((rho|(A(U)-H(1)))-(rho|A(U)))) linear;
59 snGradSchemes
61     default                 corrected;
64 fluxRequired
66     default                 no;
67     p;
68     pCorr;
71 // ************************************************************************* //