initial commit for version 1.5.x patch release
[OpenFOAM-1.5.x.git] / tutorials / lesInterFoam / nozzleFlow2D / system / fvSchemes
blob40eb2c6513221bd579800417a8958b6d0f11c3a2
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     div(rho*phi,U)  Gauss linear;
30     div(phi,gamma)  Gauss vanLeer;
31     div(phirb,gamma) Gauss interfaceCompression;
32     div(phi,k)      Gauss limitedLinear 1;
33     div(phi,B)      Gauss limitedLinear 1;
34     div(B)          Gauss linear;
35     div(phi,nuTilda) Gauss limitedLinear 1;
36     div((nuEff*dev(grad(U).T()))) Gauss linear;
39 laplacianSchemes
41     default         Gauss linear corrected;
44 interpolationSchemes
46     default         linear;
47     interpolate(HbyA) linear;
50 snGradSchemes
52     default         corrected;
55 fluxRequired
57     default         no;
58     pd;
59     pcorr;
60     gamma;
63 // ************************************************************************* //